* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #5b6cff;
    --primary-dark: #4453e8;
    --primary-light: #eef0ff;
    --gradient: linear-gradient(135deg, #6b7eff 0%, #8c7aff 50%, #a4b0ff 100%);
    --dark: #0a0e27;
    --gray-900: #1a1d36;
    --gray-700: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --gray-50: #f8f9ff;
    --white: #ffffff;
    --green: #10b981;
    --shadow-sm: 0 1px 3px rgba(10, 14, 39, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.08);
    --shadow-lg: 0 12px 32px rgba(10, 14, 39, 0.12);
    --shadow-xl: 0 24px 48px rgba(91, 108, 255, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.hl {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 14, 39, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.logo-text { font-size: 1.15rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.logo-text strong { color: var(--primary); font-weight: 800; }

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    gap: 4px;
    list-style: none;
    background: var(--gray-50);
    padding: 6px;
    border-radius: 999px;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 999px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-list > li > a:hover { background: white; color: var(--dark); box-shadow: var(--shadow-sm); }

/* Language-specific nav tightening — EN/DE/ES/AR have longer labels than TR */
html[lang="en"] .nav-inner,
html[lang="es"] .nav-inner,
html[lang="de"] .nav-inner,
html[lang="ar"] .nav-inner {
    gap: 12px;
}
html[lang="en"] .nav-list,
html[lang="es"] .nav-list,
html[lang="de"] .nav-list,
html[lang="ar"] .nav-list {
    gap: 2px;
    padding: 4px;
}
html[lang="en"] .nav-list > li > a,
html[lang="es"] .nav-list > li > a,
html[lang="de"] .nav-list > li > a,
html[lang="ar"] .nav-list > li > a {
    padding: 9px 11px;
    font-size: 0.84rem;
    gap: 4px;
}
html[lang="en"] .btn-cta,
html[lang="es"] .btn-cta,
html[lang="de"] .btn-cta,
html[lang="ar"] .btn-cta {
    padding: 10px 14px;
    font-size: 0.84rem;
    white-space: nowrap;
    flex-shrink: 0;
}
html[lang="en"] .lang-switcher,
html[lang="es"] .lang-switcher,
html[lang="de"] .lang-switcher,
html[lang="ar"] .lang-switcher {
    flex-shrink: 0;
}

/* Mid viewport tightening (1280-1440px) for long-label languages */
@media (max-width: 1440px) {
    html[lang="en"] .nav-list > li > a,
    html[lang="es"] .nav-list > li > a,
    html[lang="de"] .nav-list > li > a {
        padding: 8px 9px;
        font-size: 0.8rem;
    }
    html[lang="en"] .nav-inner,
    html[lang="es"] .nav-inner,
    html[lang="de"] .nav-inner {
        gap: 8px;
        padding: 16px 18px;
    }
    html[lang="en"] .btn-cta,
    html[lang="es"] .btn-cta,
    html[lang="de"] .btn-cta {
        padding: 9px 12px;
        font-size: 0.8rem;
    }
}

/* Narrow desktop (1101-1500px) — hide navbar CTA on long-name langs; floating WA in corner remains */
@media (max-width: 1500px) and (min-width: 1101px) {
    html[lang="en"] .nav-inner > .btn-cta,
    html[lang="de"] .nav-inner > .btn-cta,
    html[lang="es"] .nav-inner > .btn-cta,
    html[lang="ar"] .nav-inner > .btn-cta {
        display: none !important;
    }
    html[lang="en"] .nav-list > li > a,
    html[lang="de"] .nav-list > li > a,
    html[lang="es"] .nav-list > li > a,
    html[lang="ar"] .nav-list > li > a {
        padding: 7px 8px;
        font-size: 0.78rem;
    }
    html[lang="en"] .nav-inner,
    html[lang="de"] .nav-inner,
    html[lang="es"] .nav-inner,
    html[lang="ar"] .nav-inner {
        gap: 6px;
    }
}

/* DE has the longest labels — extra aggressive at any non-mobile viewport */
@media (min-width: 1101px) {
    html[lang="de"] .nav-list > li > a {
        padding: 7px 8px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
    html[lang="de"] .nav-inner > .btn-cta {
        display: none;
    }
}

.has-mega { position: relative; }

/* Default mega menu: centered on the parent link */
.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 28px;
    display: grid;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    border: 1px solid rgba(91, 108, 255, 0.08);
    min-width: 280px;
    z-index: 200;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 22px;
}

.mega-narrow { grid-template-columns: 1fr; min-width: 280px; }
.mega-menu:not(.mega-narrow):not(.mega-wide) { grid-template-columns: repeat(3, 1fr); min-width: 720px; }

/* Wide mega menu: anchored to navbar container, centered on page */
.has-mega:has(.mega-wide) { position: static; }
.mega-wide {
    grid-template-columns: repeat(5, 1fr);
    min-width: min(1180px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    top: 100%;
    margin-top: 18px;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.mega-col h4.spaced { margin-top: 18px; }

.mega-col a {
    display: block;
    padding: 7px 10px;
    margin: 0 -10px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 6px;
    transition: all 0.15s;
}

.mega-col a:hover { background: var(--primary-light); color: var(--primary-dark); padding-left: 14px; }

/* Language switcher */
.lang-switcher {
    position: relative;
    margin-right: 8px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: var(--gray-50);
    border: 1px solid transparent;
    color: var(--dark);
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover { background: white; border-color: var(--gray-300); }

.lang-btn svg { transition: transform 0.2s; }
.lang-switcher.open .lang-btn svg.chevron { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    border: 1px solid var(--gray-100);
}

.lang-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s;
}

.lang-menu a:hover { background: var(--primary-light); color: var(--primary-dark); }
.lang-menu a.active { background: var(--gradient); color: white; font-weight: 600; }
.lang-flag { font-size: 1.2rem; line-height: 1; }

@media (max-width: 1100px) {
    .lang-switcher { margin: 0 8px 0 auto; }
    .lang-btn { padding: 7px 10px; font-size: 0.82rem; }
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px 11px 22px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s;
}

.btn-cta:hover { background: var(--primary); transform: translateY(-1px); }

.btn-arrow {
    width: 28px;
    height: 28px;
    background: white;
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-cta:hover .btn-arrow { transform: rotate(-45deg); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1050;
}
.nav-backdrop.active { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
    padding: 24px 0 90px;
    overflow: hidden;
}

.hero-grid {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    color: var(--primary);
}
.badge-dot::before { content: '♥'; }

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.hero h1 .hl {
    background: linear-gradient(120deg, #fff 0%, #ffe5b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--dark);
    padding: 12px 14px 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

.btn-circle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.btn-circle.dark { background: var(--dark); }

.btn-primary:hover .btn-circle { transform: rotate(-45deg); }

.btn-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.btn-play:hover { background: white; color: var(--primary); }

.play-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.open { display: flex; }

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: fadeIn 0.2s ease;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    animation: scaleIn 0.25s ease;
}

.video-modal-content.shorts {
    aspect-ratio: 9 / 16;
    max-width: min(400px, 90vw);
    max-height: 80vh;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: grid;
    place-items: center;
}

.video-modal-close:hover { background: white; color: var(--dark); }

body.modal-open { overflow: hidden; }

/* RTL support (Arabic) */
html[dir="rtl"] body { font-family: 'Inter', 'Tahoma', 'Arial', sans-serif; }
html[dir="rtl"] .btn-arrow,
html[dir="rtl"] .btn-circle,
html[dir="rtl"] .blog-link,
html[dir="rtl"] .sc-link,
html[dir="rtl"] .cat-tx-link { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .nav-list > li > a svg { transform: scaleX(-1); }
html[dir="rtl"] .ba-after .ba-label { left: 12px; right: auto; }
html[dir="rtl"] .ba-before .ba-label { right: 12px; left: auto; }
html[dir="rtl"] .floating-actions { right: auto; left: 24px; }
html[dir="rtl"] .tx-breadcrumb span,
html[dir="rtl"] .cat-breadcrumb span { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] @media (max-width: 640px) {
    .floating-actions { left: 16px; right: auto; }
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.fab-whatsapp {
    background: #25d366;
    animation: fabPulse 2.4s infinite;
}

.fab-phone {
    background: var(--gradient);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

@media (max-width: 640px) {
    .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
    .fab { width: 52px; height: 52px; }
}

body.nav-open .floating-actions { opacity: 0; pointer-events: none; transition: opacity 0.2s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 640px) {
    .video-modal-close { top: -44px; }
}

/* Hero stat cards */
.hero-stats { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; max-width: 460px; }

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.stat-label { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 8px; }

.stat-doctors { display: flex; align-items: center; gap: 10px; }

.avatar-stack { display: flex; }
.avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid white; margin-left: -8px; background: var(--gray-300); }
.avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg, #f9a8d4, #f472b6); }
.avatar.a2 { background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.avatar.a3 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }

.stat-text { font-size: 0.82rem; font-weight: 600; }

.stat-card-stat { display: flex; flex-direction: column; align-items: center; padding: 10px; }
.stat-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 98%, var(--gray-100) 98% 100%);
    display: grid;
    place-items: center;
    margin: 4px 0;
}
.stat-percent {
    width: 48px; height: 48px; border-radius: 50%;
    background: white;
    display: grid; place-items: center;
    font-weight: 800; font-size: 0.95rem; color: var(--primary);
}
.stat-percent span { font-size: 0.65rem; }
.stat-foot { font-size: 0.7rem; color: var(--gray-500); }

/* Hero visual */
.hero-visual { position: relative; height: 480px; }

.hero-img-wrap {
    position: absolute; bottom: -60px; right: 0; left: 0; top: 0;
    display: grid; place-items: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Hero video overrides (Turkey flag intro) */
.hero-video {
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    filter: none;
    box-shadow: 0 24px 60px rgba(10,14,39,0.18), 0 0 0 1px rgba(255,255,255,0.4) inset;
    aspect-ratio: 4/5;
    max-height: 560px;
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--dark);
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
    z-index: 3;
}

.fc-1 { top: 80px; right: -10px; }
.fc-2 { bottom: 40px; left: -20px; }

.fc-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: grid; place-items: center;
    font-weight: 700;
}
.fc-icon.green { background: #d1fae5; color: var(--green); }
.fc-title { font-weight: 800; font-size: 1rem; }
.fc-sub { font-size: 0.75rem; color: var(--gray-500); }

/* ===== SECTIONS ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-head h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; }

/* Services */
.services { padding: 90px 0; background: var(--gray-50); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(10, 14, 39, 0.04);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.sc-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid; place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 18px; }

.sc-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.service-cta {
    background: var(--gradient);
    color: white;
    border: none;
}
.service-cta h3, .service-cta p, .service-cta .sc-link { color: white !important; }
.service-cta p { opacity: 0.9; }

/* Why us */
.why-us { padding: 100px 0; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 { font-size: 2.4rem; margin-bottom: 18px; }
.why-content p { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 32px; }

.why-list { list-style: none; }
.why-list li {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}
.why-list li:last-child { border-bottom: none; }

.check {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid; place-items: center;
    font-weight: 700;
    flex-shrink: 0;
}
.why-list strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.why-list span { color: var(--gray-500); font-size: 0.9rem; }

.why-img-placeholder {
    height: 480px;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    display: grid; place-items: center;
    color: var(--primary);
    font-weight: 600;
}

.why-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* CTA */
.cta-section { padding: 60px 0 100px; }

.cta-box {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-box h2 { font-size: 2.6rem; margin-bottom: 14px; color: white; }
.cta-box p { font-size: 1.1rem; opacity: 0.9; max-width: 560px; margin: 0 auto 32px; }
.btn-primary.white { background: white; color: var(--dark); }

/* Footer */
footer { background: var(--dark); color: #cbd5e1; padding: 70px 0 30px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer .logo { color: white; }
footer .logo-text strong { color: var(--primary); }

.footer-desc { color: #94a3b8; font-size: 0.95rem; margin-top: 14px; max-width: 320px; }

footer h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; }
footer a { display: block; color: #94a3b8; text-decoration: none; padding: 6px 0; font-size: 0.92rem; transition: color 0.15s; }
footer a:hover { color: white; }
footer p { color: #94a3b8; font-size: 0.92rem; padding: 4px 0; line-height: 1.6; }
footer p a { display: inline; padding: 0; }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.social-links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #cbd5e1;
    padding: 0;
    transition: all 0.2s;
}
.social-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
}

.footer-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: #64748b;
    font-size: 0.88rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #64748b; padding: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: var(--gradient);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-text-2 {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== JOURNEY / PROCESS SECTION ===== */
.journey-section { padding: 100px 0; }

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

.journey-card {
    background: white;
    padding: 36px 28px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.journey-card:hover::before { opacity: 1; }

.journey-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-light);
    letter-spacing: -0.04em;
    transition: color 0.3s;
}

.journey-card:hover .journey-num {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.journey-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all 0.3s;
}

.journey-card:hover .journey-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
}

.journey-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
    padding-right: 60px;
}

.journey-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== DOCTORS SECTION ===== */
.doctors-section { padding: 100px 0; background: var(--gray-50); }

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

.doctor-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.doc-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.doc-info { padding: 22px; }
.doc-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.doc-spec { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.doc-bio { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }

/* ===== BEFORE / AFTER GALLERY ===== */
.ba-section { padding: 100px 0; background: var(--gray-50); }

.ba-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.ba-tab {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--gray-100);
    color: var(--gray-700);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.ba-tab:hover { border-color: var(--primary); color: var(--primary); }

.ba-tab.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(91, 108, 255, 0.3);
}

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

.ba-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    animation: baFadeIn 0.4s ease;
}

.ba-card.hidden { display: none; }

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 16 / 10;
    position: relative;
}

.ba-card { cursor: pointer; }
.ba-card .ba-img-side { background-position: center center; }

.ba-images::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
}

.ba-img-side {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.ba-before {
    background-image: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.ba-after {
    background-image: linear-gradient(135deg, #a4b0ff 0%, #6b7eff 100%);
}

.ba-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 14, 39, 0.75);
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.ba-after .ba-label {
    background: rgba(91, 108, 255, 0.95);
    left: auto;
    right: 12px;
}

.ba-info { padding: 22px; }

.ba-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ba-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.ba-info p {
    color: var(--gray-500);
    font-size: 0.88rem;
}

.ba-more {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.page-hero {
    padding: 64px 0 32px;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}
.page-hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin: 14px 0 12px;
    font-weight: 800;
}
.page-hero .lead {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 0 16px;
}
.page-hero .tx-breadcrumb {
    margin-bottom: 8px;
    color: var(--gray-500);
}
.page-hero .tx-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.ba-footnote {
    text-align: center;
    margin-top: 40px;
    padding: 18px 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px dashed var(--gray-300);
}

.ba-footnote p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin: 0;
}

.ba-footnote a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.ba-footnote a:hover { text-decoration: underline; }

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

@media (max-width: 1100px) {
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-tab { padding: 8px 14px; font-size: 0.82rem; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; }

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

.testimonial {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    position: relative;
}

.stars {
    color: #f59e0b;
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}

.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}
.t-avatar.a1 { background: linear-gradient(135deg, #f9a8d4, #f472b6); }
.t-avatar.a2 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.t-avatar.a3 { background: linear-gradient(135deg, #fcd34d, #f59e0b); }

.t-author strong { display: block; font-size: 0.95rem; }
.t-author span { color: var(--gray-500); font-size: 0.82rem; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; background: var(--gray-50); }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* ===== BLOG SECTION ===== */
.blog-section { padding: 100px 0; }

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

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.blog-content { padding: 22px; }

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== BLOG ===== */
.blog-hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 14px;
}

.blog-hero p {
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.blog-listing { padding: 40px 0 80px; }

/* Featured post — large card */
.blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.blog-featured-img {
    background-size: cover;
    background-position: center;
    min-height: 360px;
    background-color: var(--primary-light);
}

.blog-featured-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 14px 0 16px;
}

.blog-excerpt {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Filter tabs */
.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    padding: 18px;
    background: var(--gray-50);
    border-radius: 999px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.blog-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--gray-700);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.blog-tab:hover { color: var(--primary); }

.blog-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(91, 108, 255, 0.3);
}

/* Card grid */
.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card-full {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    animation: blogFadeIn 0.4s ease;
}

.blog-card-full.hidden { display: none; }

.blog-card-full a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-card-img {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-light);
}

.blog-card-body { padding: 24px; }

.blog-card-body h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 12px 0 10px;
}

.blog-card-body p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-500);
    font-size: 1.05rem;
}

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

/* Individual blog post */
.blog-post-hero {
    position: relative;
    padding: 90px 0 80px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.blog-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.65) 0%, rgba(91, 108, 255, 0.55) 100%);
    z-index: 1;
}

.blog-post-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.blog-post-hero h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: white;
    margin: 14px 0 22px;
}

.blog-post-hero .cat-breadcrumb {
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

.blog-post-hero .cat-breadcrumb a { color: rgba(255,255,255,0.85); }
.blog-post-hero .cat-breadcrumb a:hover { color: white; }

.blog-tag-light {
    background: rgba(255,255,255,0.18);
    color: white;
    backdrop-filter: blur(6px);
}

.blog-post-meta {
    display: flex;
    gap: 22px;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.blog-post-content {
    padding: 60px 24px;
    max-width: 820px;
}

.blog-post-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-900);
}

.blog-post-body p { margin-bottom: 18px; }

.blog-post-body h2 {
    font-size: 1.7rem;
    margin: 36px 0 14px;
    color: var(--dark);
}

.blog-post-body h3 {
    font-size: 1.25rem;
    margin: 28px 0 10px;
    color: var(--dark);
}

.blog-post-body ul, .blog-post-body ol {
    margin-bottom: 18px;
    padding-left: 26px;
}

.blog-post-body li {
    padding: 4px 0;
    color: var(--gray-700);
}

.blog-post-body strong { color: var(--dark); }

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 0.95rem;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-post-body th, .blog-post-body td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.blog-post-body th {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-post-body tr:last-child td { border-bottom: none; }

.blog-post-body blockquote {
    margin: 26px 0;
    padding: 22px 28px;
    border-left: 4px solid var(--primary);
    background: var(--primary-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-700);
}

/* Related posts */
.blog-related {
    max-width: 1100px;
    margin: 60px auto 80px;
    padding: 0 24px;
}

.blog-related h3 {
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-related-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--gray-100);
    transition: all 0.25s;
}

.blog-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-related-img {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-light);
}

