/* ============================================
   London ED Clinic UK - Main Stylesheet
   Premium Healthcare Design System
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-primary: #1b3a5c;
    --color-primary-dark: #152d48;
    --color-primary-darker: #0f2236;
    --color-primary-light: #2a5580;
    --color-accent: #3a7bd5;
    --color-accent-light: #5a9ae6;
    --color-white: #ffffff;
    --color-text-light: #c8d6e5;
    --color-text-muted: #8fa4bd;
    --color-gold: #f5a623;
    --color-star: #f5a623;
    --color-card-bg: rgba(255, 255, 255, 0.07);
    --color-card-border: rgba(255, 255, 255, 0.12);
    --color-section-alt: #f7f9fc;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-primary-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-primary-darker);
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    background: rgba(10, 25, 47, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-top {
    background: transparent;
    padding: 20px 0 12px;
    text-align: center;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-top {
    padding: 10px 0 6px;
}

.header-top-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-area {
    text-align: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 4px;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo {
    font-size: 22px;
    margin-bottom: 2px;
}

.tagline {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.site-header.scrolled .tagline {
    font-size: 11px;
}

.tagline-icon {
    color: var(--color-accent-light);
    margin-right: 4px;
}

/* Navigation */
.main-nav {
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: all var(--transition), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.site-header.scrolled .nav-links li a {
    padding: 10px 18px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--color-accent-light);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
    background:
        linear-gradient(180deg, rgba(15, 34, 54, 0.85) 0%, rgba(27, 58, 92, 0.9) 100%),
        linear-gradient(135deg, #0f2236 0%, #1b3a5c 50%, #2a5580 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(58, 123, 213, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(58, 123, 213, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><defs><linearGradient id="g" x1="0%25" y1="100%25" x2="100%25" y2="0%25"><stop offset="0%25" stop-color="%230a1628" stop-opacity="0.5"/><stop offset="100%25" stop-color="%231b3a5c" stop-opacity="0.3"/></linearGradient></defs><rect fill="url(%23g)" width="1440" height="600"/><g opacity="0.15"><rect x="200" y="350" width="40" height="200" rx="2" fill="%23456"/><rect x="250" y="300" width="50" height="250" rx="2" fill="%23345"/><rect x="310" y="280" width="35" height="270" rx="2" fill="%23456"/><rect x="360" y="250" width="60" height="300" rx="2" fill="%23345"/><rect x="440" y="200" width="45" height="350" rx="2" fill="%23456"/><rect x="500" y="220" width="55" height="330" rx="2" fill="%23345"/><rect x="570" y="180" width="40" height="370" rx="2" fill="%23456"/><rect x="630" y="260" width="65" height="290" rx="2" fill="%23345"/><rect x="710" y="230" width="50" height="320" rx="2" fill="%23456"/><rect x="780" y="190" width="55" height="360" rx="2" fill="%23345"/><rect x="850" y="270" width="45" height="280" rx="2" fill="%23456"/><rect x="910" y="240" width="60" height="310" rx="2" fill="%23345"/><rect x="990" y="210" width="35" height="340" rx="2" fill="%23456"/><rect x="1040" y="260" width="50" height="290" rx="2" fill="%23345"/><rect x="1110" y="300" width="45" height="250" rx="2" fill="%23456"/><rect x="1170" y="320" width="55" height="230" rx="2" fill="%23345"/></g></svg>') center bottom / cover no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 28px;
    color: var(--color-white);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

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

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-icon {
    font-size: 16px;
}

/* ============================================
   Sections (shared)
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-subtitle.light {
    color: var(--color-text-light);
}

/* ============================================
   Video Section
   ============================================ */
.section-video {
    background: var(--color-primary);
    padding: 80px 0;
}

.video-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Info Bar
   ============================================ */
.info-bar {
    background: var(--color-primary);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-bar-text {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
}

.play-icon {
    margin-right: 8px;
    color: var(--color-accent-light);
}

/* ============================================
   Partnership Section
   ============================================ */
.section-partnership {
    background: var(--color-primary-dark);
    padding: 40px 0;
    text-align: center;
}

.partnership-text {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight-link {
    color: var(--color-accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.highlight-link:hover {
    color: var(--color-white);
}

/* ============================================
   Root Cause Section
   ============================================ */
.section-root-cause {
    background: var(--color-primary-dark);
    padding: 60px 0 80px;
}

.root-cause-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.root-cause-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-white);
    letter-spacing: -0.3px;
}

.root-cause-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ============================================
   ED Causes Section
   ============================================ */
.section-causes {
    background: var(--color-primary);
    padding: 100px 0;
    overflow: hidden;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.cause-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.cause-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.cause-icon {
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.cause-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.cause-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   Location / Trust Section
   ============================================ */
.section-location {
    background: var(--color-primary-dark);
    padding: 100px 0;
    overflow: hidden;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.trust-icon {
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-white);
}

.trust-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.section-testimonials {
    background: var(--color-primary);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stars {
    color: var(--color-star);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.testimonial-name {
    font-size: 16px;
    color: var(--color-white);
    display: block;
    margin-bottom: 4px;
}

.testimonial-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 8px;
}

.testimonial-treatment {
    font-size: 13px;
    color: var(--color-text-muted);
    display: block;
}

.testimonial-treatment strong {
    color: var(--color-text-light);
}

.testimonial-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Pricing Section
   ============================================ */
.section-pricing {
    background: var(--color-primary-dark);
    padding: 80px 0;
}

.pricing-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
    font-style: italic;
}

.pricing-description {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.price-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-currency {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.price-inline {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.price-period {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.section-contact {
    background: var(--color-primary);
    padding: 80px 0;
}

.contact-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

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

.contact-icon {
    flex-shrink: 0;
    color: var(--color-text-light);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-primary-darker);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-text-muted);
}

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

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-col ul li {
    font-size: 14px;
    color: var(--color-text-muted);
    padding: 4px 0;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(32px, 5vw, 50px);
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .page-hero {
        padding: 100px 0 50px;
    }

    .section-title {
        font-size: 30px;
    }

    .causes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .root-cause-card {
        padding: 40px 32px;
    }

    .pricing-card {
        padding: 40px 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-inner {
        justify-content: flex-end;
        padding: 8px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: -24px;
        right: -24px;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links li a {
        padding: 12px 24px;
        text-align: center;
    }

    .site-header.scrolled .nav-links li a {
        padding: 12px 24px;
    }

    .hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: clamp(26px, 6vw, 38px);
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero {
        padding: 90px 0 40px;
    }

    .page-hero .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 26px;
    }

    .causes-grid,
    .trust-cards,
    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .treatments-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

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

    .root-cause-card {
        padding: 32px 24px;
    }

    .root-cause-card h2 {
        font-size: 24px;
    }

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

    .contact-card {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-amount {
        font-size: 48px;
    }

    .video-wrapper {
        margin: 0 -12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: clamp(24px, 6.5vw, 32px);
        letter-spacing: -0.5px;
    }

    .section-title {
        font-size: 22px;
    }

    .root-cause-card h2 {
        font-size: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ============================================
   Page Hero (subpages)
   ============================================ */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0f2236 0%, #1b3a5c 50%, #2a5580 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(58, 123, 213, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(58, 123, 213, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
    display: block;
}

.page-hero .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 620px;
    margin: 0 auto;
    display: block;
}

/* ============================================
   Treatment Detail Cards
   ============================================ */
.treatments-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.treatment-detail-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.treatment-detail-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.treatment-detail-icon {
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.treatment-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.treatment-detail-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.treatment-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-benefits li {
    font-size: 14px;
    color: var(--color-text-muted);
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.5;
}

.treatment-benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent-light);
    font-weight: 700;
}

/* ============================================
   How It Works Steps
   ============================================ */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(58, 123, 213, 0.2);
    border: 2px solid var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-accent-light);
    margin: 0 auto 20px;
}

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

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-text-muted);
}

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

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   Contact Page Layout
   ============================================ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--color-white);
    transition: all var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-light);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238fa4bd' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-light);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }

/* Google Map Section */

/* Booking Embed Section */
.section-booking {
    padding: 80px 0;
}

.booking-embed-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-card-border);
    line-height: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-card-bg);
}

