:root {
    --peach: #E8A598;
    --peach-dark: #C9887C;
    --peach-light: #F5EDF0;
    --peach-glow: rgba(232, 165, 152, 0.10);
    --sage: #8FAE8B;
    --sage-dark: #6E9469;
    --sage-light: #EAF0E8;
    --gold: #C9A96E;
    --cream: #F4F1F8;
    --warm-white: #FDFBFF;
    --lavender-light: #EDE8F3;
    --white: #FFFFFF;
    --dark: #2D2427;
    --text: #3A2F33;
    --text-secondary: #6B5E62;
    --text-light: #9B8F93;
    --shadow-sm: 0 2px 12px rgba(58,47,51,0.05);
    --shadow-md: 0 8px 30px rgba(58,47,51,0.08);
    --shadow-lg: 0 16px 50px rgba(58,47,51,0.12);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

body {
    font-family: 'Heebo', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.75;
    font-size: 1.05rem;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}
@media (max-width: 768px) { body { cursor: auto; } }
h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232,165,152,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
}
.cursor-glow.active { opacity: 1; }
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--peach-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
}
.cursor-dot.hover {
    width: 40px;
    height: 40px;
    background: rgba(232,165,152,0.15);
    border: 2px solid var(--peach);
}

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.highlight {
    background-image: linear-gradient(to top, rgba(232,165,152,0.25) 30%, transparent 30%);
    display: inline;
    padding: 0 4px;
}
.section-number {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--peach);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0; transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    background: rgba(244,241,248,0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
    background: rgba(244,241,248,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 30px rgba(58,47,51,0.06);
    padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: 64px; width: auto;
    mix-blend-mode: multiply;
    transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav.scrolled .nav-logo-img { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.88rem; font-weight: 400; color: var(--text-secondary);
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; right: 0;
    width: 0; height: 2px; background: var(--peach);
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative; z-index: 1001;
    padding: 6px;
}
.nav-hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: absolute; right: 6px;
}
.nav-hamburger span:nth-child(1) { top: 9px; width: 24px; }
.nav-hamburger span:nth-child(2) { top: 17px; width: 18px; }
.nav-hamburger span:nth-child(3) { top: 25px; width: 21px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg); top: 17px; width: 24px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg); top: 17px; width: 24px; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--peach); color: var(--white);
    padding: 10px 24px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 500; font-family: 'Rubik', sans-serif;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-cta:hover {
    background: var(--peach-dark);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(232,165,152,0.35);
}
.nav-cta::after { display: none; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--warm-white);
}
.page-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px 0 40px;
    position: relative; overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50% 30% 70% 40% / 60% 40% 50% 60%;
    pointer-events: none;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    background: linear-gradient(135deg, rgba(232,165,152,0.12), rgba(143,174,139,0.08));
    top: -150px; left: -150px;
    animation: morphBlob 18s ease-in-out infinite;
    filter: blur(60px);
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: linear-gradient(225deg, rgba(143,174,139,0.1), rgba(232,165,152,0.06));
    bottom: -100px; right: -100px;
    animation: morphBlob 22s ease-in-out infinite reverse;
    filter: blur(50px);
}
@keyframes morphBlob {
    0%,100% { border-radius: 50% 30% 70% 40% / 60% 40% 50% 60%; transform: rotate(0deg) scale(1); }
    25% { border-radius: 70% 40% 30% 60% / 50% 60% 40% 50%; transform: rotate(5deg) scale(1.05); }
    50% { border-radius: 40% 60% 50% 30% / 30% 50% 60% 70%; transform: rotate(-3deg) scale(0.95); }
    75% { border-radius: 60% 50% 40% 70% / 40% 30% 50% 60%; transform: rotate(4deg) scale(1.02); }
}
.hero-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.82rem; font-weight: 500; color: var(--peach-dark);
    letter-spacing: 0.05em; margin-bottom: 20px;
    opacity: 0; animation: heroReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.hero-title-wrap { overflow: hidden; margin-bottom: 6px; }
.hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700; color: var(--text); line-height: 1.1;
    opacity: 0; animation: heroSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
.hero-role {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem; font-weight: 400; color: var(--text-secondary);
    margin-bottom: 28px;
    opacity: 0; animation: heroReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}
.hero-quote {
    font-size: 1.08rem; color: var(--text-secondary); line-height: 1.9;
    margin-bottom: 36px; max-width: 480px;
    opacity: 0; animation: heroReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}
