:root {
    --clr-bg: #f7f7f5;
    --clr-white: #ffffff;
    --clr-dark: #1a1a1a;
    --clr-text: #333333;
    --clr-text-muted: #888888;
    --clr-primary: #2d8a6e;
    --clr-primary-light: #d6f0e4;
    --clr-primary-hover: #247558;
    --clr-border: #e0e0e0;
    --ff-heading: 'Plus Jakarta Sans', sans-serif;
    --ff-body: 'DM Sans', sans-serif;
    --fs-hero-heading: clamp(2.4rem, 4.5vw, 3.6rem);
    --fs-stat-number: clamp(1.8rem, 3vw, 2.5rem);
    --max-width: 1400px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100vw; }
body { font-family: var(--ff-body); background: var(--clr-white); color: var(--clr-text); line-height: 1.6; overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--clr-white); transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.logo { font-family: var(--ff-heading); font-size: 1.6rem; font-weight: 700; color: var(--clr-dark); letter-spacing: -0.5px; display: flex; align-items: baseline; }
.logo-plus { color: var(--clr-primary); font-weight: 800; margin-left: 1px; font-size: 1.3em; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 1.1rem; font-weight: 500; color: var(--clr-text); position: relative; transition: var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--clr-primary); border-radius: 2px; transition: var(--transition); }
.nav-link:hover { color: var(--clr-primary); }
.nav-link:hover::after { width: 100%; }
.btn-contact { font-size: 0.925rem; font-weight: 500; color: var(--clr-dark); padding: 10px 24px; border: 1.5px solid var(--clr-dark); border-radius: var(--radius-full); transition: var(--transition); }
.btn-contact:hover { background: var(--clr-dark); color: var(--clr-white); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1100; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--clr-dark); border-radius: 4px; transition: var(--transition); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--clr-white); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition-slow); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-content { display: flex; flex-direction: column; align-items: center; gap: 28px; transform: translateY(20px); transition: var(--transition-slow); }
.mobile-nav-overlay.active .mobile-nav-content { transform: translateY(0); }
.mobile-nav-link { font-family: var(--ff-heading); font-size: 1.5rem; font-weight: 600; color: var(--clr-dark); transition: var(--transition); }
.mobile-nav-link:hover { color: var(--clr-primary); }
.mobile-cta { margin-top: 12px; font-size: 1rem; padding: 14px 36px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: var(--clr-white); position: relative; overflow: hidden; }
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    z-index: 0;
}
.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 32px 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.hero-left { padding: 48px 0 48px 48px; display: flex; flex-direction: column; justify-content: center; }

/* Social Proof */
.social-proof { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.3s ease forwards; }
.avatar-group { display: flex; }
.avatar { width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--clr-bg); overflow: hidden; margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.social-proof-text { display: flex; flex-direction: column; }
.patient-count { font-family: var(--ff-heading); font-weight: 700; font-size: 1rem; color: var(--clr-dark); line-height: 1.2; }
.patient-label { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.3; }

/* Heading */
.hero-heading { font-family: var(--ff-heading); font-size: var(--fs-hero-heading); font-weight: 700; color: var(--clr-dark); line-height: 1.18; letter-spacing: -1.2px; margin-bottom: 32px; opacity: 0; transform: translateY(25px); animation: fadeUp 0.8s 0.5s ease forwards; }

/* CTA */
.btn-appointment { display: inline-flex; align-items: center; gap: 8px; background: var(--clr-primary-light); color: var(--clr-dark); font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600; padding: 16px 32px; border-radius: var(--radius-md); transition: var(--transition); width: fit-content; margin-bottom: 48px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.7s ease forwards; position: relative; overflow: hidden; }
.btn-appointment::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.6s; }
.btn-appointment:hover { background: var(--clr-primary); color: var(--clr-white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,138,110,0.25); }
.btn-appointment:hover::before { left: 100%; }