.blog-related-content { padding: 18px; }

.blog-related-content h4 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 8px 0;
}

.blog-meta-small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

@media (max-width: 1100px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 240px; }
    .blog-featured-content { padding: 32px 28px; }
    .blog-featured-content h2 { font-size: 1.6rem; }
    .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
    .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-post-hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-hero { padding: 60px 0 50px; }
    .blog-grid-full { grid-template-columns: 1fr; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-post-hero { padding: 60px 0 50px; }
    .blog-post-hero h1 { font-size: 1.6rem; }
    .blog-post-content { padding: 40px 18px; }
    .blog-post-body { font-size: 1rem; }
    .blog-post-body h2 { font-size: 1.4rem; }
    .blog-tab { padding: 8px 14px; font-size: 0.82rem; }
    .blog-filter { padding: 10px; gap: 4px; }
}

/* ===== TREATMENT PAGE ===== */
.tx-hero {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.tx-breadcrumb {
    display: flex; gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.tx-breadcrumb a { color: var(--gray-500); text-decoration: none; }
.tx-breadcrumb a:hover { color: var(--primary); }

.tx-hero-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}

.tx-hero h1 { font-size: 3rem; margin-bottom: 18px; line-height: 1.1; }
.tx-hero .lead { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 30px; }

.tx-meta {
    display: flex; gap: 30px;
    padding: 22px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tx-meta-item .label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.tx-meta-item .val { font-size: 1rem; font-weight: 700; color: var(--dark); margin-top: 4px; }

.tx-hero-visual {
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.tx-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tx-content { padding: 60px 0 80px; }
.tx-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }

.tx-body section { margin-bottom: 56px; }
.tx-body h2 { font-size: 2rem; margin-bottom: 18px; }
.tx-body h3 { font-size: 1.3rem; margin: 24px 0 12px; }
.tx-body p { color: var(--gray-700); margin-bottom: 14px; line-height: 1.8; }
.tx-body ul, .tx-body ol { padding-left: 22px; margin-bottom: 16px; }
.tx-body li { color: var(--gray-700); padding: 6px 0; line-height: 1.7; }
.tx-body strong { color: var(--dark); }

.tx-process {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin: 24px 0;
}

.tx-step {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 22px;
    position: relative;
}

.tx-step-num {
    width: 36px; height: 36px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.tx-step h4 { font-size: 1rem; margin-bottom: 6px; }
.tx-step p { font-size: 0.9rem; margin: 0; line-height: 1.6; }

.tx-faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.tx-faq-q {
    padding: 18px 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--dark);
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-family: inherit;
    transition: background 0.15s;
}
.tx-faq-q:hover { background: var(--gray-50); }
.tx-faq-q::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.2s; }
.tx-faq-item.open .tx-faq-q::after { transform: rotate(45deg); }

.tx-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
    color: var(--gray-700);
    line-height: 1.8;
}
.tx-faq-item.open .tx-faq-a { max-height: 600px; padding: 0 22px 18px; }

