/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Blues */
    --blue-light: #2396CB;
    --blue-mid: #1780B8;
    --blue-deep: #094979;
    /* Pink Accent */
    --pink: #D4809E;
    --pink-soft: #E8B4C8;
    --pink-pale: #F5E1EA;
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --gray-100: #EDEDED;
    --gray-200: #DADADA;
    --gray-300: #C6C6C6;
    --gray-500: #8A8A8A;
    --gray-700: #4A4A4A;
    --gray-900: #1A1A1A;
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container: min(1200px, 90vw);
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   UTILITY
   ============================================ */
.container { width: var(--container); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
    padding: 1rem 0;
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 20px rgba(9,73,121,0.08);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}
.nav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo svg {
    width: 42px;
    height: 42px;
    transition: transform 0.3s var(--ease-out);
}
.nav-logo:hover svg { transform: scale(1.05); }
.nav-logo svg path, .nav-logo svg ellipse, .nav-logo svg circle {
    transition: stroke 0.4s, fill 0.4s;
    stroke: rgba(255,255,255,0.85);
}
.nav-logo svg circle[fill="#2396CB"] { fill: rgba(255,255,255,0.85); }
.nav-logo svg circle[fill="white"] { fill: var(--blue-deep); }
.nav.scrolled .nav-logo svg path, .nav.scrolled .nav-logo svg ellipse, .nav.scrolled .nav-logo svg circle {
    stroke: #2396CB;
}
.nav.scrolled .nav-logo svg circle[fill="rgba(255,255,255,0.85)"], .nav.scrolled .nav-logo svg circle[r="3.5"] { fill: #2396CB; }
.nav.scrolled .nav-logo svg circle[fill="var(--blue-deep)"], .nav.scrolled .nav-logo svg circle[r="1"] { fill: white; }

/* Inner pages: nav starts dark */
.nav-inner-page .nav-logo svg path,
.nav-inner-page .nav-logo svg ellipse,
.nav-inner-page .nav-logo svg circle { stroke: #2396CB; }
.nav-inner-page .nav-logo svg circle[fill="#2396CB"],
.nav-inner-page .nav-logo svg circle[r="3.5"] { fill: #2396CB; }
.nav-inner-page .nav-logo svg circle[fill="white"],
.nav-inner-page .nav-logo svg circle[r="1"] { fill: white; }

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    transition: color 0.4s;
}
.nav.scrolled .nav-logo-text { color: var(--blue-deep); }
.nav-inner-page .nav-logo-text { color: var(--blue-deep); }

.nav-logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.4s;
}
.nav.scrolled .nav-logo-text span { color: var(--blue-light); }
.nav-inner-page .nav-logo-text span { color: var(--blue-light); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav-inner-page .nav-links a { color: var(--gray-700); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--blue-deep); }
.nav-inner-page .nav-links a:hover { color: var(--blue-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--blue-mid);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--blue-deep) !important;
    transform: translateY(-1px);
}
.lang-toggle {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s;
}
.lang-toggle:hover {
    border-color: var(--white);
    color: var(--white);
}
.nav.scrolled .lang-toggle {
    color: var(--gray-500);
    border-color: var(--gray-200);
}
.nav.scrolled .lang-toggle:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
}
.nav-inner-page .lang-toggle {
    color: var(--gray-500);
    border-color: var(--gray-200);
}
.nav-inner-page .lang-toggle:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
}

