/* ==========================================================================
   Tracker Prices South Africa — Premium Design System
   One shared stylesheet for every page. Edit here, not per-page.
   ========================================================================== */

:root {
    /* Brand palette — deep navy + teal + warm orange accent */
    --c-primary: #102a43;
    --c-primary-dark: #0a1c2e;
    --c-primary-light: #1f6f8b;
    --c-primary-tint: #e9f3f6;
    --c-teal: #2ec4b6;
    --c-accent: #ff9f1c;
    --c-accent-dark: #d9820a;
    --c-accent-light: #ffc069;
    --c-ink: #14213d;
    --c-body: #4c5b6e;
    --c-muted: #667085;
    --c-bg: #f7fafc;
    --c-surface: #ffffff;
    --c-border: #e2e8f0;
    --c-success: #16a34a;
    --c-success-bg: #eaf9ef;
    --c-danger: #dc2626;
    --c-danger-bg: #fdecec;

    /* Type */
    --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.06), 0 1px 3px rgba(16, 42, 67, 0.08);
    --shadow-md: 0 4px 12px rgba(16, 42, 67, 0.08), 0 2px 4px rgba(16, 42, 67, 0.06);
    --shadow-lg: 0 20px 40px -12px rgba(16, 42, 67, 0.18);
    --shadow-gold: 0 8px 20px -6px rgba(255, 159, 28, 0.45);

    /* Rhythm */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --section-pad: 96px;
    --container-w: 1200px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--c-body);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--c-ink);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }
table { border-collapse: collapse; }

.container { width: 92%; max-width: var(--container-w); margin: 0 auto; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--c-accent-dark); background: rgba(255, 159, 28, 0.12);
    padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}

.section-title { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-title h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-title p { font-size: 17px; color: var(--c-muted); }

section { padding: var(--section-pad) 0; }
.section-alt { background: var(--c-surface); }
.section-tint { background: var(--c-primary-tint); }

/* Alternating bands for visual rhythm across every page */
.providers, .faq, .calculator, .guide-list, .location-service { background: var(--c-surface); }
.content-rich, .service-areas, .cta-band-section, .contact { background: var(--c-bg); }

/* ---------- Buttons ---------- */
.btn,
.btn-primary, .btn-outline, .cta-button, .btn-quote, .submit-contact, .submit-quote,
.primary-button, .secondary-button, .info-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap; text-decoration: none;
}
.btn-primary, .cta-button, .btn-quote, .submit-contact, .submit-quote, .primary-button {
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
    color: #2b1a02;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .cta-button:hover, .btn-quote:hover, .submit-contact:hover, .submit-quote:hover, .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -6px rgba(255, 159, 28, 0.55);
}
.btn-outline, .secondary-button {
    background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover, .secondary-button:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.info-button { background: transparent; color: var(--c-primary-light); border: 1.5px solid var(--c-primary-light); }
.info-button:hover { background: var(--c-primary-tint); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Header / Nav ---------- */
header {
    position: sticky; top: 0; z-index: 500;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border);
    transition: box-shadow 0.2s ease;
}
.header-container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 16px;
    box-shadow: var(--shadow-sm);
}
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--c-ink); letter-spacing: -0.02em; }
.logo-text span { color: var(--c-accent-dark); }

nav#siteNav > ul { display: flex; align-items: center; gap: 4px; }
nav#siteNav > ul > li > a {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; border-radius: var(--radius-pill);
    font-size: 14.5px; font-weight: 600; color: var(--c-ink);
    transition: background 0.2s ease, color 0.2s ease;
}
nav#siteNav > ul > li > a:hover { background: var(--c-primary-tint); color: var(--c-primary-light); }
nav#siteNav .cta-button { margin-left: 8px; padding: 11px 22px; font-size: 14px; }
nav#siteNav .cta-button:hover { color: #2b1a02; }

.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    min-width: 240px; background: var(--c-surface); border: 1px solid var(--c-border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block; padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--c-body);
}
.dropdown-menu li a:hover { background: var(--c-primary-tint); color: var(--c-primary-light); }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; margin: 0 auto; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(46,196,182,0.28), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(31,111,139,0.55), transparent 50%),
        linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    color: #fff; padding: 120px 0 100px; text-align: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 26px 26px; opacity: 0.5; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: #fff; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
    padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); max-width: 900px; margin: 0 auto 22px; }