.tx-aside {
    position: sticky; top: 100px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
}

.tx-aside h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tx-aside p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 18px; }

.tx-aside .form-row { margin-bottom: 12px; }
.tx-aside input, .tx-aside textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    background: white;
}
.tx-aside input:focus, .tx-aside textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.tx-aside button {
    width: 100%;
    padding: 14px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.tx-aside button:hover { background: var(--primary); }

.tx-info-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===== CATEGORY PAGE ===== */
.cat-hero {
    padding: 100px 0 90px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 108, 255, 0.88) 0%, rgba(140, 122, 255, 0.85) 50%, rgba(164, 176, 255, 0.82) 100%);
    z-index: 1;
}

.cat-hero h1 {
    font-size: 3.4rem;
    margin: 8px 0 14px;
    color: white;
    font-weight: 800;
}

.cat-breadcrumb { color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.cat-breadcrumb a { color: rgba(255,255,255,0.85); }
.cat-breadcrumb a:hover { color: white; }

.cat-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.eyebrow-light { color: rgba(255,255,255,0.9); }

.cat-intro { padding: 90px 0; }

.cat-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.cat-intro h2 { font-size: 2.4rem; margin-bottom: 18px; }
.cat-intro p { color: var(--gray-700); font-size: 1.05rem; line-height: 1.8; }

.cat-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cat-benefit {
    background: white;
    padding: 26px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.cat-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.cat-benefit-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.cat-benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-benefit p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.55; }

.cat-treatments-section { padding: 90px 0; background: var(--gray-50); }

.cat-group { margin-bottom: 56px; }

.cat-group-title {
    font-size: 1.6rem;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
    color: var(--dark);
}

.cat-treatments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-tx-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--gray-100);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.cat-tx-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.cat-tx-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cat-tx-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.cat-tx-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    padding: 10px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.78rem;
    color: var(--gray-500);
}