/* Stats */
.hero-stats { display: flex; align-items: flex-start; gap: 40px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.9s ease forwards; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: var(--ff-heading); font-size: var(--fs-stat-number); font-weight: 700; color: var(--clr-dark); line-height: 1; letter-spacing: -0.5px; }
.stat-stars { display: flex; gap: 2px; margin-top: 4px; }
.stat-label { font-size: 0.82rem; color: var(--clr-text-muted); max-width: 160px; line-height: 1.4; }
.stat-divider { width: 1px; height: 56px; background: var(--clr-border); align-self: center; }

/* Hero Right */
.hero-right { position: relative; display: flex; align-items: flex-end; justify-content: center; opacity: 0; transform: translateX(40px); animation: slideLeft 0.9s 0.4s ease forwards; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 520px; overflow: hidden; }
.hero-image { width: 100%; height: auto; object-fit: cover; object-position: top center; display: block; }
.explore-btn { position: absolute; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: var(--clr-primary); transition: var(--transition); }
.explore-btn svg { transition: var(--transition); }
.explore-btn:hover { color: var(--clr-primary-hover); }
.explore-btn:hover svg { transform: translateY(3px); }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { to { opacity: 1; transform: translateX(0); } }

/* TABLET */
@media (max-width: 992px) {
    .navbar-inner { padding: 16px 24px; }
    .nav-links { display: none; }
    .btn-contact:not(.mobile-cta) { display: none; }
    .hamburger { display: flex; }
    .hero-container { grid-template-columns: 1fr; padding: 24px 24px 0; border-radius: var(--radius-lg); }
    .hero-left { padding: 40px 20px 0; }
    .hero-heading br { display: none; }
    .hero-right { justify-content: center; }
    .hero-image-wrapper { max-width: 400px; }
}

/* MOBILE */
@media (max-width: 640px) {
    :root { --fs-hero-heading: 2rem; --fs-stat-number: 1.6rem; }
    .navbar-inner { padding: 14px 18px; }
    .hero { padding-top: 68px; min-height: auto; }
    .hero-container { margin: 0 12px; padding: 16px 16px 0; border-radius: var(--radius-lg); gap: 24px; }
    .hero-left { padding: 24px 8px 0; }
    .social-proof { margin-bottom: 20px; }
    .avatar { width: 34px; height: 34px; margin-left: -8px; }
    .patient-count { font-size: 0.9rem; }
    .hero-heading { margin-bottom: 24px; letter-spacing: -0.8px; }
    .btn-appointment { padding: 14px 26px; font-size: 0.9rem; margin-bottom: 32px; }
    .hero-stats { gap: 24px; }
    .stat-divider { height: 44px; }
    .stat-label { font-size: 0.75rem; max-width: 130px; }
    .hero-image-wrapper { max-width: 320px; }
    .explore-btn { bottom: 16px; right: 16px; }
    .mobile-nav-link { font-size: 1.25rem; }
}

@media (max-width: 380px) {
    :root { --fs-hero-heading: 1.7rem; --fs-stat-number: 1.4rem; }
    .hero-container { margin: 0 8px; padding: 12px 12px 0; }
    .hero-left { padding: 16px 4px 0; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 36px; }
}

/* ============================================
   HEALTH FIRST SECTION
============================================ */
.health-first {
    padding: 100px 32px;
    background: var(--clr-white);
}

.health-first-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.health-header {
    text-align: center;
    margin-bottom: 40px;
}

.health-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 5vw, 5rem);
    font-weight: 700;
    color: #f1f1f1; 
    letter-spacing: 2px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
}

.health-icon-wrapper {
    width: 110px;
    height: 64px;
    border-radius: 40px;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}

