/* ===========================
   ViewNam — Styles
   =========================== */

:root {
    --primary: #0B3D2E;        /* Deep Namibian green */
    --primary-light: #E8F5E9;
    --primary-dark: #062A1F;
    --secondary: #D4A843;      /* Warm gold/sand */
    --secondary-light: #FDF3D7;
    --accent: #C0392B;         /* Alert red for important CTAs */
    --text: #1A1A2E;
    --text-light: #5A5A6E;
    --text-muted: #8E8E9E;
    --bg: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #0B3D2E;
    --border: #E2E8F0;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 44px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 56px;
    width: auto;
}

.footer-logo-img {
    height: 64px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-cta {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   Hero
   =========================== */
.hero {
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
    padding-top: 72px; /* offset for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-inspection.png') center center / cover no-repeat;
    opacity: 0.15;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 132px);
    padding: 20px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero h1 {
    color: white;
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero .highlight {
    color: var(--secondary);
}

.hero-badge {
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 500px;
    font-weight: 400;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 32px;
}

.hero-checks span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-checks span::before {
    content: '\2713';
    color: var(--secondary);
    font-weight: 700;
    margin-right: 6px;
}

.hero-warning {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero .btn-primary:hover {
    background: #E5B94E;
    border-color: #E5B94E;
}

.hero .btn-outline {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero .btn-outline:hover {
    color: white;
    border-color: rgba(255,255,255,0.5);
    background: transparent;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 0 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
}

/* ===========================
   Problem Section
   =========================== */
.problem-section {
    padding: 64px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.problem-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.problem-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}

.problem-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--primary);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

.problem-tagline {
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===========================
   Sections (general)
   =========================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    position: relative;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin: 14px auto 0;
    border-radius: 2px;
}

.about-content-full h2::after {
    margin-left: 0;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   How It Works
   =========================== */
.how-it-works {
    background: var(--bg-light);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}

.step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.6;
}

.step-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===========================
   Services
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}

.service-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   Coverage
   =========================== */
.coverage {
    background: var(--bg-light);
}

.coverage-towns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.coverage-towns span {
    padding: 6px 16px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.coverage-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

#namibiaMap {
    width: 100%;
    height: 520px;
}

/* Leaflet popup override for ViewNam */
.viewnam-popup .leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15) !important;
    border: none !important;
}

.viewnam-popup .leaflet-popup-content {
    margin: 0 !important;
    min-width: 200px !important;
}

.viewnam-popup .leaflet-popup-tip {
    background: #0B3D2E !important;
}

.town-label {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    padding: 0 !important;
    white-space: nowrap !important;
    text-shadow: 1px 1px 2px white, -1px -1px 2px white, 1px -1px 2px white, -1px 1px 2px white !important;
}

.town-label::before {
    display: none !important;
}

.coverage-highlight {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 8px;
}

.coverage-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.coverage-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.coverage-note a {
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 28px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.faq-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 3px;
}

.booking-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.booking-trust span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.booking-trust span::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ===========================
   Pricing
   =========================== */

/* Featured full package */
.pricing-highlight {
    margin-bottom: 48px;
}

.pricing-card.wide {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-highlight-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: center;
}

.pricing-highlight-right {
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 600;
}

/* Individual services grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.services-pricing .pricing-card {
    text-align: left;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: white;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    vertical-align: top;
    line-height: 1.8;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-addon {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    text-align: center;
}

.pricing-note-box {
    text-align: center;
    margin-top: 48px;
    padding: 0 20px;
}

.pricing-note-box svg {
    display: none;
}

.pricing-note-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.pricing-note-box a {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.pricing-save {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 4px;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-trust span::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
}

.testimonial-tagline {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.about-tagline {
    margin-top: 24px;
    font-size: 1rem;
    color: var(--primary);
}

.pricing-card.featured .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    background: var(--bg-light);
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    margin: 0;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   About
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about-content-full {
    max-width: 700px;
}

.about-content-full .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content-full h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 1rem;
}

.about-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-point {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 16px;
    border-left: 3px solid var(--secondary);
}

/* ===========================
   Booking Form
   =========================== */
.booking {
    background: var(--bg-light);
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 4px;
}

.step-ind {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid var(--border);
    transition: all 0.2s;
}

.step-ind span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-right: 6px;
}

.step-ind.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.step-ind.active span {
    background: var(--primary);
    color: white;
}

.step-ind.done {
    color: var(--primary);
    border-bottom-color: var(--primary);
    opacity: 0.6;
}

