/* ============================================================
   DR DONY MATHEW — CAPE TOWN EYE CENTRE
   Premium Bespoke Design System
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    --navy: #01357f;
    --navy-deep: #0a397a;
    --blue-mid: #417cb6;
    --blue-bright: #1c85c6;
    --teal: #85d3d5;
    --teal-light: #b8e8e9;
    --teal-ghost: rgba(133, 211, 213, 0.08);
    --white: #ffffff;
    --off-white: #f7f9fb;
    --warm-gray: #f0f2f5;
    --gray-100: #e8ebf0;
    --gray-200: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-600: #667085;
    --gray-800: #344054;
    --dark: #0c1b2e;
    --gold: #f4b942;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 1px 3px rgba(1, 53, 127, 0.06);
    --shadow-md: 0 4px 24px rgba(1, 53, 127, 0.08);
    --shadow-lg: 0 12px 48px rgba(1, 53, 127, 0.12);
    --shadow-xl: 0 24px 64px rgba(1, 53, 127, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(1, 53, 127, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(1, 53, 127, 0.4);
}
.btn-primary::before {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--navy) 100%);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-ghost {
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--navy);
    border: 1.5px solid var(--navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 53, 127, 0.25);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    background: #ffffff;
    box-shadow: 0 1px 20px rgba(1, 53, 127, 0.08);
    transition: all 0.4s var(--ease-out-expo);
}
.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 144px;
    transition: height 0.4s var(--ease-out-expo);
}
.site-header.scrolled .nav-container { height: 104px; }

.nav-logo img {
    height: 90px;
    width: auto;
    transition: height 0.4s var(--ease-out-expo);
}
.site-header.scrolled .nav-logo img { height: 64px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--blue-bright);
    background: var(--teal-ghost);
}

.nav-cta {
    padding: 10px 26px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 40px;
    margin-left: 16px;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(1, 53, 127, 0.25);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s var(--ease-out-expo);
    border: 1px solid var(--gray-100);
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-left: 1px solid var(--gray-100);
}
.dropdown::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 450;
    color: var(--gray-800) !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}
.dropdown li a:hover {
    background: var(--teal-ghost);
    color: var(--navy) !important;
    padding-left: 22px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    display: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    width: 100%;
}
.hero-text-block {
    max-width: 620px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
}
.hero-accent-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue-bright));
    border-radius: 3px;
    margin-bottom: 28px;
}
.hero h1 {
    color: var(--navy);
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.05;
}
.hero-highlight {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.hero-blurb {
    color: var(--gray-800);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: 120px 40px 140px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--teal-ghost) 0%, transparent 70%);
    pointer-events: none;
}
.about-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.about-image-col {
    position: relative;
    padding: 20px 20px 0 0;
}
.about-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--navy);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: 100% center;
    transition: transform 0.8s var(--ease-out-expo);
}
.about-image-frame:hover .about-img {
    transform: scale(1.03);
}
.about-heading {
    margin-bottom: 24px;
}
.about-qualifications {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--blue-bright);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-text-col h2 {
    margin-bottom: 20px;
}
.credential-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 24px;
}
.credential-bubble {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #7aadf5;
    border-radius: 20px;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.credential-bubble em {
    font-style: italic;
    font-weight: 400;
    font-size: 0.88rem;
}
.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 450;
}
.about-body {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 16px;
}
/* ============================================================
   SERVICES SECTION — Clean Grid Cards (Dr Thomas style)
   ============================================================ */