.health-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-desc-container {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.health-description {
    font-size: 1.35rem;
    color: #666;
    line-height: 1.4;
    max-width: 900px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.btn-about {
    /* background: var(--clr-primary-light); */
    background: #003882;
    /* color: var(--clr-dark); */
    color: #fff;
    padding: 12px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-about:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* Stats Cards Grid */
.health-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.health-card {
    /* padding: 48px 32px; */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    transition: var(--transition-slow);
}

.health-card:hover {
    transform: translateY(-12px);
}

/* .card-green { background-color: #d6f0e4; }
.card-gray { background-color: #e8e9eb; }
.card-beige { background-color: #fdf5e6; }
.card-blue { background-color: #e1f0f7; } */

.card-number {
    font-family: var(--ff-heading);
    font-size: 5.5rem;
    font-weight: 600;
    color: var(--clr-dark);
    letter-spacing: -3px;
    line-height: 1;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.card-text {
    font-size: 1.05rem;
    color: var(--clr-text);
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .health-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .health-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .health-title {
        font-size: 3rem;
        gap: 12px;
    }
    .health-icon-wrapper {
        width: 80px;
        height: 48px;
    }
    .health-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .health-cards-grid {
        grid-template-columns: 1fr;
    }
    .health-first {
        padding: 80px 24px;
    }
    .health-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .health-description br {
        display: none;
    }
    .card-number {
        font-size: 4.5rem;
    }
    .health-card {
        min-height: 400px;
        padding: 40px 24px;
    }
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: 60px 32px;
    background: var(--clr-white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 40px;
}

.services-header-left {
    max-width: 800px;
}

.services-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.btn-all-services {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 24px;
    border: 1px solid #ddd;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--clr-dark);
}

.arrow-circle {
    width: 44px;
    height: 44px;
    background: var(--clr-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-dark);
    transition: var(--transition);
}

.btn-all-services:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
}

.btn-all-services:hover .arrow-circle {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: rotate(45deg);
}

/* Slider Track */
.services-slider-container {
    margin-bottom: 32px;
    padding: 10px 0;
}

.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    width: calc(33.333% - 16px); /* Fix width for 3 in a row */
    flex-shrink: 0;
    background: #fdfdfd;
    border-radius: 44px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1; /* Reduced height for desktop */
    border-radius: 32px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-slow);
}

/* Glassmorphic Tags - Matching screenshot placement */
.card-tags {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 2;
}

.card-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

/* Service Name Overlap - Matching screenshot */
.service-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 28px 24px;
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-dark);
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 5;
    margin: 0;
}

/* Navigation Buttons - Matching screenshot */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: transparent;
    transition: var(--transition);
}

.nav-btn:hover {
    border-color: var(--clr-dark);
    color: var(--clr-dark);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .services-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .service-card {
        width: 100%;
    }
    .services {
        padding: 40px 20px;
        min-height: auto;
    }
    .service-image-wrapper {
        border-radius: 30px;
        aspect-ratio: 1 / 1; /* Square for mobile to save space */
    }
}

/* ============================================
   NEW TESTIMONIALS (TEAMWAY STYLE)
============================================ */
.new-testimonials {
    padding: 120px 32px;
    background: #fdfdfd;
}

.new-testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.new-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.nt-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 500px;
}

.nt-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.nt-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.nt-premium-btn {
    background: var(--clr-dark);
    color: #fff;
    padding: 12px 12px 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nt-premium-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.nt-btn-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--clr-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-trust-group {
    display: flex;
    align-items: center;
}

.nt-face-stack {
    display: flex;
    align-items: center;
}

.nt-face-stack img, .nt-face-more {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #f0f0f0;
}

.nt-face-stack img:first-child {
    margin-left: 0;
}

.nt-face-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbe5d8;
    color: var(--clr-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid #fff;
}

/* Masonry Grid */
.nt-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px; /* Increased for better content fitting */
    gap: 20px;
}

.nt-card {
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.nt-card:hover {
    transform: translateY(-10px);
}

.nt-card-tall {
    grid-row: span 2;
}

.nt-card-img {
    padding: 0;
}

.nt-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.play-icon:hover {
    transform: scale(1.1);
}

.nt-card-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.nt-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.nt-status {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    background: #fff;
    color: #4CAF50;
    border-radius: 50%;
    padding: 1px;
}

/* Colors from screenshot */
.nt-card-purple {
    background: #e6e0f8;
    color: var(--clr-dark);
}

.nt-card-green {
    background: #e2f4ea;
    color: var(--clr-dark);
}

.nt-card-orange {
    background: #fbe5d8;
    color: var(--clr-dark);
    grid-row: span 2;
}

.nt-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.nt-card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--clr-dark);
}