.step-ind.done span {
    background: var(--primary);
    color: white;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Multi-step form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
    padding-bottom: 0;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: white;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.package-option:hover {
    border-color: var(--primary);
}

.package-option input[type="radio"],
.package-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.package-option input[type="radio"]:checked + .package-content,
.package-option input[type="checkbox"]:checked + .package-content {
    color: var(--primary);
}

.package-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.package-content strong {
    display: block;
    font-size: 0.95rem;
}

.package-content span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-disclaimer {
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.form-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.booking-form .btn-lg {
    margin-top: 8px;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ===========================
   Contact / Footer
   =========================== */
.contact {
    background: var(--primary-dark);
    color: white;
    padding: 72px 0 0;
    border-top: 4px solid var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.contact-tagline {
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-cta-line {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-cta-btn {
    margin-bottom: 24px;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-trust span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-trust span::before {
    content: '\2713';
    color: var(--secondary);
    margin-right: 8px;
}

.footer-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 1px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-item a,
.contact-item span {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: white;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

/* ===========================
   Scroll to Top
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   WhatsApp Float
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* ===========================
   Modal
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.modal h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.modal-ref {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .pricing-highlight-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-highlight-inner .pricing-features {
        text-align: left;
    }

    .pricing-grid.services-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   Tablet (768px - 1024px)
   =========================== */
@media (max-width: 768px) {

    /* Global */
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Nav */
    .nav-container {
        height: auto;
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
        font-size: 1rem;
    }

    .nav-cta {
        display: none;
    }

    /* Hero needs more top offset since navbar is shorter */
    .hero {
        padding-top: 62px;
    }

    /* Hero */
    .hero .container {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 0 36px;
        gap: 28px;
    }

    .step-indicators {
        flex-wrap: wrap;
    }

    .step-ind {
        font-size: 0;
        padding: 10px 4px;
    }

    .step-ind span {
        margin-right: 0;
        font-size: 0.75rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-checks {
        gap: 8px 16px;
        margin-bottom: 24px;
    }

    .hero-checks span {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-warning {
        font-size: 0.8rem;
        margin-top: 16px;
    }

    .hero-image {
        padding: 0;
        justify-content: center;
    }

    .hero-image dotlottie-player {
        max-width: 280px !important;
    }

    /* Problem */
    .problem-section {
        padding: 48px 0;
    }

    .problem-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .problem-card {
        padding: 22px 20px;
    }

    .problem-card h3 {
        font-size: 1rem;
    }

    .problem-card p {
        font-size: 0.88rem;
    }

    .problem-tagline {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    /* Steps */
    .steps-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-card {
        padding: 22px 20px;
    }

    .step-num {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 22px 20px;
    }

    /* Coverage */
    #namibiaMap {
        height: 320px;
    }

    .coverage-towns {
        gap: 6px;
        padding: 0 8px;
    }

    .coverage-towns span {
        font-size: 0.75rem;
        padding: 5px 11px;
    }

    .coverage-label {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .coverage-highlight {
        font-size: 0.92rem;
    }

    .coverage-map-wrap {
        margin: 0 -4px;
    }

    /* Pricing */
    .pricing-highlight-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 22px;
    }

    .pricing-highlight-inner .pricing-features {
        text-align: left;
    }

    .pricing-grid,
    .pricing-grid.services-pricing {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-card.featured.wide {
        padding: 0;
    }

    .price {
        font-size: 2.2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin: 32px 0 14px;
    }

    .pricing-note-box {
        padding: 16px 20px;
        margin-top: 24px;
    }

    .pricing-note-box p {
        font-size: 0.88rem;
    }

    .pricing-trust {
        gap: 14px;
        margin-top: 16px;
    }

    .pricing-trust span {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonial-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-card {
        padding: 22px 20px;
    }

    .testimonial-card p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .testimonial-tagline {
        font-size: 0.9rem;
        padding: 0 16px;
        margin-top: 20px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-height: 280px;
        object-fit: cover;
        width: 100%;
        border-radius: 12px;
    }

    .about-content-full h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-points {
        margin-top: 22px;
        gap: 10px;
    }

    .about-point {
        font-size: 0.92rem;
    }

    .about-tagline {
        font-size: 0.95rem;
        margin-top: 20px;
    }

    /* Booking */
    .booking-trust {
        gap: 14px;
    }

    .booking-trust span {
        font-size: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 20px;
    }

    .booking-form .btn-lg {
        font-size: 0.95rem;
        padding: 14px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .package-option {
        padding: 14px 16px;
    }

    .package-content strong {
        font-size: 0.92rem;
    }

    .package-content span {
        font-size: 0.8rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-cta {
        font-size: 0.92rem;
        padding: 0 16px;
    }

    /* Footer */
    .contact {
        padding: 48px 0 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .contact-tagline {
        font-size: 0.92rem;
    }

    .contact-cta-line {
        font-size: 0.92rem;
    }

    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }

    .contact-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* WhatsApp float */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .scroll-top {
        bottom: 76px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===========================
   Small phones (480px and below)
   =========================== */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 44px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 1.45rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .section-tag {
        font-size: 0.68rem;
    }

    /* Hero */
    .hero-grid {
        padding: 36px 0 20px;
        gap: 20px;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.65rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-checks {
        gap: 6px 14px;
    }

    .hero-checks span {
        font-size: 0.8rem;
    }

    .hero-actions .btn {
        padding: 13px 20px;
        font-size: 0.9rem;
    }

    .hero-warning {
        font-size: 0.78rem;
    }

    .hero-image dotlottie-player {
        max-width: 240px !important;
    }

    .hero .container {
        padding: 0 18px;
    }

    h2 {
        font-size: 1.45rem;
    }

    /* Problem cards */
    .problem-card {
        padding: 20px 18px;
    }

    .problem-card h3 {
        font-size: 0.95rem;
    }

    .problem-card p {
        font-size: 0.85rem;
    }

    /* Steps */
    .step-card {
        padding: 20px 18px;
    }

    .step-num {
        font-size: 1.6rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    /* Services */
    .service-card {
        padding: 20px 18px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Coverage */
    .coverage-towns span {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    #namibiaMap {
        height: 280px;
    }

    .coverage-highlight {
        font-size: 0.88rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 22px 18px;
    }

    .pricing-header h3 {
        font-size: 1.05rem;
    }

    .pricing-desc {
        font-size: 0.85rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 18px;
    }

    .testimonial-card p {
        font-size: 0.88rem;
    }

    .testimonial-card cite {
        font-size: 0.8rem;
    }

    /* About */
    .about-content-full h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-point {
        font-size: 0.88rem;
        padding-left: 14px;
    }

    .about-image img {
        max-height: 240px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 14px 0;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    /* Footer */
    .contact-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-tagline {
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 0.88rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    /* Booking form */
    .booking-form {
        padding: 18px;
    }

    .booking-trust {
        gap: 10px;
    }

    .booking-trust span {
        font-size: 0.75rem;
    }

    /* Modal */
    .modal {
        padding: 28px 20px;
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
