:root {
    /* Shankar Jyoti Netralaya — sky-blue palette
       (var names kept as --teal* so the whole sheet rebrands in one place) */
    --teal: #1f9fd4;
    --teal-dark: #1581b1;
    --teal-deeper: #0f6890;
    --teal-light: #8fd4f0;
    --teal-pale: #d7eefb;
    --teal-bg: #eaf7fd;
    --navy: #0c2a3d;
    --navy-mid: #143b52;
    --white: #ffffff;
    --off-white: #f5fbfe;
    --text-dark: #0c2438;
    --text-body: #2d4658;
    --text-muted: #6587a0;
    --border: #cfe8f7;
    --red: #1581b1;
    --green-ok: #1a7a4a;
    --shadow: 0 4px 28px rgba(31, 159, 212, 0.12);
    --shadow-sm: 0 2px 12px rgba(31, 159, 212, 0.10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* ─── STICKY NAV ─── */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 2px 20px rgba(10, 147, 150, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1.1rem;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-nav-call:hover {
    background: var(--teal);
    color: white;
}

.btn-nav-primary {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--teal);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-nav-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3040 100%);
    min-height: 100svh;
    padding: 80px 20px 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 210, 189, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(10, 147, 150, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 147, 150, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 147, 150, 0.15);
    border: 1px solid rgba(10, 147, 150, 0.4);
    color: var(--teal-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--teal-light);
}

.hero h1 .sub-line {
    display: block;
    font-size: 0.62em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    letter-spacing: 0;
}

.hero-desc {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.75;
    font-family: 'Noto Sans Devanagari', sans-serif;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 8px 28px rgba(10, 147, 150, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(10, 147, 150, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: nowrap;
}

.stat {}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
}

/* FORM CARD */
.form-card {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 16px 16px 0 0;
}

.offer-strip {
    background: var(--red);
    color: white;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 22px;
    text-align: center;
}

.offer-strip .offer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.offer-strip .offer-price-big {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 3px;
}

.offer-strip .offer-note-small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 2px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.form-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    text-align: center;
}

.fgrp {
    margin-bottom: 13px;
}

.fgrp label {
    display: block;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fgrp input,
.fgrp select {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
}

.fgrp input:focus,
.fgrp select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.fgrp .input-icon-wrap {
    position: relative;
}

.fgrp .input-icon-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 0.8rem;
    pointer-events: none;
}

.fgrp .input-icon-wrap input,
.fgrp .input-icon-wrap select {
    padding-left: 32px;
}

.form-btn {
    width: 100%;
    background: var(--teal);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.form-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─── SECTION SKELETON ─── */
section {
    padding: 80px 40px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.sec-tag::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.sec-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.sec-heading.white {
    color: var(--white);
}

.sec-line {
    width: 48px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 28px;
}

.sec-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ─── TRUST ─── */
.trust-section {
    background: var(--teal-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.doc-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 100%;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
}

.doc-photo {
    background: linear-gradient(145deg, var(--teal-deeper), var(--teal-dark));
    height: 100%;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
}

.doc-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-avatar i {
    font-size: 1.6rem;
    color: white;
}

.doc-photo-note {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    text-align: center;
    padding: 0 6px;
}

.doc-body {
    padding: 16px;
}

.doc-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.doc-title {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.doc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.doc-tag {
    background: var(--teal-pale);
    color: var(--teal-deeper);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.trust-body {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.trust-tagline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px 22px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
}

.trust-tagline i {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trust-tagline p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.5;
}

/* ─── PROBLEM ─── */
.problem-section {
    background: var(--navy);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.sym-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.sym-card:hover {
    background: rgba(10, 147, 150, 0.1);
    border-color: rgba(10, 147, 150, 0.4);
    transform: translateY(-2px);
}

.sym-icon {
    width: 42px;
    height: 42px;
    background: rgba(10, 147, 150, 0.18);
    border: 1px solid rgba(10, 147, 150, 0.35);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sym-icon i {
    color: var(--teal-light);
    font-size: 1rem;
}

.sym-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
    padding-top: 3px;
}

.punchline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.35);
    border-radius: 10px;
    padding: 22px 24px;
}

.punchline i {
    color: #e88;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.punchline p {
    font-size: 0.95rem;
    color: #f4a89a;
    font-weight: 500;
    line-height: 1.65;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.punchline strong {
    color: #ffbcb0;
}

/* ─── SERVICES ─── */
.services-section {
    background: var(--white);
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.svc-block {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.svc-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.svc-image-wrap {
    position: relative;
}

.svc-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.svc-image-badge {
    position: absolute;
    bottom: 14px;
    left: 18px;
    background: white;
    color: var(--teal-deeper);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    letter-spacing: -0.01em;
}

.svc-body {
    padding: 24px;
}

.svc-body-sub {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--teal);
    margin-bottom: 8px;
}

.svc-body-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Retina conditions list */
.svc-conditions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-condition {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--teal-bg);
    border-radius: 9px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.svc-condition:hover {
    border-color: var(--teal-light);
}

.svc-condition img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.svc-condition-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.svc-condition-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Cataract perks */
.svc-perks-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-perk {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 14px;
    background: var(--teal-bg);
    border-radius: 9px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.svc-perk:hover {
    border-color: var(--teal-light);
}

.svc-perk-check {
    width: 26px;
    height: 26px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-perk-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.svc-perk-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.4;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 6px;
}

.perk {
    background: var(--teal-bg);
    border-radius: 7px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-body);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.perk i {
    color: var(--teal);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ─── TECHNOLOGY ─── */
.tech-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.tech-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(10, 147, 150, 0.2);
    border-radius: 11px;
    padding: 22px 18px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tech-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.tech-card:hover {
    background: rgba(10, 147, 150, 0.08);
    border-color: rgba(10, 147, 150, 0.5);
    transform: translateY(-3px);
}

.tech-icon {
    width: 44px;
    height: 44px;
    background: rgba(10, 147, 150, 0.18);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tech-icon i {
    color: var(--teal-light);
    font-size: 1.1rem;
}

.tech-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.tech-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.tech-closing {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.tech-closing em {
    color: var(--teal-light);
    font-style: normal;
    font-weight: 700;
}

/* ─── WHY ─── */
.why-section {
    background: var(--teal-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.why-card {
    background: white;
    border-radius: 14px;
    padding: 36px 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 147, 150, 0.14);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--teal-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 16px;
    transition: background 0.25s;
}

.why-card:hover .why-card-icon-wrap {
    background: var(--teal-pale);
}

.why-card-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ─── PROCESS ─── */
.process-section {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--teal-pale);
    z-index: 0;
}

.steps::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    width: 0%;
    height: 2px;
    background: var(--teal);
    z-index: 0;
    animation: progress-line 2s 0.5s ease forwards;
}

@keyframes progress-line {
    to {
        width: 75%;
    }
}

.step {
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 52px;
    height: 52px;
    background: white;
    border: 2.5px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 0 0 5px var(--teal-pale);
}

.step-circle i {
    color: var(--teal);
    font-size: 1rem;
}

.step-num-badge {
    position: absolute;
    top: -6px;
    right: calc(50% - 32px);
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
}

.step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ─── OFFER ─── */
.offer-section {
    background: var(--red);
    padding: 60px 40px;
    text-align: center;
}

.offer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.price-box {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 12px;
    padding: 16px 28px;
    margin-bottom: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.price-old {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
}

.price-new {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-lbl {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
}

.offer-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* ─── LOCATION ─── */
.location-section {
    background: var(--off-white);
    text-align: center;
}

.map-placeholder {
    background: linear-gradient(145deg, var(--teal-deeper), var(--teal-dark));
    border-radius: 14px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto;
    max-width: 720px;
    border: 1px solid rgba(10, 147, 150, 0.3);
    flex-direction: column;
    gap: 10px;
}

.map-placeholder i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.map-addr {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    text-align: center;
    padding: 0 24px;
    line-height: 1.65;
}

.map-addr strong {
    color: white;
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.city-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.city-pill i {
    font-size: 0.65rem;
    color: var(--teal);
}

.city-pill.main {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.city-pill.main i {
    color: white;
}

/* ─── FINAL CTA ─── */
.final-cta-section {
    background: linear-gradient(140deg, var(--navy), var(--navy-mid));
    padding: 80px 40px;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.final-cta-section h2 em {
    color: var(--teal-light);
    font-style: normal;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.97rem;
    margin-bottom: 32px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(10, 147, 150, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.btn-cta-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
}

.btn-cta-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
    background: #07111e;
    padding: 28px 40px;
    text-align: center;
    border-top: 1px solid rgba(10, 147, 150, 0.2);
}

footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.76rem;
    line-height: 2;
}

footer a {
    color: var(--teal-light);
    text-decoration: none;
}

footer strong {
    color: var(--teal-light);
}

/* ─── FLOAT WA ─── */
.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}

.float-wa:hover {
    transform: scale(1.1);
}

.float-wa i {
    color: white;
    font-size: 1.5rem;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65);
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-child>* {
    animation: fadeUp 0.65s ease both;
}

.anim-child>*:nth-child(1) {
    animation-delay: 0.05s;
}

.anim-child>*:nth-child(2) {
    animation-delay: 0.18s;
}

.anim-child>*:nth-child(3) {
    animation-delay: 0.3s;
}

.anim-child>*:nth-child(4) {
    animation-delay: 0.42s;
}

.anim-child>*:nth-child(5) {
    animation-delay: 0.54s;
}

.form-card {
    animation: fadeUp 0.7s 0.25s ease both;
}

/* ─── RESPONSIVE ─── */

/* Tablet: 768px and up — restore desktop hero + vertical doc card */
@media (min-width: 768px) {
    .hero {
        padding: 110px 40px 80px;
        align-items: center;
    }

    .hero-inner {
        grid-template-columns: 1fr 420px;
        gap: 64px;
    }

    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-ctas {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        justify-content: flex-start;
    }

    .hero-stats {
        gap: 32px;
        margin-top: 40px;
    }

    .stat-num {
        font-size: 1.9rem;
    }

    .form-card {
        padding: 32px 28px;
        max-width: 420px;
    }

    .trust-grid {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }

    .doc-card {
        display: block;
        max-width: 300px;
    }

    .doc-photo {
        height: 280px;
        min-height: unset;
        gap: 12px;
    }

    .doc-avatar {
        width: 96px;
        height: 96px;
    }

    .doc-avatar i {
        font-size: 2.4rem;
    }

    .doc-photo-note {
        font-size: 0.72rem;
    }

    .doc-body {
        padding: 22px;
    }

    .doc-name {
        font-size: 1.1rem;
    }

    .doc-title {
        font-size: 0.78rem;
    }
}

/* Large desktop */
@media (min-width: 960px) {
    .trust-grid {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }

    .doc-card {
        max-width: 320px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .svc-grid { grid-template-columns: 1fr; }
}

/* Mobile-only overrides */
@media (max-width: 767px) {
    .hero{
        margin-top: 30px;
    }

    section {
        padding: 56px 20px;
    }

    .sticky-bar {
        padding: 10px 18px;
    }

    .btn-nav-call {
        display: none;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-card img{
        height: 180px;
    }

    .tech-card {
        padding: 11px 9px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .steps::before,
    .steps::after {
        display: none;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── HERO LAYOUT ── */
.hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3040 100%);
    min-height: 100vh;
    padding: 110px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── BOOKING CARD ── */
.booking-card-wrap {
    scroll-margin-top: 80px;
}

.booking-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.booking-card-header {
    background: linear-gradient(135deg, var(--teal-deeper), var(--teal-dark));
    padding: 22px 24px;
}

.booking-offer-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-offer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}

.booking-offer-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.booking-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 11px 20px;
    background: #f7fafa;
    border-bottom: 1px solid var(--border);
}

.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.booking-trust-item i {
    color: var(--teal);
    font-size: 0.75rem;
}

.booking-trust-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

.booking-widget-wrap {
    padding: 0;
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 100px 24px 60px;
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 6vw, 2.8rem);
    }

    .booking-card-wrap {
        width: 100%;
    }

    .booking-card {
        /* On mobile let the widget determine height naturally */
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

    .booking-trust-strip {
        padding: 10px 14px;
        gap: 4px;
    }

    .booking-trust-item {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 48px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .booking-offer-title {
        font-size: 1rem;
    }

    .booking-trust-strip {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .booking-trust-divider {
        display: none;
    }
}

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    width: 100%;
    max-width: 400px;
}

.hero-visual-img-wrap {
    height: 380px;
    overflow: hidden;
}

.hero-visual-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-visual-info {
    padding: 18px 20px;
    background: white;
}

.hero-visual-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.hero-visual-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-visual-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-visual-tags span {
    background: var(--teal-pale);
    color: var(--teal-deeper);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

/* Floating badges */
.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    min-width: 140px;
}

.hero-float-badge i {
    font-size: 1.1rem;
    color: var(--teal);
    flex-shrink: 0;
}

.hero-float-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-float-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-float-badge--patients {
    top: 24px;
    left: -28px;
}

.hero-float-badge--rating {
    bottom: 100px;
    left: -36px;
}

.hero-float-badge--exp {
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
}

/* ── BOOKING SECTION ── */
.booking-section {
    background: var(--teal-bg);
    padding: 80px 40px;
    scroll-margin-top: 80px;
}

.booking-section-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

.booking-section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.booking-section-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.bk-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bk-perk-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-perk-icon i {
    color: var(--teal-dark);
    font-size: 0.85rem;
}

.bk-perk-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.bk-perk-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.4;
}

.booking-section-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.booking-section-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.booking-section-contact a:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.booking-section-contact a i.fa-whatsapp {
    color: #25D366;
}

.booking-section-widget {
    position: sticky;
    top: 96px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .booking-section-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .booking-section-widget {
        position: static;
    }

    .hero-visual-card {
        max-width: 100%;
    }

    .hero-visual-img-wrap {
        height: 300px;
    }

    .hero-float-badge--patients { left: -10px; top: 16px; }
    .hero-float-badge--rating   { left: -10px; bottom: 80px; }
    .hero-float-badge--exp      { right: -10px; }
}

@media (max-width: 600px) {
    .booking-section {
        padding: 56px 20px;
    }

    .hero-float-badge {
        display: none;
    }

    .hero-visual-img-wrap {
        height: 260px;
    }
}

.trust-section {
    background: var(--teal-bg);
    padding: 80px 40px;
}

.trust-top {
    max-width: 720px;
    margin-bottom: 36px;
}

.trust-body {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.trust-credentials {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.trust-cred-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    transition: background 0.2s;
}

.trust-cred-card:hover {
    background: var(--teal-bg);
}

.trust-cred-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.trust-cred-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-cred-icon i {
    color: var(--teal-dark);
    font-size: 0.95rem;
}

.trust-cred-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
    line-height: 1.3;
}

.trust-cred-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-tagline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border-radius: 10px;
    padding: 18px 22px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
}

.trust-tagline i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-tagline p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 860px) {
    .trust-credentials {
        flex-direction: column;
    }

    .trust-cred-divider {
        width: auto;
        height: 1px;
    }

    .trust-top {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 56px 20px;
    }
}

.testimonials-section {
    background: var(--off-white);
    padding: 80px 40px;
}

.testimonial-carousel {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.testimonial-slide img {
    width: 100%;
    aspect-ratio: 1372 / 1316;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10,147,150,0.10);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: scale(1.08);
}

.testimonial-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}

.t-dot.active {
    background: var(--teal);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 860px) {
    .testimonials-section { padding: 60px 24px; }
}

@media (max-width: 540px) {
    .testimonials-section { padding: 56px 16px; }
    .testimonial-btn { width: 36px; height: 36px; font-size: 0.75rem; }
}

/* ── PROMO VIDEO ── */
.promo-video-section {
    background: var(--white);
    padding: 80px 40px;
}

.promo-video-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.promo-video-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.promo-video-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.promo-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.promo-point-icon i {
    color: var(--teal);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.promo-point-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Video frame — vertical 9:16 ratio */
.promo-video-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.promo-video-frame {
    width: 100%;
    /* 9:16 aspect ratio for vertical/Shorts video */
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(10,147,150,0.18);
    position: relative;
    background: var(--navy);
}

.promo-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.promo-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ff0000;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

.promo-video-badge i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 860px) {
    .promo-video-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-video-wrap {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-video-section {
        padding: 56px 20px;
    }

    .promo-video-wrap {
        max-width: 280px;
    }
}

/* ════════════════════════════════════════════════════════
   SHANKAR JYOTI NETRALAYA — REBRAND COMPONENTS
   ════════════════════════════════════════════════════════ */

/* ── TOP OFFER BAR ── */
.top-offer-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #eaf7fd;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    padding: 9px 16px;
    letter-spacing: 0.01em;
}

.top-offer-bar strong {
    color: var(--teal-light);
    font-weight: 700;
}

.top-offer-bar .tob-price {
    color: var(--teal-light);
    font-weight: 800;
}

.top-offer-bar s {
    opacity: 0.6;
    font-size: 0.92em;
}

.sticky-bar {
    top: 0;
}

/* ── NAV LOGO (text based) ── */
.logo-sjn {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-sjn-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .logo-sjn-img {
        height: 38px;
    }
}

.logo-sjn-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--teal), var(--teal-deeper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(31, 159, 212, 0.35);
}

.logo-sjn-mark i {
    color: white;
    font-size: 1.15rem;
}

.logo-sjn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-sjn-text .l-main {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--teal-deeper);
    letter-spacing: -0.01em;
}

.logo-sjn-text .l-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 2px;
}

/* ── HERO TWEAKS (light sky-blue hero) ── */
.hero {
    background: linear-gradient(160deg, #eaf7fd 0%, #d7eefb 55%, #cdeaf9 100%);
    align-items: center;
    padding-top: 112px;
    min-height: auto;
}

@media (max-width: 860px) {
    .hero {
        padding-top: 100px;
        align-items: flex-start;
    }

    /* image first, text below on mobile/tablet single-column hero */
    .hero-visual {
        order: -1;
    }

    .hero-content {
        order: 1;
    }
}

/* soft dotted pattern + faint diagonal sheen (replaces the square grid) */
.hero-grid-bg {
    background-image:
        radial-gradient(rgba(31, 159, 212, 0.16) 1.6px, transparent 1.7px),
        repeating-linear-gradient(135deg, rgba(143, 212, 240, 0.06) 0 2px, transparent 2px 26px);
    background-size: 24px 24px, auto;
    background-position: 0 0, 0 0;
    -webkit-mask-image: radial-gradient(120% 90% at 72% 0%, #000 35%, transparent 80%);
    mask-image: radial-gradient(120% 90% at 72% 0%, #000 35%, transparent 80%);
}

.hero::before {
    top: -160px;
    right: -120px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(31, 159, 212, 0.22) 0%, transparent 62%);
}

.hero::after {
    bottom: -140px;
    left: -140px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(143, 212, 240, 0.32) 0%, transparent 62%);
}

.hero h1 {
    color: var(--navy);
}

.hero h1 .accent {
    color: var(--teal-dark);
}

.hero h1 .sub-line {
    color: var(--text-body);
}

.hero-eyebrow {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--teal-deeper);
    box-shadow: var(--shadow-sm);
}

/* secondary CTA readable on the light hero */
.hero .btn-secondary {
    background: var(--white);
    border: 1.5px solid var(--teal);
    color: var(--teal-dark);
    box-shadow: var(--shadow-sm);
}

.hero .btn-secondary:hover {
    background: var(--teal-pale);
}

.hero-desc {
    color: var(--text-body);
}

.stat-num {
    color: var(--teal-dark);
}

.stat-lbl {
    color: var(--text-muted);
}

.stat-divider {
    background: var(--border);
}

/* symptom chips row */
.hero-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-symptom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.hero-symptom i {
    color: var(--teal);
    font-size: 0.85rem;
}

/* price highlight row */
.hero-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hero-price-now {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.hero-price-off {
    background: var(--teal-pale);
    color: var(--teal-deeper);
    border: 1px solid var(--teal-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.hero-callback {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ── HERO VIDEO CARD (replaces doctor photo) ── */
.hero-video-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3.4;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(150deg, var(--teal-deeper), var(--navy));
    box-shadow: 0 24px 70px rgba(12, 42, 61, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(143, 212, 240, 0.25), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(31, 159, 212, 0.30), transparent 55%);
}

.hero-video-logo {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.hero-video-logo i {
    color: var(--teal-light);
}

.hero-video-play {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.hero-video-card:hover .hero-video-play {
    transform: scale(1.08);
}

.hero-video-play i {
    color: var(--teal-dark);
    font-size: 1.6rem;
    margin-left: 4px;
}

.hero-video-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    color: white;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ── NOTE TO PATIENTS ── */
.note-section {
    background: var(--white);
    text-align: center;
}

.note-section .sec-tag {
    display: inline-flex;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 36px 0 40px;
    text-align: left;
}

.note-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.note-card:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.note-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 34px;
}

.note-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.note-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* shared centered section CTA button */
.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--teal);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(31, 159, 212, 0.35);
    transition: background 0.2s, transform 0.2s;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.section-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.section-cta i {
    font-size: 0.9rem;
}

/* ── DOCTORS ── */
.doctors-section {
    background: var(--teal-bg);
    text-align: center;
}

.doctors-section .sec-tag {
    display: inline-flex;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 38px 0 40px;
}

.doc-pro-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.doc-pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(31, 159, 212, 0.16);
}

.doc-pro-photo {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin-bottom: 18px;
    background: linear-gradient(150deg, var(--teal-pale), var(--teal-light));
}

.doc-pro-photo-ph {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: 12px;
    margin-bottom: 18px;
    background: linear-gradient(150deg, #dceefa, #c3e3f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-pro-photo-ph i {
    font-size: 3rem;
    color: rgba(15, 104, 144, 0.35);
}

.doc-pro-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
}

.doc-pro-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.doc-pro-creds {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── BOTTOM PROMO BANNER (offer-section override) ── */
.offer-section {
    background: linear-gradient(100deg, var(--navy) 0%, var(--navy-mid) 60%, var(--teal-deeper) 140%);
    text-align: left;
    padding: 34px 40px;
}

.offer-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.offer-banner-text h2 {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    margin-bottom: 6px;
    text-align: left;
}

.offer-banner-text h2 .hl {
    color: var(--teal-light);
}

.offer-banner-sub {
    color: var(--teal-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-section .btn-offer {
    background: var(--teal);
    color: white;
    margin: 0;
    flex-shrink: 0;
}

.offer-section .btn-offer:hover {
    background: var(--teal-dark);
    color: white;
}

/* ── RESPONSIVE (rebrand bits) ── */
@media (max-width: 860px) {
    .note-grid {
        grid-template-columns: 1fr;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-section .container {
        flex-direction: column;
        text-align: center;
    }

    .offer-banner-text h2,
    .offer-banner-sub {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-photo-card {
        max-width: 100%;
    }
}

/* ── HERO COMPACT OFFER ROW ── */
.hero-offer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    max-width: 100%;
}

.hero-offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-offer-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    padding-left: 18px;
    border-left: 1px solid var(--border);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.hero-offer-note i {
    color: var(--teal);
}

@media (max-width: 480px) {
    .hero-offer-note {
        padding-left: 0;
        border-left: none;
    }
}

/* ── HERO PHOTO CARD (doctors image) ── */
.hero-photo-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(12, 42, 61, 0.30);
    background: var(--teal-pale);
}

.hero-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2.2;
    object-fit: cover;
    object-position: center top;
}

.hero-photo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal-deeper);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 13px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero-photo-badge i {
    color: #f5b400;
}

.hero-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 20px 16px;
    background: linear-gradient(to top, rgba(8, 30, 44, 0.92) 0%, rgba(8, 30, 44, 0.55) 55%, transparent 100%);
}

.hpc-names {
    font-size: 1.02rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.hpc-role {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 2px;
}

/* ── STICKY BOTTOM OFFER BAR ── */
body {
    padding-bottom: 78px;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: linear-gradient(100deg, var(--navy) 0%, var(--navy-mid) 55%, var(--teal-deeper) 150%);
    border-top: 2px solid var(--teal);
    box-shadow: 0 -6px 28px rgba(12, 42, 61, 0.28);
}

.bottom-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bottom-bar-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.bottom-bar-title .hl {
    color: var(--teal-light);
}

.bottom-bar-timer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.bottom-bar-timer i {
    color: var(--teal-light);
}

.bottom-bar-count {
    display: inline-block;
    min-width: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(143, 212, 240, 0.35);
    color: var(--teal-light);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    padding: 2px 9px;
    border-radius: 6px;
    text-align: center;
}

.bottom-bar-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--teal);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(31, 159, 212, 0.45);
    transition: background 0.2s, transform 0.2s;
}

.bottom-bar-btn:hover {
    background: #2fb0e6;
    transform: translateY(-2px);
}

.bbb-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding-left: 10px;
    margin-left: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.bbb-price s {
    opacity: 0.65;
    font-weight: 500;
    font-size: 0.85em;
}

.bbb-price strong {
    font-weight: 800;
    font-size: 1.05em;
    letter-spacing: 0.01em;
}

/* lift the floating WhatsApp button above the bottom bar */
.float-wa {
    bottom: 92px;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 84px;
    }

    /* keep a compact single row: text on the left, button on the right */
    .bottom-bar-inner {
        padding: 8px 14px;
        gap: 12px;
    }

    .bottom-bar-text {
        flex: 1;
        min-width: 0;
    }

    .bottom-bar-title {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .bottom-bar-timer {
        margin-top: 3px;
        font-size: 0.68rem;
        gap: 5px;
    }

    .bottom-bar-count {
        min-width: 44px;
        padding: 1px 6px;
    }

    .bottom-bar-btn {
        padding: 10px 15px;
        font-size: 0.78rem;
        gap: 7px;
    }

    /* drop the arrow on mobile to make room for the price */
    .bottom-bar-btn > i {
        display: none;
    }

    .bbb-price {
        padding-left: 8px;
        gap: 5px;
    }

    .float-wa {
        bottom: 98px;
        width: 48px;
        height: 48px;
    }

    .float-wa i {
        font-size: 1.3rem;
    }
}

@media (max-width: 380px) {
    .bottom-bar-title {
        font-size: 0.66rem;
    }

    .bottom-bar-btn {
        padding: 9px 12px;
        font-size: 0.72rem;
        gap: 6px;
    }
}

/* ════════════════════════════════════════════════════════
   FLOATING PILL NAVBAR
   ════════════════════════════════════════════════════════ */
.sticky-bar {
    top: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1080px;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(31, 159, 212, 0.18);
    border-bottom: 1px solid rgba(31, 159, 212, 0.18);
    border-radius: 100px;
    box-shadow: 0 12px 34px rgba(12, 42, 61, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    padding: 8px 8px 8px 20px;
    gap: 16px;
}

.sticky-bar .logo-sjn {
    flex-shrink: 0;
}

.sticky-bar .logo-sjn-img {
    height: 34px;
}

/* centre nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 100px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--teal-deeper);
    background: var(--teal-pale);
}

/* CTAs for the light pill */
.nav-ctas {
    flex-shrink: 0;
}

.btn-nav-call {
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal-dark);
    border-radius: 100px;
    padding: 9px 16px;
}

.btn-nav-call:hover {
    background: var(--teal);
    color: #ffffff;
}

.btn-nav-primary {
    background: var(--teal);
    border-radius: 100px;
    padding: 10px 20px;
    box-shadow: 0 4px 16px rgba(31, 159, 212, 0.45);
}

.btn-nav-primary:hover {
    background: #2fb0e6;
    transform: translateY(-1px);
}

/* hide the centre links on smaller screens (logo + book button stay) */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .sticky-bar {
        width: calc(100% - 20px);
        top: 10px;
        padding: 6px 6px 6px 12px;
        gap: 8px;
    }

    .sticky-bar .logo-sjn {
        padding: 5px 10px;
    }

    .sticky-bar .logo-sjn-img {
        height: 26px;
    }

    .btn-nav-primary {
        padding: 9px 14px;
        font-size: 0.78rem;
    }
}