.hero-subtitle { font-size: 19px; max-width: 700px; margin: 0 auto 34px; color: rgba(255,255,255,0.88); }
.hero-features, .hero-keywords { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 38px; }
.feature-badge, .keyword-badge {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 16px; border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Provider comparison ---------- */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.provider-card {
    background: var(--c-surface); border-radius: var(--radius-lg); border: 1px solid var(--c-border);
    overflow: hidden; box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.provider-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.provider-card.featured { border: 2px solid var(--c-accent); }
.provider-badge {
    background: var(--c-primary); color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; padding: 10px 24px; text-align: center;
}
.provider-badge.accent { background: var(--c-accent); color: #2b1a02; }
.provider-info { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.provider-info h3 { font-size: 21px; margin-bottom: 6px; }
.provider-tagline { color: var(--c-primary-light); font-weight: 700; font-size: 13.5px; margin-bottom: 16px; }
.provider-features { margin-bottom: 20px; }
.provider-features li {
    padding: 8px 0 8px 28px; position: relative; font-size: 14.5px;
    border-bottom: 1px dashed var(--c-border);
}
.provider-features li:last-child { border-bottom: none; }
.provider-features li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--c-teal); font-weight: 800; }
.provider-price { font-size: 24px; font-weight: 800; font-family: var(--font-heading); color: var(--c-ink); margin-bottom: 4px; }
.provider-price-note { font-size: 12.5px; color: var(--c-muted); margin-bottom: 18px; }
.provider-actions { display: flex; gap: 12px; margin-top: auto; }
.provider-actions .btn, .provider-actions button { flex: 1; }
.comparison-disclaimer {
    margin-top: 32px; font-size: 13px; color: var(--c-muted); text-align: center;
    max-width: 780px; margin-left: auto; margin-right: auto;
}

/* ---------- Spec / comparison table ---------- */
.spec-table-wrap { overflow-x: auto; background: var(--c-surface); border-radius: var(--radius-lg); border: 1px solid var(--c-border); }
table.spec-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.spec-table th, table.spec-table td { padding: 16px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--c-border); }
table.spec-table thead th { background: var(--c-primary-tint); color: var(--c-primary); font-family: var(--font-heading); font-size: 14px; }
table.spec-table tbody tr:last-child td { border-bottom: none; }
table.spec-table tbody tr:hover { background: var(--c-bg); }

/* ---------- Cost calculator ---------- */
.calculator-card {
    max-width: 780px; margin: 0 auto; background: var(--c-surface);
    border: 1px solid var(--c-border); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-md);
}
.calculator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.calculator-result {
    margin-top: 24px; padding: 24px; background: var(--c-primary-tint); border-radius: var(--radius-md);
    display: none;
}
.calculator-result.show { display: block; }
.calculator-result p { font-size: 15px; color: var(--c-ink); margin-bottom: 6px; font-weight: 600; }
.calculator-result .savings-note { font-weight: 400; color: var(--c-muted); font-size: 13.5px; margin-top: 10px; }

/* ---------- Content blocks ---------- */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.content-block h3 { font-size: 21px; margin-bottom: 12px; }
.content-block p { font-size: 15.5px; }
.content-block a { color: var(--c-primary-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- USP / feature / benefit grids ---------- */
.usp-grid, .features-grid, .benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.usp-item, .feature-card, .benefit-item, .why-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md);
    padding: 32px 26px; text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.usp-item:hover, .feature-card:hover, .benefit-item:hover, .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-icon, .feature-icon, .benefit-icon { font-size: 30px; margin-bottom: 16px; }
.usp-item h3, .feature-card h3, .benefit-item h3, .why-card h3 { font-size: 17px; margin-bottom: 8px; }
.usp-item p, .feature-card p, .benefit-item p, .why-card p { font-size: 14.5px; }

/* ---------- Areas / cities / provinces ---------- */
.cities-list, .areas-list { background: var(--c-surface); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--c-border); }
.cities-list h3, .areas-list h3 { font-size: 19px; margin-bottom: 20px; text-align: center; }
.cities-list ul, .areas-list ul { columns: 3; gap: 20px; }
.cities-list li, .areas-list li { padding: 8px 0; font-size: 14.5px; break-inside: avoid; }

.province-grid, .provinces-grid, .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.province, .province-card, .area-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 22px 24px;
}
.province h3, .province-card h3, .area-card h3 { font-size: 16px; color: var(--c-primary-light); margin-bottom: 10px; }
.province ul li, .province-card ul li { font-size: 14px; padding: 4px 0; }
.area-card p { font-size: 13.5px; color: var(--c-muted); }

