/* =============================================================
   STAR HEALTH — Design System (VISUALLY ENHANCED)
   ============================================================= */

:root {
    --navy:        #0A3D62;
    --navy-deep:   #072d49;
    --navy-light:  #1e5a88;
    --green:       #2ecc71;
    --green-dark:  #27ae60;
    --green-pale:  #e8f8f0;
    --green-glow:  rgba(46,204,113,0.3);
    --red:         #e74c3c;
    --gold:        #f39c12;
    --bg:          #f8f9fa;
    --bg-white:    #ffffff;
    --text:        #1a2a3a;
    --text-muted:  #6b7a8a;
    --border:      #e0e6ed;
    --border-light: #f0f2f5;

    --font-display: Georgia, 'Times New Roman', serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,.15);
    --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width:100%; display:block; height:auto; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; }
h1,h2,h3,h4 { font-family:var(--font-display); font-weight:700; line-height:1.2; }

.container { max-width:1200px; margin:0 auto; padding:0 28px; }

/* ── Utility bar ── */
.utility-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,.8);
    font-size:13px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.utility-bar .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:10px;
    padding-bottom:10px;
    flex-wrap:wrap;
    gap:6px;
}
.utility-bar .contacts span {
    margin-right:24px;
    display:inline-flex;
    align-items:center;
    gap:4px;
}
.utility-bar .social a {
    margin-left:20px;
    color:rgba(255,255,255,.5);
    transition:all .3s var(--ease);
    font-size:12px;
    font-weight:500;
    letter-spacing:.02em;
    position:relative;
}
.utility-bar .social a::after {
    content: '';
    position:absolute;
    bottom:-2px;
    left:0;
    width:0;
    height:1px;
    background:var(--green);
    transition:width .3s var(--ease);
}
.utility-bar .social a:hover {
    color:var(--green);
}
.utility-bar .social a:hover::after {
    width:100%;
}

/* ── Nav ── */
.site-nav {
    background: var(--bg-white);
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid var(--border-light);
    transition:all .3s var(--ease);
}
.site-nav.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}
.site-nav .container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:16px;
    padding-bottom:16px;
    gap:20px;
}
.brand {
    font-family: var(--font-display);
    font-size:28px;
    font-weight:700;
    color: var(--navy);
    letter-spacing:-.5px;
    transition:transform .3s var(--ease);
}
.brand:hover { transform:scale(1.02); }
.brand .accent { color: var(--green); }
.nav-links { display:flex; list-style:none; gap:36px; }
.nav-links a {
    font-size:15px;
    font-weight:500;
    color: var(--text);
    position:relative;
    padding:4px 0;
    transition:color .3s var(--ease);
}
.nav-links a::after {
    content:'';
    position:absolute;
    left:0; bottom:-4px;
    height:2.5px; width:0;
    background: var(--green);
    transition:width .35s var(--ease);
    border-radius:4px;
}
.nav-links a:hover { color:var(--navy); }
.nav-links a:hover::after { width:100%; }
.nav-cta { display:flex; align-items:center; gap:12px; }

/* ── Buttons ── */
.btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    font-size:14.5px;
    padding:11px 26px;
    border-radius:50px;
    border:none;
    cursor:pointer;
    transition:all .3s var(--ease);
    text-decoration:none;
    font-family:var(--font-body);
    letter-spacing:.01em;
}
.btn-green {
    background:var(--green);
    color:white;
    box-shadow:0 4px 16px rgba(46,204,113,.3);
}
.btn-green:hover {
    background:var(--green-dark);
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(46,204,113,.4);
}
.btn-green:active { transform:translateY(0); }
.btn-outline {
    background:transparent;
    border:2px solid var(--navy);
    color:var(--navy);
}
.btn-outline:hover {
    background:var(--navy);
    color:white;
    transform:translateY(-2px);
    box-shadow:0 4px 16px rgba(10,61,98,.25);
}
.btn-white {
    background:white;
    color:var(--navy);
    border:none;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}
.btn-white:hover {
    background:var(--green-pale);
    transform:translateY(-2px);
    box-shadow:0 6px 24px rgba(0,0,0,.12);
}