.hero-actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    opacity: 0; animation: heroReveal 0.9s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(80px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--peach); color: var(--white);
    padding: 16px 34px; border-radius: 50px;
    font-family: 'Rubik', sans-serif; font-size: 1.05rem; font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(232,165,152,0.3);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(232,165,152,0.4);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-secondary); font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-secondary:hover { color: var(--peach-dark); gap: 12px; }

/* Hero Image */
.hero-image-wrap {
    position: relative; display: flex; justify-content: center;
    opacity: 0; animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
.hero-image-frame {
    width: 100%; max-width: 400px;
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--peach-light) 0%, var(--sage-light) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: var(--text-light); font-size: 0.9rem;
}
.hero-image-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-decor {
    position: absolute; width: 100px; height: 100px;
    border: 3px solid var(--peach); border-radius: 50%;
    opacity: 0.12; bottom: -20px; left: -20px;
    animation: morphBlob 15s ease-in-out infinite;
}

/* Marquee */
.hero-marquee {
    margin-top: 60px; position: relative; z-index: 1;
    opacity: 0; animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}
.marquee-wrap {
    overflow: hidden; padding: 16px 0;
    border-top: 1px solid rgba(58,47,51,0.06);
    border-bottom: 1px solid rgba(58,47,51,0.06);
}
.marquee-wrap { direction: ltr; }
.marquee-track {
    display: inline-flex; gap: 40px; white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    font-family: 'Rubik', sans-serif; font-size: 0.9rem;
    font-weight: 400; color: var(--text-light);
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .sep { color: var(--peach); opacity: 0.5; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== QUICK NAV CARDS ===== */
.quick-nav {
    padding: 40px 0 48px;
    background: var(--cream);
}
.quick-nav-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.quick-nav-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
}
.quick-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--peach);
}
.quick-nav-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-nav-card:hover .quick-nav-icon {
    transform: scale(1.1);
}
.quick-nav-icon .ci { width: 22px; height: 22px; }
.quick-nav-icon-1 { background: var(--peach-light); }
.quick-nav-icon-2 { background: var(--sage-light); }
.quick-nav-icon-3 { background: #FDE8D8; }
.quick-nav-icon-4 { background: var(--lavender-light); }
.quick-nav-icon-5 { background: #D8EFF8; }
.quick-nav-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    transition: color 0.3s;
}
.quick-nav-card:hover .quick-nav-label {
    color: var(--peach-dark);
}
@media (max-width: 600px) {
    .quick-nav { padding: 28px 0 32px; }
    .quick-nav-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        justify-content: flex-start;
    }
    .quick-nav-grid::-webkit-scrollbar { display: none; }
    .quick-nav-card { padding: 10px 16px; }
    .quick-nav-icon { width: 36px; height: 36px; }
    .quick-nav-icon .ci { width: 18px; height: 18px; }
    .quick-nav-label { font-size: 0.78rem; }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-text-col { max-width: 500px; }
.about-intro {
    font-size: 1.2rem; line-height: 1.9; color: var(--text-secondary);
    margin-bottom: 28px;
}
.about-story {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.35rem; line-height: 1.8;
    color: var(--text); font-weight: 400; font-style: italic;
    position: relative; padding-right: 28px;
}
.about-story::before {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0;
    width: 4px; border-radius: 4px;
    background: linear-gradient(to bottom, var(--peach), var(--sage));
}
.about-stats {
    display: flex; gap: 20px; margin-top: 32px;
    flex-wrap: wrap;
}
.about-stat {
    flex: 1; min-width: 140px;
    background: var(--cream); padding: 24px 20px;
    border-radius: var(--radius-sm); text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.about-stat-number {
    display: block; font-family: 'Rubik', sans-serif;
    font-size: 2rem; font-weight: 700;
    color: var(--peach); margin-bottom: 6px;
    line-height: 1.1;
}
.about-stat-label {
    display: block; font-size: 0.85rem;
    color: var(--text-light); line-height: 1.5;
    font-family: 'Heebo', sans-serif;
}
.about-certs-col { padding-top: 20px; }
.certs-heading {
    font-size: 1rem; font-weight: 500; color: var(--text-light);
    margin-bottom: 20px; font-family: 'Rubik', sans-serif;
}
.certs-grid { display: flex; flex-direction: column; gap: 14px; }
.cert-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--cream); padding: 18px 24px;
    border-radius: var(--radius-sm); transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cert-item:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.cert-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.cert-icon-1 { background: var(--sage-light); }
.cert-icon-2 { background: var(--peach-light); }
.cert-icon-3 { background: #FDE8D8; }
.cert-icon-4 { background: #E8E4F0; }
.cert-icon-5 { background: #D8EFF8; }
.cert-icon-6 { background: #F0E8F4; }
.cert-name {
    font-family: 'Rubik', sans-serif; font-weight: 500;
    font-size: 0.95rem; color: var(--text);
}

/* ===== HOSPITALS ===== */
.hospitals { background: var(--cream); }
.hospitals-subtitle {
    font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 40px;
}
.hospitals-marquee-wrap {
    overflow: hidden; padding: 24px 0; margin-bottom: 40px;
    direction: ltr;
}
.hospitals-track {
    display: inline-flex; gap: 20px; white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
}
.hospital-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); padding: 14px 28px;
    border-radius: 50px; font-family: 'Rubik', sans-serif;
    font-weight: 500; font-size: 1rem; color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.hospital-chip:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}
.hospital-chip .h-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--peach); flex-shrink: 0;
}
.hospitals-note {
    text-align: center; color: var(--text-light); font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ===== SERVICES TIMELINE ===== */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-subtitle {
    color: var(--text-secondary); font-size: 1.1rem;
    max-width: 450px; margin: 0 auto;
}
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline-progress-track {
    position: absolute; right: 25px; top: 0; bottom: 0;
    width: 3px; background: rgba(143,174,139,0.15); border-radius: 3px;
}
.timeline-progress-fill {
    width: 100%; height: 0; border-radius: 3px;
    background: linear-gradient(to bottom, var(--peach), var(--sage));
    transition: height 0.4s ease;
}
.timeline-item {
    display: flex; gap: 32px; padding-bottom: 16px; position: relative;
}
.timeline-marker {
    display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
    z-index: 2;
}
.timeline-dot {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.timeline-dot::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 2px solid transparent;
    transition: border-color 0.4s;
}
.timeline-dot.active::after { border-color: var(--peach); }
.timeline-dot-1 { background: var(--peach-light); }
.timeline-dot-2 { background: #FDE8D8; }
.timeline-dot-3 { background: var(--sage-light); }
.timeline-dot-4 { background: #D8EFF8; }
.timeline-spacer { width: 3px; flex: 1; min-height: 24px; }
.timeline-card {
    flex: 1; background: var(--cream); padding: 32px;
    border-radius: var(--radius-md); margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    border: 1px solid transparent;
}
.timeline-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(232,165,152,0.15);
    transform: translateX(-6px);
}
.timeline-step {
    font-family: 'Rubik', sans-serif; font-size: 0.78rem;
    font-weight: 500; color: var(--peach-dark);
    letter-spacing: 0.08em; margin-bottom: 8px; display: block;
}
.timeline-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.timeline-card p { color: var(--text-secondary); line-height: 1.9; font-size: 0.98rem; }

.extra-services {
    max-width: 700px; margin: 48px auto 0;
    padding-top: 36px; border-top: 1px solid rgba(143,174,139,0.15);
}
.extra-services h3 {
    font-size: 1.05rem; margin-bottom: 16px; color: var(--text);
}
.extra-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.extra-tag {
    background: var(--peach-light); color: var(--peach-dark);
    padding: 10px 20px; border-radius: 50px;
    font-size: 0.88rem; font-family: 'Rubik', sans-serif; font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.extra-tag:hover {
    background: var(--peach); color: var(--white);
    transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(165deg, var(--peach-light) 0%, var(--cream) 50%, var(--lavender-light) 100%);
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonial-featured {
    background: var(--white); padding: 52px 56px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    margin-bottom: 36px; position: relative; overflow: hidden;
}
.testimonial-featured::before {
    content: '\201F'; position: absolute; top: 10px; right: 30px;
    font-size: 10rem; font-family: 'Frank Ruhl Libre', serif;
    color: var(--peach); opacity: 0.07; line-height: 1;
}
.testimonial-featured-text {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.2rem; line-height: 2.1;
    color: var(--text-secondary); position: relative; z-index: 1;
    margin-bottom: 24px;
}
.testimonial-author {
    font-family: 'Rubik', sans-serif; font-weight: 600;
    color: var(--text); font-size: 1rem;
    display: flex; align-items: center; gap: 12px;
}
.testimonial-author::before {
    content: ''; width: 32px; height: 2px;
    background: var(--peach); border-radius: 2px;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 20px; }
.testimonial-card {
    background: var(--white); padding: 32px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative; border: 1px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,165,152,0.1);
}
.testimonial-card::before {
    content: '\201F'; font-size: 3.5rem;
    font-family: 'Frank Ruhl Libre', serif;
    color: var(--peach); opacity: 0.15; line-height: 1;
    display: block; margin-bottom: -8px;
}
.testimonial-card-text {
    font-size: 0.95rem; line-height: 1.9;
    color: var(--text-secondary); margin-bottom: 16px;
}
.testimonial-card-text.expandable {
    display: -webkit-box; -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; overflow: hidden;
}
.testimonial-card-text.expanded { -webkit-line-clamp: unset; }
.read-more-btn {
    background: none; color: var(--peach-dark);
    font-size: 0.85rem; font-weight: 500; font-family: 'Rubik', sans-serif;
    padding: 0; margin-bottom: 12px;
    transition: color 0.3s;
}
.read-more-btn:hover { color: var(--text); }
.testimonials-more { text-align: center; margin-top: 40px; }

/* ===== INSTAGRAM ===== */
.instagram { background: var(--white); }
.reels-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 700px;
}
.reel-placeholder {
    aspect-ratio: 9/16;
    background: linear-gradient(145deg, var(--peach-light), var(--sage-light));
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: var(--text-light); font-size: 0.85rem;
    border: 2px dashed rgba(155,143,147,0.2);
    transition: all 0.4s;
}
.reel-placeholder:hover {
    border-color: var(--peach);
    transform: translateY(-4px);
}
.reel-placeholder-icon { font-size: 2rem; opacity: 0.35; }
.instagram-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px; color: var(--peach-dark);
    font-family: 'Rubik', sans-serif; font-weight: 500;
    transition: all 0.3s;
}
.instagram-link:hover { color: var(--text); gap: 14px; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-subtitle {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
    max-width: 520px; margin-bottom: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 380px;
    gap: 16px;
}
.gallery-grid img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    border-radius: var(--radius-sm);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gallery-grid img:hover, .gallery-grid video:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-grid video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    border-radius: var(--radius-sm);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gallery-category {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--peach-dark);
    margin-bottom: 16px;
    margin-top: 10px;
}
.gallery-grid .gallery-wide { grid-column: span 2; }
.gallery-grid .gallery-tall { grid-row: span 2; }
.gallery-placeholder {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: center;
    min-height: 200px; border: 2px dashed var(--lavender-light);
    border-radius: var(--radius-md); color: var(--text-light);
    font-family: 'Rubik', sans-serif; font-size: 1.1rem;
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}

/* ===== TIPS CAROUSEL (מהשטח) ===== */
.tips { background: var(--cream); }
.tips-header { margin-bottom: 12px; }
.tips-subtitle {
    color: var(--text-secondary); font-size: 1.05rem;
    max-width: 520px; margin-bottom: 36px;
}
.tips-carousel-wrap {
    position: relative;
    margin: 0 -28px; padding: 0 28px;
}
.tips-carousel-wrap::after {
    content: ''; position: absolute;
    top: 0; left: 0; bottom: 0; width: 60px;
    background: linear-gradient(to right, var(--cream), transparent);
    pointer-events: none; z-index: 2;
}
.tips-carousel {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 12px 0 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tips-carousel::-webkit-scrollbar { display: none; }
.tip-card {
    flex: 0 0 300px;
    background: var(--white); padding: 32px 28px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    border: 1px solid transparent;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.tip-card::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 4px; height: 100%; border-radius: 0 4px 4px 0;
}
.tip-card:nth-child(odd)::before { background: var(--peach); }
.tip-card:nth-child(even)::before { background: var(--sage); }
.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,165,152,0.1);
}
.tip-emoji { margin-bottom: 16px; display: block; line-height: 1; }
.ci { display: inline-block; vertical-align: middle; }
.cert-icon .ci { width: 22px; height: 22px; }
.timeline-dot .ci { width: 26px; height: 26px; }
.tip-emoji .ci { width: 42px; height: 42px; }
.nav-cta .ci { width: 16px; height: 16px; margin-right: 4px; }
.tip-title {
    font-family: 'Rubik', sans-serif; font-size: 1.1rem;
    font-weight: 600; color: var(--text); margin-bottom: 12px;
}
.tip-text {
    font-size: 0.95rem; line-height: 1.85;
    color: var(--text-secondary); margin-bottom: 20px;
}
.tip-text { flex: 1; }
.tip-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Rubik', sans-serif; font-size: 0.85rem;
    font-weight: 500; color: var(--peach-dark); transition: all 0.3s;
    margin-top: auto; padding-top: 16px;
}
.tip-link:hover { color: var(--text); gap: 10px; }
.tips-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 20px;
}
.tips-scroll-hint {
    color: var(--text-light); font-size: 0.85rem;
    display: flex; align-items: center; gap: 8px;
    animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
    0%,100% { opacity: 0.6; } 50% { opacity: 1; }
}
.reels-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 40px; padding-top: 36px;
    border-top: 1px solid rgba(143,174,139,0.15);
}
.reel-card {
    aspect-ratio: 9/16;
    background: linear-gradient(145deg, var(--peach-light), var(--sage-light));
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    color: var(--text-light); font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
}
.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.reel-card .reel-play {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.9); display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.reel-card:hover .reel-play {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.reel-card .reel-play svg { width: 22px; height: 22px; fill: var(--peach-dark); margin-right: -2px; }
.reel-label {
    font-family: 'Rubik', sans-serif; font-size: 0.82rem;
    font-weight: 500; color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-subtitle {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
    max-width: 520px; margin-bottom: 40px;
}
.faq-list {
    max-width: 700px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: var(--cream);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(232,165,152,0.15);
}
.faq-item.active {
    border-color: var(--peach);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px;
    background: none;
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem; font-weight: 500;
    color: var(--text);
    text-align: right;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--peach-dark); }
.faq-icon {
    font-size: 1.4rem; color: var(--peach);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    flex-shrink: 0; margin-right: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1),
                padding 0.5s cubic-bezier(0.16,1,0.3,1);
    padding: 0 28px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}