.cat-tx-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
}

@media (max-width: 1100px) {
    .cat-intro-grid { grid-template-columns: 1fr; }
    .cat-treatments { grid-template-columns: repeat(2, 1fr); }
    .cat-hero h1 { font-size: 2.4rem; }
}

@media (max-width: 640px) {
    .cat-treatments { grid-template-columns: 1fr; }
    .cat-benefits { grid-template-columns: 1fr; }
    .cat-hero h1 { font-size: 2rem; }
    .cat-hero { padding: 70px 0 60px; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 108, 255, 0.85) 0%, rgba(140, 122, 255, 0.85) 50%, rgba(164, 176, 255, 0.85) 100%);
    z-index: 1;
}

.contact-hero h1 { font-size: 3rem; margin-bottom: 14px; color: white; }
.contact-hero h1 .hl {
    background: linear-gradient(120deg, #fff 0%, #ffe5b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact-hero p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; }
.contact-hero .eyebrow { color: rgba(255,255,255,0.85); }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    padding: 40px 0 100px;
}

.contact-form {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 22px; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-row textarea { resize: vertical; min-height: 100px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    display: flex; gap: 16px; align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
}

a.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.info-card .ico {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 1.3rem; font-weight: 700;
    flex-shrink: 0;
}
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hamburger { display: block; }

    /* Remove backdrop-filter on mobile — it creates a containing block that
       breaks position:fixed descendants (the drawer would be clipped to navbar height) */
    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: white;
    }

    /* Mobile drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(360px, 90vw);
        background: white;
        z-index: 1080;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
        padding: 80px 0 100px;
        box-shadow: -16px 0 48px rgba(10, 14, 39, 0.18);
        display: block;
    }

    .main-nav.open { transform: translateX(0); }

    .nav-list {
        display: block;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .nav-list > li {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-list > li > a {
        display: flex;
        justify-content: space-between;
        padding: 18px 28px;
        border-radius: 0;
        font-size: 1rem;
        color: var(--dark);
        background: transparent !important;
        box-shadow: none !important;
        white-space: normal;
    }

    .nav-list > li > a svg {
        transition: transform 0.25s;
    }

    .has-mega.expanded > a svg {
        transform: rotate(180deg);
    }

    /* Mega menus collapse and expand inline */
    .has-mega { position: static; }

    .mega-menu,
    .mega-wide,
    .mega-narrow {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: var(--gray-50) !important;
        margin: 0 !important;
    }

    .has-mega.expanded > .mega-menu {
        display: block !important;
    }

    .has-mega.expanded > .mega-menu.mega-wide,
    .has-mega.expanded > .mega-menu:not(.mega-narrow):not(.mega-wide) {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .mega-col {
        padding: 14px 28px;
        border-bottom: 1px solid var(--gray-100);
    }

    .mega-col:last-child { border-bottom: none; }

    .mega-col h4 {
        margin-top: 12px;
        margin-bottom: 6px;
    }

    .mega-col h4:first-child { margin-top: 0; }

    .mega-col h4.spaced { margin-top: 14px; }

    .mega-col a {
        padding: 9px 0;
        margin: 0;
        font-size: 0.92rem;
        border-radius: 0;
    }

    .mega-col a:hover {
        background: transparent;
        color: var(--primary);
        padding-left: 0;
    }

    /* Hide CTA button in nav header on mobile, will appear in drawer */
    .nav-inner > .btn-cta {
        display: none;
    }

    .main-nav .nav-list::after {
        content: '';
        display: block;
        padding: 28px;
    }

    body.nav-open { overflow: hidden; }
    .hero h1 { font-size: 2.6rem; }
    .hero-grid { padding: 40px 32px; grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-img-placeholder { height: 320px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .tx-hero-grid, .tx-content-grid, .contact-grid { grid-template-columns: 1fr; }
    .tx-process { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .journey-grid, .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    .hero-grid { padding: 32px 22px; }
    .section-head h2, .why-content h2, .cta-box h2, .tx-hero h1, .contact-hero h1 { font-size: 1.8rem; }
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bot { flex-direction: column; gap: 12px; }
    .tx-process { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .cta-box { padding: 50px 28px; }
    .nav-inner { padding: 14px 16px; }
    .btn-cta { padding: 9px 14px; font-size: 0.85rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-grid, .doctors-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 2.2rem; }
    .journey-num { font-size: 2.6rem; }
}

/* ===== Before/After popup modal ===== */
.ba-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.ba-modal.open { display: flex; }
.ba-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: fadeIn 0.2s ease;
}
.ba-modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    animation: scaleIn 0.25s ease;
    display: flex;
    flex-direction: column;
}
.ba-modal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    position: relative;
}
.ba-modal-images::after {
    content: '';
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.65);
    transform: translateX(-50%);
}
.ba-modal-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.ba-modal-label {
    position: absolute;
    top: 16px;
    background: rgba(10, 14, 39, 0.82);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ba-modal-img.before .ba-modal-label { left: 16px; }
.ba-modal-img.after .ba-modal-label {
    right: 16px;
    background: rgba(91, 108, 255, 0.95);
}
.ba-modal-info {
    padding: 22px 28px;
    border-top: 1px solid var(--gray-100);
}
.ba-modal-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.ba-modal-info h3 {
    font-size: 1.4rem;
    margin: 0 0 6px;
}
.ba-modal-info p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}
.ba-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: grid;
    place-items: center;
}
.ba-modal-close:hover { background: white; color: var(--dark); }