.mobile-toggle {
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:var(--navy);
    padding:4px;
    transition:transform .3s var(--ease);
}
.mobile-toggle:hover { transform:rotate(90deg); }

/* ── Hero ── */
.hero {
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
    color:white;
    padding:90px 0 80px;
    position:relative;
    overflow:hidden;
}
.hero::before {
    content:'';
    position:absolute;
    top:-40%;
    right:-10%;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(46,204,113,.08) 0%, transparent 70%);
    border-radius:50%;
    pointer-events:none;
}
.hero::after {
    content:'';
    position:absolute;
    bottom:-20%;
    left:-10%;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(46,204,113,.05) 0%, transparent 70%);
    border-radius:50%;
    pointer-events:none;
}
.hero .container {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:1;
}
.hero-label {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(46,204,113,.15);
    color:var(--green);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.1em;
    padding:6px 16px;
    border-radius:50px;
    margin-bottom:22px;
    border:1px solid rgba(46,204,113,.25);
    backdrop-filter:blur(4px);
}
.hero h1 {
    font-size:clamp(36px, 4.8vw, 58px);
    line-height:1.08;
    color:white;
    margin-bottom:22px;
    letter-spacing:-.5px;
}
.hero h1 em {
    font-style:italic;
    color:var(--green);
    text-shadow:0 0 40px rgba(46,204,113,.2);
}
.hero .lead {
    font-size:18px;
    color:rgba(255,255,255,.85);
    max-width:480px;
    margin-bottom:36px;
    line-height:1.8;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.hero-stats { display:flex; gap:48px; flex-wrap:wrap; }
.hero-stats .snum {
    font-family:var(--font-display);
    font-size:36px;
    font-weight:700;
    color:var(--green);
    line-height:1;
}
.hero-stats .slabel {
    font-size:13px;
    color:rgba(255,255,255,.65);
    margin-top:5px;
    font-weight:500;
    letter-spacing:.02em;
}

.hero-visual {
    border-radius:var(--r-lg);
    overflow:hidden;
    box-shadow:var(--shadow-xl);
    aspect-ratio:4/4.2;
    width:100%;
    background:linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.1);
    transition:transform .4s var(--ease);
}
.hero-visual:hover { transform:scale(1.01); }
.hero-visual img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s var(--ease);
}
.hero-visual:hover img { transform:scale(1.03); }
.hero-visual .placeholder {
    width:100%; height:100%; min-height:280px;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    color:rgba(255,255,255,.7); text-align:center; padding:32px; gap:12px;
}
.hero-visual .placeholder .ph-icon { font-size:56px; }
.hero-visual .placeholder p { font-size:14px; max-width:220px; line-height:1.6; }

.hero-badge {
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;
    padding:8px 20px 8px 8px;
    margin-top:36px;
    backdrop-filter:blur(4px);
    transition:all .3s var(--ease);
}
.hero-badge:hover {
    background:rgba(255,255,255,.12);
    transform:translateX(4px);
}
.badge-icon {
    width:34px; height:34px;
    background:var(--green);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:14px; font-weight:700; color:white;
    flex-shrink:0;
}
.badge-text {
    font-size:13px;
    color:rgba(255,255,255,.8);
    line-height:1.3;
}
.badge-text strong { display:block; color:white; font-size:14px; }

.hero-visual-wrap { position:relative; }
.hero-float-card {
    position:absolute;
    bottom:-20px;
    left:-20px;
    background:white;
    border-radius:var(--r-md);
    padding:18px 22px;
    box-shadow:var(--shadow-xl);
    display:flex;
    align-items:center;
    gap:14px;
    min-width:190px;
    animation:fadeInUp .6s var(--ease) .3s both;
    border:1px solid rgba(255,255,255,.2);
}
.hero-float-card .fc-icon {
    width:44px; height:44px;
    background:var(--green-pale);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:20px; flex-shrink:0;
}
.hero-float-card .fc-text strong {
    display:block; font-size:17px; color:var(--navy); font-weight:700;
}
.hero-float-card .fc-text span { font-size:12px; color:var(--text-muted); }