.services {
    padding: 100px 40px 120px;
    background-image:
        linear-gradient(135deg, rgba(1, 53, 127, 0.92) 0%, rgba(10, 57, 122, 0.88) 50%, rgba(28, 133, 198, 0.85) 100%),
        url('images/2148310019.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.services-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.services-header h2 { color: var(--white); }
.service-card { background: var(--white); }
.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.services-header .section-label { justify-content: center; }
.services-header h2 { margin-bottom: 18px; }
.services-subtext {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue-bright));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--teal-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--navy);
    transition: all 0.4s ease;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--navy), var(--blue-bright));
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-600);
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-bright);
    transition: all 0.3s ease;
    margin-top: auto;
}
.service-card:hover .service-card-link {
    color: var(--navy);
    gap: 10px;
}
.service-card-link svg {
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-link svg {
    transform: translateX(3px);
}

/* ============================================================
   CONDITIONS SECTION
   ============================================================ */
.conditions-section {
    padding: 80px 40px;
    border: 1px solid #eee;
    background: var(--white);
}
.conditions-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 64px 60px;
    box-shadow: var(--shadow-sm);
}
.conditions-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.conditions-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 600px;
}
.conditions-subtext {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 620px;
    margin-bottom: 48px;
}
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.condition-card {
    grid-column: span 2;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.conditions-grid .condition-card:nth-last-child(2) {
    grid-column: 2 / 4;
}
.conditions-grid .condition-card:nth-last-child(1) {
    grid-column: 4 / 6;
}
.condition-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--teal-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 4px;
    flex-shrink: 0;
}
.condition-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}
.condition-card-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-600);
    flex: 1;
}
.condition-card-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    transition: opacity 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}
.condition-card-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 100px 40px;
    background: var(--off-white);
}
.testimonials-container {
    max-width: 1180px;
    margin: 0 auto;
}
.testimonials-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.testimonials-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.2;
}
.testimonials-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 52px;
}
.testimonials-summary-stars {
    display: flex;
    gap: 2px;
}
.testimonials-summary-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.25s ease;
}
.testimonials-summary-text:hover {
    color: var(--navy);
    text-decoration: underline;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 26px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}
.testimonial-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-stars {
    display: flex;
    gap: 2px;
}
.testimonial-time {
    font-size: 0.82rem;
    color: var(--gray-400);
}
.testimonial-quote-icon {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--gray-200);
    font-family: Georgia, serif;
    margin-top: -4px;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-800);
    flex: 1;
}
.testimonial-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 20px 0 16px;
}
.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
    padding: 100px 40px;
    background: var(--off-white);
}
.location-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.location-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.location-address {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}
.location-access-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--teal-light);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 20px 22px;
}
.location-access-note svg {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}
.location-access-note p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.location-access-note strong {
    color: var(--navy);
}
.location-map {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.location-map iframe {
    display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 100px 40px;
    background: var(--white);
}
.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 40%, var(--blue-bright) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    overflow: hidden;
    text-align: center;
}
.cta-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(133, 211, 213, 0.1);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.cta-section .btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cta-section .btn-primary::before {
    background: var(--teal-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
}
.footer-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 40px 60px;
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1.1fr;
    gap: 64px;
}

/* Brand column */
.footer-practice-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}
.footer-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.1;
}
.footer-specialty {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
}
.footer-qualifications {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 340px;
    margin-bottom: 32px;
}
.footer-contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.footer-contact-box {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.05);
}
.footer-contact-box-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
}
.footer-contact-box-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.25s ease;
}
.footer-contact-box-value:hover { color: var(--teal); }

/* Quick links column */
.footer-col-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s ease;
}
.footer-links ul a:hover { color: var(--teal); }