@media (max-width: 640px) {
    .ba-modal { padding: 12px; }
    .ba-modal-close { top: -44px; }
    .ba-modal-images { aspect-ratio: 1 / 1; }
    .ba-modal-label { font-size: 0.7rem; padding: 4px 10px; top: 10px; }
    .ba-modal-img.before .ba-modal-label { left: 10px; }
    .ba-modal-img.after .ba-modal-label { right: 10px; }
    .ba-modal-info { padding: 16px 18px; }
    .ba-modal-info h3 { font-size: 1.15rem; }
}

/* ===== Watermark on Before/After images (anti-theft) ===== */
.ba-img-side,
.ba-modal-img { position: relative; }

.ba-img-side::after,
.ba-modal-img::after {
    content: 'MatHealth';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-22deg);
    font-family: 'Plus Jakarta Sans', 'Cairo', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.45),
        0 2px 4px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.08em;
    pointer-events: none;
    white-space: nowrap;
    z-index: 3;
    user-select: none;
    -webkit-user-select: none;
}

.ba-img-side::after { font-size: 0.95rem; }
.ba-modal-img::after { font-size: 2.4rem; }

/* On AR pages the rotation direction stays same; just ensure direction is LTR for the text */
html[dir="rtl"] .ba-img-side::after,
html[dir="rtl"] .ba-modal-img::after { direction: ltr; }