.btn-explore {
    background:transparent;
    border:2px solid rgba(255,255,255,.4);
    color:white;
    padding:11px 28px;
    border-radius:50px;
    font-weight:600;
    font-size:14.5px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all .3s var(--ease);
    text-decoration:none;
}
.btn-explore:hover {
    background:rgba(255,255,255,.1);
    border-color:white;
    transform:translateY(-2px);
}

@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to { opacity:1; transform:translateY(0); }
}

/* ── Emergency strip ── */
.emergency-strip {
    background:linear-gradient(135deg, var(--red), #c0392b);
    color:white;
    text-align:center;
    padding:14px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.02em;
    box-shadow:0 2px 12px rgba(231,76,60,.3);
}

/* ── Sections ── */
.section { padding:96px 0; }
.section-alt { background:var(--bg); }
.section-head { max-width:560px; margin-bottom:56px; }
.section-head.centered { margin-left:auto; margin-right:auto; text-align:center; }
.section-head .eyebrow {
    display:inline-block;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--green-dark);
    margin-bottom:12px;
    padding:4px 14px;
    background:var(--green-pale);
    border-radius:50px;
}
.section-head h2 {
    font-size:clamp(28px, 3.4vw, 42px);
    color:var(--navy);
    margin-bottom:14px;
    letter-spacing:-.5px;
}
.section-head p {
    color:var(--text-muted);
    font-size:16.5px;
    line-height:1.8;
}

/* ── Stats Bar ── */
.stats-bar {
    background: white;
    border-top: 4px solid var(--green);
    box-shadow: var(--shadow-md);
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    padding: 34px 24px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition:background .3s var(--ease);
}
.stat-item:hover { background:var(--green-pale); }
.stat-item:last-child { border-right:none; }
.stat-item .snum {
    font-family:var(--font-display);
    font-size:40px;
    font-weight:700;
    color:var(--navy);
    line-height:1;
}
.stat-item .snum span { color:var(--green); }
.stat-item .slabel {
    font-size:13.5px;
    color:var(--text-muted);
    margin-top:8px;
    font-weight:500;
    letter-spacing:.02em;
}

/* ── About ── */
.about .container {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:68px;
    align-items:center;
}
.about-visual {
    border-radius:var(--r-lg);
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    aspect-ratio:4/4.8;
    width:100%;
    background:linear-gradient(160deg, var(--navy-light), var(--navy));
    transition:transform .4s var(--ease);
}
.about-visual:hover { transform:scale(1.01); }
.about-visual img { width:100%; height:100%; object-fit:cover; }
.about-visual .placeholder {
    width:100%; height:100%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    color:rgba(255,255,255,.75); text-align:center; padding:32px; gap:12px;
}
.about-visual .placeholder .ph-icon { font-size:52px; }
.about-visual .placeholder p { font-size:13px; max-width:200px; }

.feature-list { list-style:none; display:flex; flex-direction:column; gap:18px; margin-top:28px; }
.feature-list li {
    display:flex; gap:14px; align-items:flex-start;
    font-size:15px; color:var(--text);
    padding:4px 0;
    border-bottom:1px solid var(--border-light);
    padding-bottom:14px;
}
.feature-list li:last-child { border-bottom:none; padding-bottom:0; }
.feature-list .fcheck {
    width:26px; height:26px; flex-shrink:0;
    background:var(--green-pale);
    color:var(--green-dark);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:12px; font-weight:700;
    margin-top:1px;
    transition:transform .3s var(--ease);
}
.feature-list li:hover .fcheck { transform:scale(1.15); }
.feature-list strong { display:block; font-weight:600; color:var(--navy); margin-bottom:2px; }
.feature-list span { font-size:13.5px; color:var(--text-muted); }