/* ============================================
   BLOG SECTION
============================================ */
.blog {
    padding: 100px 32px;
    background: var(--clr-white);
}

.blog-container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.03);
}

.blog-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

.blog-visual {
    width: 100%;
}

.blog-portrait {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    object-fit: cover;
}

.blog-info {
    padding-top: 40px;
}

.blog-title {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.1;
    margin-bottom: 32px;
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align buttons with bottom of desc */
    margin-bottom: 60px;
    gap: 40px;
}

.blog-desc {
    color: #666;
    line-height: 1.6;
    max-width: 460px;
    margin: 0;
    font-size: 0.95rem;
}

.blog-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Blog Cards Slider */
.blog-cards-wrapper {
    position: relative;
    margin-top: -60px;
    margin-left: -320px;
    z-index: 10;
    overflow: hidden;
    padding: 30px; 
}

.blog-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card {
    background: #fff;
    border-radius: 40px;
    padding: 36px;
    width: 440px;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.blog-tag {
    background: #f0f0f0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-dark);
    width: fit-content; /* Ensure background only covers the text */
}

/* Color Variants */
.blog-tag.purple { background: #e6e0f8; }
.blog-tag.green { background: #e2f4ea; }
.blog-tag.orange { background: #fbe5d8; }

.blog-date {
    font-size: 0.85rem;
    color: #888;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-top: 15px;
    line-height: 1.3;
}

.blog-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 15px 0 24px;
}

.blog-footer {
    display: flex;
    justify-content: flex-start;
}

.read-more {
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.read-more:hover {
    border-bottom-color: var(--clr-primary);
}

/* RESPONSIVE FOR NEW SECTIONS */
@media (max-width: 1200px) {
    .new-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .blog-cards-wrapper {
        margin-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    .nt-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nt-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .nt-card-tall, .nt-card-orange {
        grid-row: span 1;
    }
    .blog-card {
        width: 100%;
    }
}

/* ============================================
   HEALTH PROMO SECTION (MINT BANNER)
============================================ */
.health-promo {
    padding: 60px 32px 120px;
    background: #fff;
}

.health-promo-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hp-banner {
    background: #d1eadb; /* Light Mint Green */
    border-radius: 60px;
    padding: 100px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center content vertically */
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hp-content {
    flex: 1;
    z-index: 5;
}

.hp-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; /* Bolder for visibility */
    color: #fff;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hp-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hp-pill-img {
    width: 120px;
    height: 60px;
    border-radius: 100px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.5);
    margin-right: 10px;
    vertical-align: middle;
}

.hp-pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-badge {
    background: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--clr-dark);
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hp-badge-icon {
    width: 32px;
    height: 32px;
    background: #e8f5ed;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inset Promo Card */
.hp-promo-card {
    background: #fff;
    border-radius: 40px;
    padding: 24px;
    display: flex;
    gap: 24px;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hp-card-img {
    width: 220px;
    height: 160px;
    border-radius: 24px;
    overflow: hidden;
}

.hp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hp-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-dark);
}

.hp-card-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

.hp-card-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

.hp-card-btn {
    width: fit-content;
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 100px;
    text-decoration: none;
    color: var(--clr-dark);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.hp-card-btn:hover {
    background: var(--clr-dark);
    color: #fff;
    border-color: var(--clr-dark);
}

/* Portrait */
.hp-portrait {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    z-index: 2;
}

.hp-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hp-banner {
        padding: 60px 50px;
    }
}

@media (max-width: 1024px) {
    .hp-banner {
        padding: 60px 40px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }
    .hp-portrait {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }
    .hp-title {
        font-size: 3rem;
    }
    .hp-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hp-promo-card {
        flex-direction: column;
    }
    .hp-card-img {
        width: 100%;
    }
}