@media (max-width: 640px) {
    .ba-img-side::after { font-size: 0.8rem; }
    .ba-modal-img::after { font-size: 1.6rem; }
}

/* Make user images harder to drag/save (extra deterrent) */
.ba-img-side,
.ba-modal-img {
    -webkit-user-drag: none;
}
.ba-img-side img,
.ba-modal-img img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ===== Packages page ===== */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
    border: 2px solid var(--primary);
}
.pkg-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(238, 90, 82, 0.4);
}
.pkg-visual {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e7ecff 0%, #b8c5ff 100%);
    position: relative;
    display: grid;
    place-items: center;
}
.pkg-visual.v1 { background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%); }
.pkg-visual.v2 { background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%); }
.pkg-visual.v3 { background: linear-gradient(135deg, #fff3e0 0%, #ffb74d 100%); }
.pkg-visual.v4 { background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%); }
.pkg-visual.v5 { background: linear-gradient(135deg, #e8f5e9 0%, #81c784 100%); }
.pkg-visual.v6 { background: linear-gradient(135deg, #fff8e1 0%, #ffd54f 100%); }
.pkg-visual.v7 { background: linear-gradient(135deg, #e3f2fd 0%, #64b5f6 100%); }
.pkg-visual.v8 { background: linear-gradient(135deg, #ede7f6 0%, #9575cd 100%); }
.pkg-visual.v9 { background: linear-gradient(135deg, #e1f5fe 0%, #4fc3f7 100%); }
.pkg-visual.v10 { background: linear-gradient(135deg, #fce4ec 0%, #ec407a 100%); }
.pkg-icon {
    font-size: 3rem;
    opacity: 0.45;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pkg-body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pkg-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pkg-chip {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}
.pkg-card h3 {
    font-size: 1.18rem;
    margin: 0 0 10px;
    line-height: 1.35;
    color: var(--dark);
}
.pkg-card p.pkg-desc {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 16px;
}
.pkg-includes {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 18px;
}
.pkg-includes-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.pkg-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.pkg-includes li {
    font-size: 0.8rem;
    color: var(--gray-700);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}
.pkg-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
@media (max-width: 640px) { .pkg-includes ul { grid-template-columns: 1fr; } }
.pkg-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}
.pkg-price-label {
    font-size: 0.78rem;
    color: var(--gray-500);
}
.pkg-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}
.pkg-price small {
    font-size: 0.65em;
    color: var(--gray-500);
    font-weight: 600;
    margin-left: 4px;
}
.pkg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--dark);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s;
}
.pkg-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}
.pkg-cta svg { transition: transform 0.2s; }
.pkg-cta:hover svg { transform: translateX(4px); }

.pkg-intro {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 24px;
    border: 1px solid #e0e6ff;
}
.pkg-intro h2 { font-size: 1.4rem; margin: 0 0 10px; }
.pkg-intro p { color: var(--gray-700); margin: 0; line-height: 1.6; }

.pkg-notes {
    margin-top: 48px;
    padding: 24px 28px;
    background: #fff8e1;
    border-radius: var(--radius-md);
    border-left: 4px solid #fbc02d;
}
.pkg-notes h4 { margin: 0 0 10px; font-size: 1rem; color: #f57f17; }
.pkg-notes ul { margin: 0; padding-left: 20px; }
.pkg-notes li { color: var(--gray-700); font-size: 0.9rem; margin-bottom: 4px; }