/* ── Services ── */
.services-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(270px, 1fr));
    gap:24px;
}
.service-card {
    background:white;
    border-radius:var(--r-md);
    padding:32px 28px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-light);
    transition:all .35s var(--ease);
    position:relative;
}
.service-card::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:4px;
    background:linear-gradient(90deg, var(--green), var(--green-dark));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s var(--ease);
    border-radius:4px 4px 0 0;
}
.service-card:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--green);
}
.service-card:hover::before { transform:scaleX(1); }
.service-card .service-icon {
    font-size:34px;
    margin-bottom:16px;
    display:block;
}
.service-card h3 {
    font-size:18.5px;
    color:var(--navy);
    margin-bottom:10px;
}
.service-card p {
    font-size:14.5px;
    color:var(--text-muted);
    margin-bottom:18px;
    line-height:1.7;
}
.service-link {
    font-size:13.5px;
    font-weight:700;
    color:var(--green-dark);
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.service-link .arrow {
    transition:transform .3s var(--ease);
    display:inline-block;
}
.service-card:hover .arrow { transform:translateX(6px); }

/* ── Why Choose Us ── */
.why-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:26px;
    margin-top:52px;
}
.why-card {
    background:white;
    border-radius:var(--r-md);
    padding:34px 26px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-light);
    text-align:center;
    transition:all .35s var(--ease);
}
.why-card:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--green);
}
.why-icon {
    width:68px; height:68px;
    background:var(--green-pale);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:30px;
    margin:0 auto 18px;
    transition:all .35s var(--ease);
}
.why-card:hover .why-icon {
    transform:scale(1.1) rotate(-8deg);
    background:var(--green);
    color:white;
}
.why-card h3 { font-size:17.5px; color:var(--navy); margin-bottom:10px; }
.why-card p { font-size:14.5px; color:var(--text-muted); line-height:1.7; }

/* ── Doctors ── */
.doctors-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:26px;
}
.doctor-card {
    background:white;
    border-radius:var(--r-md);
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-light);
    transition:all .35s var(--ease);
}
.doctor-card:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--green);
}
.doctor-photo {
    aspect-ratio:1/1;
    background:linear-gradient(135deg, var(--navy), var(--navy-light));
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
    position:relative;
}
.doctor-photo::after {
    content:'';
    position:absolute;
    bottom:0; left:0; right:0;
    height:30%;
    background:linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
.doctor-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s var(--ease);
}
.doctor-card:hover .doctor-photo img { transform:scale(1.08); }
.doctor-photo .initials {
    font-family:var(--font-display);
    font-size:46px;
    font-weight:700;
    color:rgba(255,255,255,.95);
    position:relative;
    z-index:1;
}
.doctor-info { padding:22px 20px; }
.doctor-info h3 {
    font-size:17px;
    color:var(--navy);
    margin-bottom:4px;
}
.doctor-info .specialty {
    font-size:13px;
    color:var(--green-dark);
    font-weight:600;
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.doctor-info .experience {
    font-size:13px;
    color:var(--text-muted);
}

/* ── Process Steps ── */
.process-steps {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    position:relative;
    margin-top:56px;
}
.process-steps::before {
    content:'';
    position:absolute;
    top:28px; left:12.5%; right:12.5%;
    height:3px;
    background:var(--border);
    z-index:0;
    border-radius:4px;
}
.step {
    text-align:center;
    padding:0 16px;
    position:relative;
    z-index:1;
}
.step-num {
    width:58px; height:58px;
    border-radius:50%;
    background:var(--navy);
    color:white;
    font-family:var(--font-display);
    font-size:22px; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px;
    border:3px solid white;
    box-shadow:var(--shadow-sm);
    transition:all .35s var(--ease);
}
.step:hover .step-num {
    background:var(--green);
    transform:scale(1.12) rotate(-6deg);
    box-shadow:0 8px 28px rgba(46,204,113,.3);
}
.step h4 { font-size:16.5px; color:var(--navy); margin-bottom:8px; }
.step p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* ── Testimonials ── */
.testimonials-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(290px, 1fr));
    gap:24px;
}
.testimonial-card {
    background:white;
    border-radius:var(--r-md);
    padding:32px 28px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-light);
    position:relative;
    transition:all .35s var(--ease);
}
.testimonial-card:hover {
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
    border-color:var(--green);
}
.t-mark {
    font-family:var(--font-display);
    font-size:56px;
    color:var(--green);
    opacity:.2;
    line-height:1;
    margin-bottom:6px;
}
.t-text {
    font-size:15px;
    color:var(--text);
    margin-bottom:22px;
    line-height:1.8;
    font-style:italic;
}
.t-author { display:flex; align-items:center; gap:14px; }
.t-avatar {
    width:46px; height:46px; border-radius:50%;
    background:linear-gradient(135deg, var(--navy), var(--navy-light));
    color:white;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:15px; flex-shrink:0;
}
.t-name { font-size:15px; font-weight:600; color:var(--navy); }
.t-stars {
    font-size:13px;
    color:var(--gold);
    margin-top:3px;
    letter-spacing:1.5px;
}
.t-stars span { color:var(--border); }