.booking-embed-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

@media (max-width: 768px) {
    .section-booking {
        padding: 48px 0;
    }

    .booking-embed-container iframe {
        height: 500px;
    }
}

/* Booking CTA Section (replaces embedded form) */
.section-booking-cta {
    padding: 80px 0;
    text-align: center;
}

.section-booking-cta .section-title {
    margin-bottom: 16px;
}

.section-booking-cta .section-subtitle {
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .section-booking-cta {
        padding: 48px 0;
    }
}

.section-map {
    padding: 80px 0;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-card-border);
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (max-width: 768px) {
    .section-map {
        padding: 48px 0;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ============================================
   Google Reviews Section
   ============================================ */
.section-google-reviews {
    background: var(--color-primary);
    padding: 80px 0;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.google-rating-summary {
    margin-top: 20px;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.google-review-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}

.google-review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    flex-shrink: 0;
}

.google-reviewer-name {
    display: block;
    font-size: 15px;
    color: var(--color-white);
}

.google-review-date {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
}

.google-review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.google-review-source {
    font-size: 12px;
    color: var(--color-text-muted);
}

.google-reviews-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Google Reviews Mini (Homepage) */
.section-google-reviews-mini {
    background: var(--color-primary-darker);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.google-reviews-mini-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.google-reviews-mini-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.google-reviews-mini-quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.google-mini-quote {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.google-mini-quote p {
    font-size: 13px;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.google-mini-quote strong {
    font-size: 13px;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .section-google-reviews {
        padding: 48px 0;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-reviews-cta {
        flex-direction: column;
        align-items: center;
    }

    .google-reviews-mini-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .google-reviews-mini-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .google-reviews-mini-buttons {
        justify-content: center;
    }

    .section-google-reviews-mini {
        padding: 40px 0;
    }
}

/* ============================================
   Book Your Consultation CTA Button
   ============================================ */
.btn-cta {
    background: linear-gradient(135deg, #3a7bd5, #2a5580);
    color: var(--color-white);
    border-color: transparent;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(58, 123, 213, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(58, 123, 213, 0.5);
    background: linear-gradient(135deg, #4a8be5, #3a6b96);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(0);
}

/* CTA Section */
.section-cta-booking {
    padding: 56px 0;
    text-align: center;
    background: var(--color-primary-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-cta-booking .cta-supporting-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

/* Nav CTA */
.nav-cta-btn {
    background: linear-gradient(135deg, #3a7bd5, #2a5580);
    color: var(--color-white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: 0 2px 12px rgba(58, 123, 213, 0.3);
    transition: all var(--transition);
    white-space: nowrap;
    margin-left: 8px;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #4a8be5, #3a6b96) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(58, 123, 213, 0.45);
    color: var(--color-white) !important;
}

.nav-cta-btn::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-cta-btn {
        margin: 8px 24px;
        text-align: center;
        display: block;
        padding: 12px 24px !important;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 360px;
    }
}