/* Location column */
.footer-location-city {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-location-address {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.footer-map-card {
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    transition: border-color 0.25s ease;
}
.footer-map-card:hover { border-color: var(--teal); }
.footer-map-preview {
    width: 100%;
    height: 170px;
    line-height: 0;
}
.footer-map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.footer-map-link {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s ease;
}
.footer-credit:hover { color: var(--teal); }
.footer-credit img {
    height: auto;
    width: 30px;
    display: block;
    margin: auto 0;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-col { max-width: 500px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-wrapper { padding: 48px 40px; }
    .conditions-grid { grid-template-columns: repeat(4, 1fr); }
    .conditions-grid .condition-card:nth-last-child(2),
    .conditions-grid .condition-card:nth-last-child(1) { grid-column: span 2; }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .site-header { padding: 0 20px; }
    .mobile-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 144px;
        left: 0;
        right: 0;
        max-width: 100vw;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out-expo),
                    opacity 0.25s ease,
                    padding 0.4s var(--ease-out-expo),
                    visibility 0s linear 0.4s;
        box-shadow: 0 16px 40px rgba(1, 53, 127, 0.14);
        border-top: 1px solid var(--gray-100);
    }
    .site-header.scrolled .main-nav { top: 104px; }
    .main-nav.open {
        max-height: calc(100vh - 144px);
        opacity: 1;
        visibility: visible;
        padding: 8px 20px 18px;
        overflow-y: auto;
        transition: max-height 0.45s var(--ease-out-expo),
                    opacity 0.25s ease 0.05s,
                    padding 0.45s var(--ease-out-expo),
                    visibility 0s linear 0s;
    }
    .site-header.scrolled .main-nav.open { max-height: calc(100vh - 104px); }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(12, 27, 46, 0.4);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0s linear 0s;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }
    .nav-list > li {
        width: 100%;
    }
    .nav-list > li > a {
        color: var(--gray-800) !important;
        padding: 11px 4px;
        font-size: 0.92rem;
        text-align: left;
        justify-content: flex-start;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        width: 100%;
    }
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 14px;
        margin: 0;
        min-width: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .has-dropdown.open .dropdown,
    .has-dropdown:hover .dropdown {
        max-height: 600px;
        transform: none;
    }
    .dropdown::before,
    .dropdown::after { display: none; }
    .dropdown li a {
        padding: 8px 4px !important;
        font-size: 0.85rem;
        text-align: left;
        border-bottom: 1px solid var(--gray-100);
    }
    .dropdown li a:hover { padding-left: 4px !important; }
    .dropdown li:last-child a { border-bottom: none; }
    .nav-cta {
        margin: 14px 0 0;
        padding: 11px 22px;
        text-align: center;
        width: 100%;
        justify-content: center;
        display: flex;
        background: linear-gradient(135deg, var(--navy), var(--blue-bright));
        color: var(--white) !important;
    }

    /* Hero mobile */
    .hero-content {
        padding: 150px 24px 100px;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-blurb { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* About mobile */
    .about { padding: 80px 24px 100px; }

    /* Services mobile */
    .services { padding: 60px 24px 80px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px 24px; }

    /* Conditions mobile */
    .conditions-section { padding: 40px 20px; }
    .conditions-wrapper { padding: 40px 24px; border-radius: var(--radius-lg); }
    .conditions-heading { font-size: 1.8rem; }
    .conditions-grid { grid-template-columns: 1fr; }
    .condition-card,
    .conditions-grid .condition-card:nth-last-child(2),
    .conditions-grid .condition-card:nth-last-child(1) { grid-column: span 1; }

    /* Testimonials mobile */
    .testimonials { padding: 60px 24px; }
    .testimonials-heading { font-size: 1.7rem; }

    /* Location mobile */
    .location-section { padding: 60px 24px; }
    .location-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .location-text h2 { font-size: 1.7rem; }
    .location-map { height: 300px; }

    /* CTA mobile */
    .cta-section { padding: 60px 24px; }
    .cta-wrapper { padding: 48px 28px; }
    .cta-content h2 { font-size: 1.6rem; }

    /* Footer mobile */
    .footer-main {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
        gap: 36px;
    }
    .footer-bottom { padding: 20px 24px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.4rem; }
}

/* ============================================================
   INNER PAGES — SHARED PAGE HERO
   (appended — does not affect the Home Page)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 192px 40px 78px;
    background-image:
        linear-gradient(135deg, rgba(1, 53, 127, 0.9) 0%, rgba(10, 57, 122, 0.86) 50%, rgba(28, 133, 198, 0.8) 100%),
        var(--hero-img, url('images/services-bg.jpg'));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -70px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(133, 211, 213, 0.12);
    pointer-events: none;
}
.page-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-hero-eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 860px;
}
.page-hero-intro {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 640px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    font-size: 0.82rem;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.25s ease;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.35); }
.breadcrumb .current { color: var(--white); font-weight: 500; }

/* ============================================================
   INNER PAGES — RICH TEXT CONTENT
   ============================================================ */
.rich-text > *:first-child { margin-top: 0; }
.rich-text h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.7rem);
    margin: 42px 0 14px;
    color: var(--navy);
}
.rich-text h3 {
    font-size: 1.15rem;
    margin: 28px 0 10px;
    color: var(--navy);
}
.rich-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 16px;
}
.rich-text p.lead {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--gray-800);
    font-weight: 450;
}
.rich-text a:not(.btn) {
    color: var(--blue-bright);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.25s ease;
}
.rich-text a:not(.btn):hover { color: var(--navy); }
.rich-text strong { color: var(--navy); font-weight: 600; }
.content-list {
    margin: 6px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.content-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}