/* ── Appointment Section ── */
.booking-section {
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
    padding:96px 0;
    color:white;
    position:relative;
    overflow:hidden;
}
.booking-section::before {
    content:'';
    position:absolute;
    top:-30%;
    right:-10%;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(46,204,113,.06) 0%, transparent 70%);
    border-radius:50%;
    pointer-events:none;
}
.booking-section .container {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:64px;
    align-items:start;
    position:relative;
    z-index:1;
}
.booking-intro .eyebrow {
    background:rgba(46,204,113,.15);
    color:var(--green);
    border:1px solid rgba(46,204,113,.25);
}
.booking-intro h2 {
    color:white;
    font-size:clamp(28px, 3.4vw, 40px);
    margin-bottom:16px;
}
.booking-intro p {
    color:rgba(255,255,255,.8);
    margin-bottom:28px;
    font-size:16px;
    line-height:1.8;
}
.booking-points {
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.booking-points li {
    font-size:15px;
    color:rgba(255,255,255,.9);
    display:flex;
    gap:12px;
    align-items:center;
    padding:4px 0;
}
.booking-points .tick {
    color:var(--green);
    font-weight:700;
    font-size:17px;
}

.booking-form-card {
    background:white;
    border-radius:var(--r-lg);
    padding:44px;
    color:var(--text);
    box-shadow:var(--shadow-xl);
}
.booking-form-card h3 {
    font-size:22px;
    color:var(--navy);
    margin-bottom:28px;
    padding-bottom:18px;
    border-bottom:2px solid var(--border-light);
    display:flex;
    align-items:center;
    gap:10px;
}

.login-prompt-bar {
    background:var(--green-pale);
    border:1px solid rgba(46,204,113,.25);
    border-radius:var(--r-sm);
    padding:14px 18px;
    margin-bottom:24px;
    font-size:14px;
    color:var(--navy);
    text-align:center;
}
.login-prompt-bar a {
    font-weight:700;
    color:var(--green-dark);
    text-decoration:underline;
    transition:color .2s;
}
.login-prompt-bar a:hover { color:var(--navy); }

/* ── Form Styles ── */
.appt-form-card {
    display:flex;
    flex-direction:column;
    gap:20px;
}
.form-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.field { display:flex; flex-direction:column; gap:6px; }
.field label {
    font-size:13px;
    font-weight:600;
    color:var(--navy);
    letter-spacing:.02em;
}
.field .req { color:var(--red); }
.field input, .field select, .field textarea {
    border:2px solid var(--border);
    border-radius:var(--r-sm);
    padding:12px 15px;
    font-size:14.5px;
    font-family:var(--font-body);
    color:var(--text);
    background:var(--bg-white);
    transition:all .3s var(--ease);
    width:100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline:none;
    border-color:var(--green);
    box-shadow:0 0 0 4px rgba(46,204,113,.12);
}
.field input.error, .field select.error, .field textarea.error {
    border-color:var(--red);
}
.field input:disabled, .field select:disabled {
    opacity:.6; cursor:not-allowed;
}
.field-error {
    font-size:12px;
    color:var(--red);
    min-height:20px;
}
.char-count {
    font-size:12px;
    color:var(--text-muted);
    text-align:right;
    margin-top:4px;
}

/* ── CAPTCHA ── */
.captcha-row {
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
}
.captcha-row img {
    border:2px solid var(--border);
    border-radius:var(--r-sm);
    cursor:pointer;
    height:48px;
    flex-shrink:0;
    transition:all .3s var(--ease);
}
.captcha-row img:hover {
    opacity:.8;
    border-color:var(--green);
    transform:scale(1.03);
}
.captcha-row input { flex:1; min-width:130px; }
.captcha-hint {
    font-size:12px;
    color:var(--text-muted);
    margin-top:4px;
}

.submit-btn {
    background:var(--green);
    color:white;
    border:none;
    border-radius:var(--r-sm);
    padding:16px 28px;
    font-size:16px;
    font-weight:700;
    font-family:var(--font-body);
    transition:all .3s var(--ease);
    width:100%;
    margin-top:6px;
    box-shadow:0 4px 16px rgba(46,204,113,.3);
    letter-spacing:.02em;
}
.submit-btn:hover {
    background:var(--green-dark);
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(46,204,113,.4);
}
.submit-btn:active { transform:translateY(0); }
.submit-btn:disabled {
    opacity:.6; cursor:not-allowed; transform:none;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner h2 {
    color: white;
    font-size: clamp(26px, 3.2vw, 38px);
    margin-bottom: 14px;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,.9);
    font-size: 17px;
    margin-bottom: 30px;
    position: relative;
}
.btn-cta-white {
    background: white;
    color: var(--green-dark);
    padding: 15px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s var(--ease);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    position: relative;
}
.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ── Resources ── */
.resources-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:24px;
}
.resource-card {
    background:white;
    border-radius:var(--r-md);
    padding:30px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-light);
    transition:all .35s var(--ease);
}
.resource-card:hover {
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
}
.resource-card h3 { font-size:18px; color:var(--navy); margin-bottom:16px; }
.resource-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.resource-list a {
    display:flex; justify-content:space-between; align-items:center;
    padding:12px 16px;
    background:var(--bg);
    border-radius:var(--r-sm);
    font-size:14px;
    font-weight:500;
    color:var(--navy);
    transition:all .3s var(--ease);
    border:1px solid transparent;
}
.resource-list a:hover {
    background:var(--green-pale);
    border-color:var(--green);
    color:var(--green-dark);
    transform:translateX(4px);
}
.filesize { font-size:11px; font-weight:400; opacity:.6; }
.muted { color:var(--text-muted); font-size:14px; }