.faq-answer p {
    font-size: 0.98rem; line-height: 1.9;
    color: var(--text-secondary);
}
@media (max-width: 600px) {
    .faq-question { padding: 18px 22px; font-size: 0.95rem; }
    .faq-answer { padding: 0 22px; }
    .faq-item.active .faq-answer { padding: 0 22px 20px; }
}

/* ===== CONTACT ===== */
.contact {
    background: var(--dark); color: var(--white);
    text-align: center; position: relative; overflow: hidden;
}
.contact-blob {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; filter: blur(120px); opacity: 0.08;
}
.contact-blob-1 { background: var(--peach); top: -200px; right: -200px; }
.contact-blob-2 { background: var(--sage); bottom: -200px; left: -200px; }
.contact .section-number { color: rgba(232,165,152,0.5); }
.contact .section-title { color: var(--white); }
.contact-text {
    font-size: 1.15rem; color: rgba(255,255,255,0.6);
    max-width: 480px; margin: 0 auto 44px; line-height: 1.9;
}
.contact-actions {
    display: flex; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 36px; position: relative; z-index: 1;
}
.btn-whatsapp {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: #25D366; color: var(--white);
    padding: 18px 40px; border-radius: 50px;
    font-family: 'Rubik', sans-serif; font-size: 1.1rem; font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(37,211,102,0.4);
}
.btn-insta-contact {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
    padding: 16px 28px; border-radius: 50px;
    font-family: 'Rubik', sans-serif; font-size: 1rem; font-weight: 500;
    transition: all 0.3s;
}
.btn-insta-contact:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    color: var(--white);
}
.contact-phone {
    color: rgba(255,255,255,0.4); font-size: 0.95rem;
    position: relative; z-index: 1;
}
.contact-phone a {
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}
.contact-phone a:hover { color: var(--white); border-bottom-color: var(--peach); }

