/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #1a202c; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Variables ── */
:root {
  --navy: #1a365d;
  --navy-light: #2a4a7f;
  --gold: #c9a84c;
  --gold-light: #e8c56a;
  --green: #276749;
  --green-light: #38a169;
  --gray: #f7f8fa;
  --border: #e2e8f0;
  --text-muted: #718096;
}

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 68px; box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon { width: 38px; height: 38px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 800; font-size: 1.1rem; }
.nav-logo .logo-text { font-size: 1rem; font-weight: 700; color: var(--navy); }
.nav-logo .logo-sub { font-size: 0.72rem; color: var(--text-muted); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: #4a5568; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--navy-light) !important; }
.nav-mobile { display: none; cursor: pointer; font-size: 1.4rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d5282 60%, #1a4a3a 100%);
  color: #fff; padding: 90px 5% 80px; display: flex; align-items: center; gap: 60px;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge { display: inline-block; background: rgba(201,168,76,.2); color: var(--gold-light); border: 1px solid rgba(201,168,76,.4); padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 20px; }
.hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 13px 28px; border-radius: 7px; font-weight: 700; font-size: 0.95rem; transition: background .2s; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 12px 26px; border-radius: 7px; font-weight: 600; font-size: 0.95rem; transition: all .2s; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; }
.stat-item .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold-light); }
.stat-item .stat-label { font-size: 0.78rem; color: rgba(255,255,255,.7); }
.hero-card { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 28px; flex-shrink: 0; width: 300px; }
.hero-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.hero-card-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 0.87rem; color: rgba(255,255,255,.9); align-items: center; }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item .check { color: var(--gold-light); font-size: 1rem; flex-shrink: 0; }

/* ── Section Base ── */
section { padding: 72px 5%; }
.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-light); margin-bottom: 10px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 520px; }
.section-header { margin-bottom: 44px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── Services ── */
.services-bg { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 26px; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 8px 30px rgba(26,54,93,.1); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: #ebf4ff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.service-tag { display: inline-block; margin-top: 12px; background: #ebf4ff; color: var(--navy); font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-img { background: linear-gradient(135deg, var(--navy), var(--green)); border-radius: 16px; padding: 40px; color: #fff; }
.why-img h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--gold-light); }
.why-point { display: flex; gap: 12px; margin-bottom: 18px; }
.why-point .wp-icon { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.why-point .wp-text h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.why-point .wp-text p { font-size: 0.82rem; color: rgba(255,255,255,.75); }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid var(--border); border-radius: 10px; }
.why-item .wi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.why-item p { font-size: 0.84rem; color: var(--text-muted); }