/* ---------- Vehicle-type grid ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.vehicle-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md);
    padding: 26px 22px; text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vehicle-icon { font-size: 28px; margin-bottom: 12px; }
.vehicle-card h3 { font-size: 16px; margin-bottom: 6px; }
.vehicle-card p { font-size: 13.5px; }

/* ---------- Guides ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guide-card {
    background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 28px;
}
.guide-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.guide-card p { font-size: 14.5px; margin-bottom: 16px; }
.read-more { color: var(--c-primary-light); font-weight: 700; font-size: 14px; }
.read-more::after { content: ' →'; }

/* ---------- Steps (installation / process) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 30px 24px; position: relative; }
.step-card::before {
    counter-increment: step; content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
    color: #2b1a02; font-family: var(--font-heading); font-weight: 800; margin-bottom: 16px;
}
.step-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.step-card p { font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-grid { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px; font-weight: 700; font-size: 15.5px; color: var(--c-ink); cursor: pointer;
}
.faq-question span { font-size: 20px; color: var(--c-accent-dark); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 26px 22px; font-size: 14.5px; }
.faq-item.active .faq-answer { max-height: 600px; }

/* ---------- Contact ---------- */
.contact-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info { background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary)); color: #fff; border-radius: var(--radius-lg); padding: 44px 38px; }
.contact-info h3 { color: #fff; font-size: 22px; margin-bottom: 22px; }
.contact-details { margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 14.5px; }
.contact-detail i { width: 36px; height: 36px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.contact-info p { font-size: 14px; color: rgba(255,255,255,0.85); }
.contact-info a { color: #fff; text-decoration: underline; }
.contact-form-container { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 40px; position: relative; }
.contact-form-container h3 { font-size: 20px; margin-bottom: 20px; }

/* ---------- Forms (shared: contact + quote modal) ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--c-ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
    background: var(--c-bg); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--c-primary-light); box-shadow: 0 0 0 3px rgba(31,111,139,0.15); background: #fff;
}
.form-group input[readonly] { background: var(--c-primary-tint); color: var(--c-primary); font-weight: 600; }
.form-check-group label { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 400; color: var(--c-body); }
.form-check-group input[type="checkbox"] { width: auto; margin-top: 3px; }
.form-check-group a { color: var(--c-primary-light); text-decoration: underline; }
.honeypot-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.success-message, .form-error-message, .loading-spinner { display: none; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.success-message.show, .success-message[style*="block"] { display: block; background: var(--c-success-bg); color: var(--c-success); }
.form-error-message.show, .form-error-message[style*="block"] { display: block; background: var(--c-danger-bg); color: var(--c-danger); }
.loading-spinner[style*="block"] { display: block; background: var(--c-primary-tint); color: var(--c-primary-light); }

/* ---------- CTA band ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    color: #fff; text-align: center; padding: 80px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { max-width: 640px; margin: 0 auto 32px; color: rgba(255,255,255,0.85); font-size: 17px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--c-primary-dark); color: rgba(255,255,255,0.75); padding: 72px 0 32px; }
.footer-content { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-column h3 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.footer-column p { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }
.footer-column ul li { padding: 6px 0; font-size: 13.5px; }
.footer-column ul li a:hover { color: var(--c-teal); }
.footer-column ul li i { width: 18px; margin-right: 6px; color: var(--c-teal); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; }
.footer-legal-links a:hover { color: var(--c-teal); }
.copyright { text-align: center; font-size: 12.5px; padding-top: 16px; color: rgba(255,255,255,0.5); }

/* ---------- Modal ---------- */
.modal {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(10,28,46,0.6); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
}
.modal-content {
    background: var(--c-surface); border-radius: var(--radius-lg); padding: 40px;
    max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative;
    box-shadow: var(--shadow-lg);
}
.modal-content h2 { font-size: 22px; margin-bottom: 20px; padding-right: 30px; }
.close-modal { position: absolute; top: 24px; right: 28px; font-size: 26px; color: var(--c-muted); cursor: pointer; line-height: 1; }
.close-modal:hover { color: var(--c-ink); }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 15.5px; margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose ul li, .prose ol li { list-style: disc; }
.prose ol li { list-style: decimal; }

/* ---------- Sitemap page ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.sitemap-column h3 { font-size: 16px; margin-bottom: 14px; color: var(--c-primary-light); }
.sitemap-column ul li { padding: 6px 0; font-size: 14.5px; }
.sitemap-column ul li a:hover { color: var(--c-primary-light); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .content-grid, .form-row, .contact-container { grid-template-columns: 1fr; }
    .calculator-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav#siteNav {
        position: fixed; top: 84px; left: 0; right: 0; bottom: 0; overflow-y: auto;
        background: var(--c-surface); padding: 10px 6%;
        box-shadow: var(--shadow-md); border-bottom: 1px solid var(--c-border);
        transform: translateY(-140%); opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    nav#siteNav.open { transform: translateY(0); opacity: 1; }
    nav#siteNav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    nav#siteNav > ul > li { width: 100%; }
    nav#siteNav > ul > li > a { padding: 14px 4px; border-bottom: 1px solid var(--c-border); border-radius: 0; justify-content: space-between; }
    nav#siteNav .cta-button { margin: 14px 0; text-align: center; justify-content: center; }
    .nav-toggle { display: flex; }
    .has-dropdown .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: none; display: none; padding-left: 14px;
    }
    .has-dropdown.open .dropdown-menu { display: block; }

    .hero { padding: 70px 0 60px; }
    .usp-grid, .features-grid, .benefits-grid, .guide-grid, .province-grid, .provinces-grid, .areas-grid, .sitemap-grid { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: 1fr; }
    .cities-list ul, .areas-list ul { columns: 1; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .contact-detail { justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .provider-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .modal-content { padding: 26px; }
    section { padding: 56px 0; }
}