/* ===== FOOTER ===== */
.footer {
    background: #1E1A1C; color: rgba(255,255,255,0.35);
    text-align: center; padding: 28px 0; font-size: 0.82rem;
}
.footer-logo {
    height: 40px; width: auto; margin: 0 auto 12px;
    opacity: 0.4; filter: invert(1); mix-blend-mode: screen;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(45,36,39,0.95);
    z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
    max-width: 90vw; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
    max-width: 100%; max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s; z-index: 3;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); color: white; transform: scale(1.1); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s; z-index: 3;
}
.lightbox-nav:hover { background: rgba(232,165,152,0.25); color: white; transform: translateY(-50%) scale(1.1); }
.lightbox-prev { right: 24px; }
.lightbox-next { left: 24px; }
.lightbox-counter {
    position: absolute; bottom: 24px;
    left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.1em;
}
@media (max-width: 600px) {
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-prev { right: 12px; }
    .lightbox-next { left: 12px; }
    .lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; left: 28px;
    width: 60px; height: 60px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    z-index: 99; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12); animation: none;
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0.08); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transition: all 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-up { transform: translateY(50px); }
.reveal-right { transform: translateX(-50px); }
.reveal-left { transform: translateX(50px); }
.reveal-scale { transform: scale(0.85); }
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { order: 1; }
    .hero-image-wrap { order: 2; }
    .hero-image-frame { max-width: 280px; margin: 0 auto; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-actions { justify-content: center; }
    .hero-quote { max-width: 100%; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-text-col { max-width: 100%; }
    .about-stats { gap: 12px; }
    .about-stat { padding: 18px 14px; min-width: 0; }
    .about-stat-number { font-size: 1.6rem; }
    .about-stat-label { font-size: 0.8rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .nav-hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; left: 0;
        width: 100vw; height: 100vh; height: 100dvh;
        background-color: #fdfbff;
        flex-direction: column; justify-content: center; align-items: center;
        gap: 28px; z-index: 1000;
        opacity: 0; pointer-events: none;
        transition: opacity 0.3s ease;
        overflow-y: auto;
    }
    .nav-links.open { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.2rem; }
    .nav-logo-img { height: 46px; }
    .nav.scrolled .nav-logo-img { height: 36px; }
    .nav-cta { padding: 10px 24px; font-size: 0.95rem; }
    .reels-row { gap: 12px; }
    .tip-card { flex: 0 0 260px; }
}
@media (max-width: 600px) {
    .section { padding: 72px 0; }
    .hero { padding: 80px 0 30px; min-height: auto; }
    .hero-role { font-size: 0.95rem; }
    .hero-quote { font-size: 0.95rem; }
    .section-title { font-size: 1.7rem; }
    .timeline-item { gap: 18px; }
    .timeline-dot { width: 44px; height: 44px; font-size: 1.2rem; }
    .timeline-card { padding: 24px 22px; }
    .testimonial-featured { padding: 32px 26px; }
    .testimonial-featured-text { font-size: 1.05rem; }
    .about-story { font-size: 1.15rem; }
    .contact-actions { flex-direction: column; align-items: center; }
    .reels-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ===== BLOG INDEX ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(122,92,72,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(122,92,72,0.12);
}
.blog-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-family: 'Heebo', sans-serif;
    font-size: 0.82rem;
    color: var(--sage);
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 10px;
    line-height: 1.5;
}
.blog-card-excerpt {
    font-family: 'Heebo', sans-serif;
    font-size: 0.92rem;
    color: #6b5e54;
    line-height: 1.7;
    flex: 1;
}
.blog-card-link {
    font-family: 'Rubik', sans-serif;
    font-size: 0.88rem;
    color: var(--peach-dark);
    font-weight: 500;
    margin-top: 16px;
    display: inline-block;
}

/* ===== BLOG ARTICLE ===== */
.blog-article {
    max-width: 740px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 80px;
}
.blog-back {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 0.92rem;
    color: var(--peach-dark);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.blog-back:hover { color: var(--brown); }
.blog-meta {
    font-family: 'Heebo', sans-serif;
    font-size: 0.88rem;
    color: var(--sage);
    margin-bottom: 16px;
}
.blog-article .section-title {
    text-align: right;
    margin-bottom: 40px;
    font-size: 2rem;
}
.blog-article h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown);
    margin: 40px 0 16px;
}
.blog-article h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown);
    margin: 32px 0 12px;
}
.blog-article p {
    font-family: 'Heebo', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4a3f35;
    margin-bottom: 18px;
}
.blog-article ul, .blog-article ol {
    font-family: 'Heebo', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4a3f35;
    margin: 0 20px 18px 0;
    padding: 0;
}
.blog-article li {
    margin-bottom: 8px;
    padding-right: 8px;
}
.blog-article strong {
    color: var(--brown);
    font-weight: 500;
}
.blog-cta {
    background: linear-gradient(135deg, var(--peach-light) 0%, var(--blush) 100%);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    margin-top: 48px;
}
.blog-cta h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    color: var(--brown);
    margin: 0 0 16px;
}
.blog-cta .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-cta .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.blog-hospitals-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.blog-hospital-item {
    background: var(--warm-white);
    border-radius: 14px;
    padding: 20px;
    border-right: 3px solid var(--peach);
}
.blog-hospital-item h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}
.blog-hospital-item p {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-hospitals-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .blog-article { padding-top: 100px; padding-bottom: 60px; }
    .blog-article .section-title { font-size: 1.6rem; }
    .blog-cta { padding: 28px 20px; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--peach-dark); }