/* ── Reviews ── */
.reviews-bg { background: var(--navy); }
.reviews-bg .section-title { color: #fff; }
.reviews-bg .section-label { color: var(--gold-light); }
.reviews-bg .section-sub { color: rgba(255,255,255,.7); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 24px; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,.9); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; gap: 12px; align-items: center; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 1rem; flex-shrink: 0; }
.reviewer-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.reviewer-biz { font-size: 0.78rem; color: rgba(255,255,255,.6); }
.google-badge { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.google-badge span { font-size: 0.72rem; color: rgba(255,255,255,.5); }
.rating-summary { display: flex; align-items: center; gap: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 24px; margin-bottom: 32px; }
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.rating-info .stars { font-size: 1.2rem; }
.rating-info p { font-size: 0.82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── Process ── */
.process-bg { background: var(--gray); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.process-step { text-align: center; padding: 20px; position: relative; }
.step-num { width: 52px; height: 52px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 14px; position: relative; z-index: 1; }
.step-num::after { content: ''; position: absolute; top: 50%; left: 100%; width: calc(100% + 40px); height: 2px; background: var(--border); z-index: 0; }
.process-step:last-child .step-num::after { display: none; }
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%); color: #fff; text-align: center; padding: 64px 5%; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-banner .btn-primary { font-size: 1rem; padding: 14px 36px; }

/* ── Footer ── */
footer { background: #0f1923; color: rgba(255,255,255,.7); padding: 48px 5% 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: #fff; font-size: 1.1rem; font-weight: 700; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a { display: block; font-size: 0.84rem; margin-bottom: 8px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; }
.contact-info-item { display: flex; gap: 8px; font-size: 0.84rem; margin-bottom: 10px; color: rgba(255,255,255,.6); }
.contact-info-item span:first-child { color: var(--gold-light); flex-shrink: 0; }

/* ── Contact Page ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: 14px; padding: 36px; }
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.contact-info-card p { font-size: 0.87rem; color: rgba(255,255,255,.7); margin-bottom: 28px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.ci-label { font-size: 0.75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.ci-value { font-size: 0.9rem; color: #fff; font-weight: 600; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.hours-item { font-size: 0.82rem; color: rgba(255,255,255,.7); }
.hours-item span { color: #fff; font-weight: 600; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.contact-form-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-card p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #4a5568; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 7px;
  font-size: 0.9rem; color: #1a202c; outline: none; transition: border-color .2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; background: var(--navy); color: #fff; border: none; padding: 13px; border-radius: 7px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--navy-light); }
.success-msg { background: #f0fff4; border: 1px solid #9ae6b4; border-radius: 8px; padding: 14px 16px; color: #276749; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }

/* ── About Page ── */
.about-hero { background: linear-gradient(135deg, var(--navy), #2d5282); color: #fff; padding: 72px 5%; }
.about-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.about-hero p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; }
.about-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.profile-img { background: linear-gradient(135deg, var(--navy), var(--green)); height: 200px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.profile-body { padding: 24px; }
.profile-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.profile-title { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.credential-badge { display: inline-block; background: #ebf4ff; color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin: 3px 3px 3px 0; }
.about-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; margin-top: 28px; }
.about-section h2:first-child { margin-top: 0; }
.about-section p { font-size: 0.92rem; color: #4a5568; line-height: 1.8; margin-bottom: 12px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.value-item { background: var(--gray); border-radius: 10px; padding: 16px; }
.value-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ── Services Page ── */
.services-hero { background: linear-gradient(135deg, var(--navy), #2d5282); color: #fff; padding: 72px 5%; }
.services-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.services-hero p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 5%; }
.service-detail:nth-child(even) { background: var(--gray); }
.service-detail:nth-child(even) .sd-content { order: 2; }
.service-detail:nth-child(even) .sd-visual { order: 1; }
.sd-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.sd-content p { font-size: 0.92rem; color: #4a5568; line-height: 1.8; margin-bottom: 16px; }
.sd-list { list-style: none; }
.sd-list li { display: flex; gap: 10px; font-size: 0.88rem; color: #4a5568; padding: 6px 0; }
.sd-list li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }
.sd-visual { background: linear-gradient(135deg, var(--navy), var(--green)); border-radius: 14px; padding: 36px; color: #fff; }
.sd-visual h3 { font-size: 1rem; color: var(--gold-light); font-weight: 700; margin-bottom: 16px; }
.price-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.88rem; }
.price-item:last-child { border-bottom: none; }
.price-item .price { color: var(--gold-light); font-weight: 700; }

/* ── Tax Calculator ── */
.calc-section { background: var(--gray); padding: 80px 5%; }
.calc-wrap { max-width: 860px; margin: 0 auto; }
.calc-wrap .section-title { text-align: left; margin-bottom: 6px; }
.calc-wrap .section-sub { margin-bottom: 36px; }
.calc-group { margin-bottom: 28px; }
.calc-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.calc-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-btn {
  padding: 9px 20px; border-radius: 6px; border: 2px solid var(--border);
  background: #fff; color: #4a5568; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.calc-btn:hover { border-color: var(--navy); color: var(--navy); }
.calc-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.calc-counter { display: flex; align-items: center; gap: 0; }
.calc-counter button {
  width: 36px; height: 36px; border: 2px solid var(--border); background: #fff;
  font-size: 1.2rem; font-weight: 700; color: var(--navy); cursor: pointer;
  transition: all .15s; line-height: 1;
}
.calc-counter button:first-child { border-radius: 6px 0 0 6px; }
.calc-counter button:last-child  { border-radius: 0 6px 6px 0; }
.calc-counter button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.calc-counter span { min-width: 44px; text-align: center; font-size: 1rem; font-weight: 700; color: var(--navy); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); padding: 6px 4px; }
.calc-form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.calc-form-item { background: #fff; border: 2px solid var(--border); border-radius: 8px; padding: 14px 16px; }
.calc-form-item label { display: block; font-size: 0.78rem; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.calc-form-item .calc-counter { gap: 0; }
.calc-result {
  background: var(--navy); border-radius: 14px; padding: 32px 36px; margin-top: 36px; color: #fff;
}
.calc-result-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.calc-result-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold-light); }
.calc-total { font-size: 2.4rem; font-weight: 800; color: var(--gold-light); }
.calc-breakdown { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; }
.calc-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 5px 0; color: rgba(255,255,255,.85); }
.calc-line .cl-amt { color: var(--gold-light); font-weight: 600; }
.calc-line.cl-total { border-top: 1px solid rgba(255,255,255,.25); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 1rem; color: #fff; }
.calc-line.cl-total .cl-amt { font-size: 1.15rem; color: var(--gold-light); }
.calc-refund-toggle { margin-top: 28px; }
.calc-refund-toggle summary { cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--gold-light); list-style: none; }
.calc-refund-toggle summary::before { content: '▶ '; }
.calc-refund-toggle[open] summary::before { content: '▼ '; }
.calc-refund-body { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-input-group label { display: block; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.calc-input-group input {
  width: 100%; padding: 9px 14px; border-radius: 6px; border: none;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1rem; font-weight: 600;
  outline: none;
}
.calc-input-group input::placeholder { color: rgba(255,255,255,.4); }
.calc-refund-result { grid-column: 1 / -1; background: rgba(255,255,255,.1); border-radius: 8px; padding: 14px 18px; font-size: 0.9rem; color: rgba(255,255,255,.9); }
.calc-refund-result strong { color: var(--gold-light); font-size: 1.15rem; }
.calc-cta-row { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 60px 5%; }
  .hero-card { width: 100%; }
  .why-grid, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .sd-content, .service-detail:nth-child(even) .sd-visual { order: unset; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 12px 6% 24px;
    z-index: 99;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: #4a5568;
  }
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero { flex-direction: column; gap: 32px; padding: 60px 5% 40px; }
}