/* Mobile menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--blue-deep); }
.nav-inner-page .nav-hamburger span { background: var(--blue-deep); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.show { opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
}
.btn-primary {
    background: var(--pink);
    color: var(--white);
}
.btn-primary:hover {
    background: #c06f8b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,128,158,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--blue-deep);
    color: var(--white);
}
.btn-secondary:hover {
    background: #073c63;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9,73,121,0.25);
}
.btn-blue {
    background: var(--blue-mid);
    color: var(--white);
}
.btn-blue:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9,73,121,0.2);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section { padding: var(--section-pad) 0; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--pink);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 550px;
    line-height: 1.7;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0b5a94 40%, var(--blue-mid) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(212,128,158,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}
.hero-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
}
.hero-deco-1 { width: 500px; height: 500px; top: -150px; right: -100px; animation: floatSlow 8s ease-in-out infinite; }
.hero-deco-2 { width: 300px; height: 300px; bottom: 10%; left: -80px; animation: floatSlow 10s ease-in-out infinite 2s; }
.hero-deco-3 { width: 150px; height: 150px; top: 30%; right: 15%; border-color: rgba(212,128,158,0.1); animation: floatSlow 6s ease-in-out infinite 1s; }

.hero-content {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    padding-top: 5rem;
}
.hero-text { animation: slideInLeft 1s var(--ease-out) 0.3s both; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink-soft);
    margin-bottom: 1.5rem;
}
.hero-tag::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--pink);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--pink-soft);
}
.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.2s var(--ease-out) 0.6s both;
}
.hero-image-frame {
    width: 420px;
    height: 520px;
    border-radius: 200px 200px 30px 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-image-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    padding: 2rem;
}
.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.hero-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 30px rgba(9,73,121,0.15);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-700);
    animation: floatSlow 7s ease-in-out infinite;
}
.hero-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-badge-1 { bottom: 15%; left: -30px; animation-delay: 0s; }
.hero-badge-1 .hero-badge-icon { background: var(--pink-pale); }
.hero-badge-2 { top: 20%; right: -20px; animation-delay: 2s; }
.hero-badge-2 .hero-badge-icon { background: #E0F0FA; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--white);
    padding: 2.5rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}
.stats-inner {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 40px rgba(9,73,121,0.06);
    border: 1px solid var(--gray-100);
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--gray-200);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--blue-deep);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-number .accent { color: var(--pink); }
.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.03em;
}

/* ============================================
   SPECIALTIES / SERVICES GRID
   ============================================ */
.specialties { background: var(--off-white); }
.specialties-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.specialties-header .section-subtitle { margin: 0 auto; }
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: var(--container);
    margin: 0 auto;
}
.spec-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    border: 1px solid transparent;
    cursor: pointer;
}
.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(9,73,121,0.08);
    border-color: var(--gray-100);
}
.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--pink));
    opacity: 0;
    transition: opacity 0.3s;
}
.spec-card:hover::before { opacity: 1; }
.spec-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.spec-icon.blue { background: rgba(35,150,203,0.1); }
.spec-icon.pink { background: var(--pink-pale); }
.spec-icon.deep { background: rgba(9,73,121,0.08); }
.spec-icon svg { width: 26px; height: 26px; }
.spec-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.75rem;
}
.spec-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.spec-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}
.spec-card:hover .spec-link { gap: 0.7rem; }

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */
.about { background: var(--white); }
.about-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.about-image-area { position: relative; }
.about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    overflow: hidden;
}
.about-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    padding: 1.5rem;
    background: var(--blue-deep);
    border-radius: 16px;
    color: var(--white);
    text-align: center;
}
.about-accent-box .number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}
.about-accent-box .label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.3rem;
}
.about-text .section-tag { margin-bottom: 1rem; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}
.credential-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: rgba(35,150,203,0.08);
    color: var(--blue-mid);
}

/* ============================================
   CONDITIONS (Homepage dark section)
   ============================================ */