.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--teal-ghost);
    border: 1.5px solid var(--teal);
}
.content-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-bright);
}
.content-figure {
    margin: 34px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.content-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.next-step-cta {
    margin-top: 20px;
    margin-bottom: 4px;
}

/* ============================================================
   SERVICE PAGE — SIDEBAR LAYOUT
   ============================================================ */
.page-body {
    padding: 86px 40px 104px;
    background: var(--white);
}
.service-layout {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 364px;
    gap: 58px;
    align-items: start;
}
.service-main { min-width: 0; }
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar cards */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.sidebar-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}
.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.sidebar-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 18px;
}

/* Booking form card — navy, sits at the top of the sidebar */
.sidebar-form-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 55%, var(--blue-bright) 135%);
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.sidebar-form-card::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(133, 211, 213, 0.12);
    pointer-events: none;
}
.sidebar-form-card .sidebar-card-label { color: var(--teal); }
.sidebar-form-card h3 { color: var(--white); }
.sidebar-form-card .sidebar-card-text { color: rgba(255, 255, 255, 0.7); }
.sidebar-form-card > * { position: relative; z-index: 1; }

/* Appointment / contact form */
.appt-form .form-field { margin-bottom: 14px; }
.appt-form label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 6px;
}
.appt-form input,
.appt-form select,
.appt-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s ease, background 0.25s ease;
}
.appt-form input::placeholder,
.appt-form textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.14);
}
.appt-form select { appearance: none; cursor: pointer; }
.appt-form select option { color: var(--gray-800); }
.appt-form textarea { resize: vertical; min-height: 90px; }
.btn-block { width: 100%; justify-content: center; }
.btn-light {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}
.form-note {
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    text-align: center;
}
.form-success {
    display: none;
    text-align: center;
    padding: 14px 4px;
}
.form-success svg { margin: 0 auto 12px; color: var(--teal); }
.form-success p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}
.form-success strong { color: var(--white); }

/* Sidebar — practice details */
.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-contact-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}
.sidebar-contact-item .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--teal-ghost);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-contact-item .meta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2px;
}
.sidebar-contact-item .meta-value {
    font-size: 0.92rem;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.6;
}
.sidebar-contact-item a.meta-value:hover { color: var(--blue-bright); }

/* Sidebar — related services list */
.sidebar-services-list { display: flex; flex-direction: column; gap: 3px; }
.sidebar-services-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.89rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: all 0.25s ease;
}
.sidebar-services-list li a svg { color: var(--gray-400); transition: transform 0.25s ease; }
.sidebar-services-list li a:hover {
    background: var(--teal-ghost);
    color: var(--navy);
}
.sidebar-services-list li a:hover svg { transform: translateX(3px); color: var(--blue-bright); }
.sidebar-services-list li a.current {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
    color: var(--white);
}
.sidebar-services-list li a.current svg { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   INNER PAGES — GENERIC CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 92px 40px; background: var(--white); }
.content-section.alt { background: var(--off-white); }
.content-wrap { max-width: 1320px; margin: 0 auto; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { font-size: 1rem; line-height: 1.8; color: var(--gray-600); }

/* Legal pages (Privacy Policy, Terms & Conditions) */
.legal-content { font-size: 0.97rem; line-height: 1.85; color: var(--gray-600); }
.legal-effective {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}
.legal-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--teal); text-decoration: underline; }

/* About page — detail block */
.about-detail {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.qual-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 6px 0 26px;
}
.qual-card .meta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 5px;
}
.qual-card .meta-value {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.6;
}