/* ── Footer ── */
footer {
    background: var(--navy-deep);
    color:rgba(255,255,255,.65);
    padding:68px 0 28px;
}
.footer-grid {
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:44px;
    padding-bottom:44px;
    border-bottom:1px solid rgba(255,255,255,.08);
    margin-bottom:28px;
}
.footer-brand {
    font-family:var(--font-display);
    font-size:24px;
    color:white;
    margin-bottom:14px;
}
.footer-brand .accent { color:var(--green); }
.footer-col p {
    font-size:14px;
    color:rgba(255,255,255,.55);
    line-height:1.8;
}
.footer-col h4 {
    font-family:var(--font-body);
    font-size:13px;
    color:white;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:18px;
}
.footer-col ul {
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.footer-col li, .footer-col a {
    font-size:14px;
    color:rgba(255,255,255,.55);
    transition:all .3s var(--ease);
}
.footer-col a:hover {
    color:var(--green);
    transform:translateX(4px);
}
.footer-disclaimer {
    background:rgba(255,255,255,.04);
    border-left:4px solid #ff9800;
    border-radius:var(--r-sm);
    padding:14px 20px;
    font-size:12.5px;
    color:rgba(255,255,255,.6);
    margin-bottom:24px;
    line-height:1.7;
}
.footer-disclaimer strong { color:#ff9800; }
.footer-bottom {
    text-align:center;
    font-size:13px;
    color:rgba(255,255,255,.35);
}

/* ── Toast ── */
.toast {
    position:fixed; top:24px; right:24px;
    background:var(--navy); color:white;
    padding:14px 20px; border-radius:var(--r-sm);
    box-shadow:var(--shadow-lg);
    z-index:5000; font-size:14px; max-width:360px; line-height:1.6;
    animation:toast-in .35s var(--ease);
}
.toast.error   { background:var(--red); }
.toast.success { background:var(--green-dark); }
@keyframes toast-in  { from { transform:translateX(110%); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes toast-out { from { transform:translateX(0); opacity:1; } to { transform:translateX(110%); opacity:0; } }

/* ── Back to top ── */
.back-to-top {
    position:fixed; bottom:30px; right:26px;
    width:48px; height:48px;
    background:var(--navy); color:white;
    border:none; border-radius:50%;
    font-size:20px; cursor:pointer;
    display:none; align-items:center; justify-content:center;
    box-shadow:var(--shadow-md); z-index:900;
    transition:all .3s var(--ease);
}
.back-to-top.visible { display:flex; }
.back-to-top:hover {
    transform:translateY(-4px);
    background:var(--green);
    box-shadow:0 8px 28px rgba(46,204,113,.3);
}

/* ── Reveal ── */
.reveal {
    opacity:0;
    transform:translateY(24px);
    transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in {
    opacity:1;
    transform:translateY(0);
}

/* ── Focus ── */
:focus-visible {
    outline:3px solid var(--green);
    outline-offset:3px;
    border-radius:4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container, .about .container, .booking-section .container { grid-template-columns:1fr; gap:44px; }
    .hero-visual { order:-1; width:100%; max-height:420px; aspect-ratio:16/9; }
    .about-visual { width:100%; max-height:400px; aspect-ratio:16/9; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .hero-float-card { left:20px; right:20px; bottom:-16px; min-width:unset; }
}
@media (max-width: 768px) {
    .nav-links {
        display:none; position:absolute; top:100%; left:0; right:0;
        background:white; flex-direction:column;
        padding:20px 28px; box-shadow:var(--shadow-lg); gap:16px;
        border-top:1px solid var(--border-light);
    }
    .nav-links.open { display:flex; }
    .mobile-toggle { display:block; }
    .nav-cta .btn-outline { display:none; }
    .form-row { grid-template-columns:1fr; gap:16px; }
    .hero-stats { gap:32px; }
    .booking-form-card { padding:28px 20px; }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    .utility-bar .contacts span:not(:first-child) { display:none; }
    .stats-bar .container { grid-template-columns:repeat(2,1fr); }
    .stat-item { padding:24px 16px; border-right:none; border-bottom:1px solid var(--border-light); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom:none; }
    .process-steps { grid-template-columns:1fr 1fr; gap:28px; }
    .process-steps::before { display:none; }
    .hero { padding:56px 0 48px; }
    .section { padding:64px 0; }
}
@media (max-width: 420px) {
    .container { padding:0 16px; }
    .hero h1 { font-size:28px; }
    .hero-actions { flex-direction:column; gap:12px; }
    .hero-actions .btn, .hero-actions .btn-explore { width:100%; justify-content:center; }
    .booking-points li { font-size:14px; }
}
@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
    .reveal { opacity:1; transform:none; }
    .testing-banner-inner,
    .ticker-track {
        animation: none !important;
    }
}

/* =============================================================
   BANNER ANIMATIONS
   ============================================================= */
@keyframes slideBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Testing banner ── */
.testing-banner {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #1a1a1a;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10000;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 600;
    border-bottom: 2px solid #e65100;
    height: 32px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.testing-banner-inner {
    display: inline-block;
    animation: slideBanner 90s linear infinite !important;
    will-change: transform;
}
.testing-banner:hover .testing-banner-inner {
    animation-play-state: paused !important;
}

/* ── Ticker ── */
.ticker-wrap {
    background: var(--navy-deep);
    border-bottom: 3px solid var(--green);
    overflow: hidden;
    padding: 6px 0;
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--navy-deep), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--navy-deep), transparent); }
.ticker-label {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 0 16px;
    display: flex;
    align-items: center;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 4px 0 16px rgba(0,0,0,.15);
}
.ticker-track {
    display: flex;
    animation: ticker-scroll 70s linear infinite !important;
    will-change: transform;
    margin-left: 80px;
}
.ticker-track:hover {
    animation-play-state: paused !important;
}
.ticker-item {
    white-space: nowrap;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ticker-item span { color: var(--green); font-weight: 700; }