.conditions {
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}
.conditions::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(212,128,158,0.08), transparent 70%);
}
.conditions-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}
.conditions .section-tag { color: var(--pink-soft); }
.conditions .section-tag::before { background: var(--pink-soft); }
.conditions .section-title { color: var(--white); }
.conditions .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }
.conditions-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}
.cond-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(5px);
    cursor: pointer;
}
.cond-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}
.cond-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.cond-icon svg { width: 28px; height: 28px; }
.cond-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.cond-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations { background: var(--off-white); }
.locations-header {
    text-align: center;
    margin-bottom: 3rem;
}
.locations-header .section-subtitle { margin: 0 auto; }
.locations-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 860px;
}
.loc-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    border: 1px solid var(--gray-100);
}
.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(9,73,121,0.08);
}
.loc-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}
.loc-body { padding: 1.5rem; }
.loc-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.3rem;
}
.loc-area {
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.loc-address {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.loc-actions { display: flex; gap: 0.6rem; }
.loc-btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s;
}
.loc-btn-book { background: #25D366; color: var(--white); }
.loc-btn-book:hover { background: #1fb855; transform: translateY(-1px); }
.loc-btn-map { background: var(--gray-100); color: var(--gray-700); }
.loc-btn-map:hover { background: var(--gray-200); }
.loc-btn-phone { background: var(--blue-light); color: var(--white); }
.loc-btn-phone:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--white);
    padding: var(--section-pad) 0;
}
.cta-box {
    width: var(--container);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 28px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,128,158,0.15), transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.cta-box p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(35,150,203,0.06), transparent 70%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .section-tag { margin-bottom: 0.8rem; }
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.8;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--blue-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb span { color: var(--gray-300); }

/* ============================================
   CONTENT SECTIONS (Inner pages)
   ============================================ */
.content-section {
    padding: var(--section-pad) 0;
}
.content-section:nth-child(even) {
    background: var(--off-white);
}
.content-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}
.content-text p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.content-text ul {
    list-style: none;
    margin: 1.5rem 0;
}
.content-text ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
}
.content-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    text-align: center;
    overflow: hidden;
}
.content-single {
    width: var(--container);
    margin: 0 auto;
    max-width: 800px;
}
.content-single h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 1.2rem;
}
.content-single p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.content-single ul {
    list-style: none;
    margin: 1.5rem 0;
}
.content-single ul li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.content-single ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
}

/* Highlight box for key info */
.highlight-box {
    background: linear-gradient(135deg, rgba(35,150,203,0.05), rgba(212,128,158,0.05));
    border-left: 4px solid var(--blue-light);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.highlight-box p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0;
}
.highlight-box strong { color: var(--blue-deep); }

/* Info cards row */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}
.info-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9,73,121,0.06);
}
.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}
.info-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   DOCTOR PAGE SPECIFIC
   ============================================ */
.doctor-hero {
    padding: 8rem 0 4rem;
    background: var(--off-white);
}
.doctor-hero-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.doctor-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    overflow: hidden;
}
.doctor-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}
.doctor-specialty {
    font-size: 1rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.doctor-info p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   LOCATION PAGE SPECIFIC
   ============================================ */
.location-detail {
    padding: var(--section-pad) 0;
}
.location-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.location-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-100);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.location-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}
.location-info p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.location-details-list {
    margin: 1.5rem 0 2rem;
}
.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.location-detail-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.location-detail-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.2rem;
}
.location-detail-item span {
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    padding: 3.5rem 0 2rem;
}
.footer-inner {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-brand svg { width: 36px; height: 36px; }
.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 300px;
}
.footer h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
}
.footer a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    padding: 0.3rem 0;
    transition: color 0.3s;
}
.footer a:hover { color: var(--pink-soft); }
.footer-bottom {
    width: var(--container);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    padding: 0;
}
.footer-social a:hover { background: rgba(212,128,158,0.2); }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    z-index: 900;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-area { max-width: 400px; margin: 0 auto; }
    .content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .content-grid.reverse { direction: ltr; }
    .doctor-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .doctor-photo { max-width: 350px; margin: 0 auto; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }
    .stats-inner {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .stat-item::after { display: none; }
    .specialties-grid { grid-template-columns: 1fr; }
    .conditions-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .info-cards { grid-template-columns: 1fr; }
    .page-header { padding: 7rem 0 3rem; }
}