/* Info cards (Fees / value props) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
}
.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--teal-ghost);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.info-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.info-card p {
    font-size: 0.93rem;
    line-height: 1.78;
    color: var(--gray-600);
    margin-bottom: 12px;
}
.info-card p:last-child { margin-bottom: 0; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.open {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    line-height: 1.5;
}
.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--teal-ghost);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease-out-expo), background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--navy), var(--blue-bright));
    color: var(--white);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}
.faq-item.open .faq-answer { max-height: 420px; }
.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Contact page */
.contact-layout {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: start;
}
.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-100);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item .ico {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--teal-ghost);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-item .meta-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 3px;
}
.contact-detail-item .meta-value {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.6;
}
.contact-detail-item a.meta-value:hover { color: var(--blue-bright); }

/* ============================================================
   INNER PAGES — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .service-layout { grid-template-columns: 1fr; gap: 44px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-detail { grid-template-columns: 1fr; gap: 52px; }
    .about-detail .about-image-col { max-width: 460px; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 160px 24px 56px; }
    .page-body { padding: 56px 24px 72px; }
    .content-section { padding: 60px 24px; }
    .info-grid { grid-template-columns: 1fr; }
    .rich-text h2 { margin-top: 34px; }
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer-inner { padding: 0 20px 20px; }
}

/* ============================================================
   SERVICE PAGE — HERO ICON BADGE & SECTION ACCENTS
   ============================================================ */
.page-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: var(--radius-md);
    color: var(--teal-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.rich-text h2 {
    position: relative;
    margin-top: 46px;
    padding-top: 22px;
}
.rich-text h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue-bright));
}
@media (max-width: 768px) {
    .page-hero-badge { width: 56px; height: 56px; }
    .service-hero-logo { height: 56px; width: auto; }
    .service-hero-title { gap: 14px; }
    .rich-text h2 { margin-top: 36px; }
}

/* ============================================================
   SERVICE PAGE — SPLIT HERO
   ============================================================ */
.service-hero {
    position: relative;
    padding: 170px 40px 78px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 45%, var(--blue-bright) 125%);
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    bottom: -130px;
    left: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(133, 211, 213, 0.1);
    pointer-events: none;
}
.service-hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(133, 211, 213, 0.07);
    pointer-events: none;
}
.service-hero-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.service-hero-logo {
    height: 66px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.service-hero-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}
.service-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}
.service-hero h1 {
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0;
}
.service-hero .page-hero-intro { margin-bottom: 26px; }
.service-hero-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.service-hero-figure img {
    width: 100%;
    aspect-ratio: 1402 / 1122;
    object-fit: cover;
    display: block;
}

/* ============================================================
   SERVICE PAGE — CONTENT COMPONENTS
   ============================================================ */
.lead-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    margin-bottom: 8px;
}
.lead-card p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.lead-card p:last-child { margin-bottom: 0; }

/* Symptom icon cards */
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 12px 0 6px;
}
.symptom-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.symptom-card:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.symptom-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--teal-ghost);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.symptom-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-800);
    margin: 0;
}

/* Numbered step strip */
.step-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 14px 0 6px;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
}
.step-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal), var(--blue-bright));
}
.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(1, 53, 127, 0.25);
}
.step-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Related-service callout */
.callout {
    display: flex;
    gap: 16px;
    align-items: center;
    background: linear-gradient(135deg, rgba(133, 211, 213, 0.16) 0%, rgba(28, 133, 198, 0.06) 100%);
    border: 1px solid var(--teal-light);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 26px 0;
}
.callout-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    color: var(--blue-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.callout-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 3px;
}
.callout p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--gray-800);
    margin: 0;
}

@media (max-width: 1024px) {
    .service-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .service-hero-figure { max-width: 560px; }
}
@media (max-width: 768px) {
    .service-hero { padding: 160px 24px 56px; }
    .symptom-grid { grid-template-columns: 1fr; }
    .step-row { grid-template-columns: 1fr; }
    .callout { flex-direction: column; align-items: flex-start; gap: 12px; }
    .lead-card { padding: 22px 22px; }
}
