body {
    background: white;
    font-family: 'Poppins', sans-serif;
    min-height: 200px;
}

/* ── Navbar Wrapper ── */
.navbar-wrapper {
    position: fixed;
    /* ✅ change */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 12px 0;
    background: transparent;
}

/* ── Navbar ── */
.custom-navbar {
    background: #fcfffc;
    border-radius: 60px;
    padding: 0px 25px;
    /* ← reduce padding to 0 top/bottom */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 20px rgba(30, 80, 50, 0.10);
    transition: 0.3s;
    overflow: hidden;
    /* ← clips the logo so navbar stays same height */
    height: 70px;
    /* ← fix the navbar height explicitly */
}

/* Shrink effect on scroll */
.navbar-scrolled {
    box-shadow: 0 6px 28px rgba(30, 80, 50, 0.18);
    transform: scale(0.98);
    background: #ffffffee;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Logo image — black bg trimmed with mix-blend-mode */
.logo img {
    width: 140px;
    height: 70px;
    object-fit: contain;
    display: block;
    /* removes the black background from the PNG */
    mix-blend-mode: multiply;
}

/* ── Nav Links ── */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2d5a3d;
    /* dark green from logo */
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #c0112f;
    /* crimson red from logo */
}

.nav-links a.active {
    color: #c0112f;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #c0112f;
    border-radius: 2px;
}

/* ── Hamburger ── */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2d5a3d;
    line-height: 1;
}

/* ── Offcanvas ── */
.offcanvas {
    background: #fff;
    max-width: 280px;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas-header .logo img {
    width: 130px;
    height: 65px;
    mix-blend-mode: multiply;
}

.offcanvas-body {
    padding: 20px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #2d5a3d;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #c0112f;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}



/* ── Footer ── */
.site-footer {
    background: #e2efdd;
    color: #e8f5ee;
    padding: 50px 0 0;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

/* ── Brand / Logo column ── */
.footer-brand .footer-logo {
    width: 180px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
    margin-top: 0;

    /* mix-blend-mode: screen; */
    object-position: left top;
    /* ← pushes image to top-left, removes white space */
}

.footer-brand p {
    color: #1b402f;
    line-height: 1.75;
    font-size: 14px;
}

/* ── Column headings ── */
.footer-col h4 {
    color: #0e2219;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

/* ── Menu links ── */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #1b402f;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #1a3a28;


}

/* ── Contact list ── */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #a8d4b8;
    font-size: 14px;
}

.contact-list li i {
    color: #1b402f;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Social icons ── */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b402f;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b402f;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WhatsApp */
.social-icons a:hover .bi-whatsapp {
    color: #ffffff;
}

.social-icons a:hover:has(.bi-whatsapp) {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Instagram */
.social-icons a:hover:has(.bi-instagram) {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border: none;
}

/* Facebook */
.social-icons a:hover:has(.bi-facebook) {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

/* YouTube */
.social-icons a:hover:has(.bi-youtube) {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
}


/* ── Bottom bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #1b402f;
    font-size: 14px;
}

/* ── Footer Responsive ── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ── Hero Section ── */
.hero-section {
    background: #e8f5ee;
    overflow: hidden;
    position: relative;
    padding-top: 90px;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(192, 17, 47, 0.05);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(27, 64, 47, 0.06);
    bottom: -80px;
    left: -60px;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 40px 0;
    gap: 40px; 
}

/* ── Image side ── */
.hero-image {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    opacity: 0;
    transform: translateX(-50px);
    animation: heroSlideLeft 0.9s ease forwards 0.2s;
}

@keyframes heroSlideLeft {
    to { opacity: 1; transform: translateX(0); }
}

.hero-img-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #c8e6d5;
    z-index: 0;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed #1b402f;
    z-index: 1;
    pointer-events: none;
}

.hero-ring-1 {
    width: 400px;
    height: 400px;
    opacity: 0.18;
    animation: spinHero 14s linear infinite;
}

.hero-ring-2 {
    width: 430px;
    height: 430px;
    border-color: #c0112f;
    opacity: 0.10;
    animation: spinHero 20s linear infinite reverse;
}

@keyframes spinHero {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 80%;
    max-height: 500px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(27,64,47,0.15));
}

/* ── Floating badges ── */
.hero-float-badge {
    position: absolute;
    z-index: 4;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(27,64,47,0.14);
    min-width: 190px;
}

.hero-float-badge i {
    font-size: 24px;
    color: #c0112f;
    flex-shrink: 0;
}

.hero-float-badge span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a2e3a;
    line-height: 1.2;
}

.hero-float-badge small {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.badge-tl {
    top: 40px;
    left: -10px;
    animation: floatHero 3.5s ease-in-out infinite;
}

.badge-br {
    bottom: 60px;
    right: -10px;
    animation: floatHero 4s ease-in-out infinite 0.8s;
}

@keyframes floatHero {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ── Content side ── */
.hero-content {
    flex: 1;
    padding: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: heroSlideRight 0.9s ease forwards 0.4s;
}

@keyframes heroSlideRight {
    to { opacity: 1; transform: translateX(0); }
}

.hero-tag-row {
    margin-bottom: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #c8e6d5;
    box-shadow: 0 2px 10px rgba(27,64,47,0.08);
}

.hero-tag i {
    color: #c0112f;
    font-size: 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1a2e3a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-highlight {
    color: #c0112f;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #c0112f;
    border-radius: 2px;
    animation: underlineGrow 1s ease forwards 1.2s;
}

@keyframes underlineGrow {
    to { width: 100%; }
}

.hero-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-content p strong {
    color: #1b402f;
    font-weight: 600;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #1b402f;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid #c8e6d5;
}

.hero-pill i {
    color: #c0112f;
    font-size: 13px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn.primary {
    background: #1b402f;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #c0112f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192,17,47,0.3);
}

.hero-btn.secondary {
    background: #fff;
    color: #1b402f;
    border: 1.5px solid #c8e6d5;
}

.hero-btn.secondary:hover {
    background: #1b402f;
    color: #fff;
    border-color: #1b402f;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    border: 1px solid #e0ede5;
    max-width: 420px;
}

.hero-stat {
    flex: 1;
    text-align: center;
}

.hero-stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #c0112f;
    margin: 0 0 4px;
    line-height: 1;
}

.hero-stat p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #e0ede5;
    flex-shrink: 0;
}

/* ==============================
   MOBILE FIX
================================ */
@media (max-width: 992px) {

    .hero-section {
        min-height: auto;
        padding-top: 94px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0 40px;
        text-align: center;
    }

    /* ── Image on top, controlled size ── */
    .hero-image {
        flex: none;
        width: 100%;
        min-height: 260px;    
        order: 1;
        animation: heroSlideLeft 0.9s ease forwards 0.2s;
    }

    .hero-img-circle {
        width: 240px;
        height: 240px;
    }

    .hero-ring-1 { width: 270px; height: 270px; }
    .hero-ring-2 { width: 310px; height: 310px; }

    .hero-image img {
        width: 50%;             /* ← smaller image on mobile */
        max-height: 260px;
    }

    /* ── Badges: reposition to not overlap image ── */
    .hero-float-badge {
        padding: 8px 12px;
        min-width: unset;
        border-radius: 12px;
    }

    .hero-float-badge i {
        font-size: 18px;
    }

    .hero-float-badge span {
        font-size: 11px;
    }

    .hero-float-badge small {
        font-size: 10px;
    }

    /* badge-tl: top left corner of image box */
    .badge-tl {
        top: 10px;
        left: 10px;
        animation: floatHero 3.5s ease-in-out infinite;
    }

    /* badge-br: bottom right, above the fold */
    .badge-br {
        bottom: 10px;
        right: 10px;
        animation: floatHero 4s ease-in-out infinite 0.8s;
    }

    /* ── Content below image ── */
    .hero-content {
        order: 2;
        width: 100%;
        padding: 0 16px;
        animation: heroSlideRight 0.9s ease forwards 0.4s;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 14px;
    }

    .hero-tag-row {
        display: flex;
        justify-content: center;
    }

    .hero-pills {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 90px;
    }

    .hero-image {
        min-height: 260px;
    }

    .hero-img-circle {
        width: 190px;
        height: 190px;
    }

    .hero-ring-1 { width: 215px; height: 215px; }
    .hero-ring-2 { width: 250px; height: 250px; }

    .hero-image img {
        width: 52%;
        max-height: 260px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-stat h4 {
        font-size: 20px;
    }

    .hero-btn {
        padding: 11px 18px;
        font-size: 13px;
    }

    .hero-pill {
        font-size: 11px;
        padding: 6px 10px;
    }
}
/* ==============================
   WHY CHOOSE SECTION — Redesigned
================================ */
.why-section {
    padding: 50px 0;
    background: #e8f5ee;
    overflow: hidden;
    position: relative;
}

/* Subtle background pattern */
.why-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #e8f5ee;
    opacity: 0.5;
    top: -200px;
    right: -200px;
    z-index: 0;
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

/* ── Heading ── */
.why-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.why-tag {
    display: inline-block;
    background: #1b402f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.why-heading-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.why-heading-wrap h2 span {
    color: #c0112f;
}

.why-heading-wrap p {
    font-size: 15px;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Main 3-column grid ── */
.why-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 30px;
    align-items: center;
}

/* ── Left: Feature cards ── */
.why-features-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Feature card */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f6fbf7;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #e0ede5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;

    opacity: 0;
    transform: translateX(-40px);
}

.why-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.why-card:hover {
    background: #1b402f;
    border-color: #1b402f;
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(27, 64, 47, 0.15);
}

/* Icon */
.why-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1b402f;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.why-card:hover .why-card-icon {
    background: #c0112f;
    color: #fff;
}

/* Body */
.why-card-body h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e3a;
    margin-bottom: 4px;
    transition: color 0.35s;
}

.why-card:hover .why-card-body h5 {
    color: #fff;
}

.why-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0;
    transition: color 0.35s;
}

.why-card:hover .why-card-body p {
    color: #a8d4b8;
}

/* Background number */
.why-card-num {
    position: absolute;
    right: 12px;
    bottom: -8px;
    font-size: 52px;
    font-weight: 700;
    color: #1b402f;
    opacity: 0.05;
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    transition: color 0.35s;
}

.why-card:hover .why-card-num {
    color: #fff;
    opacity: 0.08;
}

/* ── Center: Image ── */
.why-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-center-col.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-img-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rings */
.why-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed #1b402f;
    opacity: 0.2;
}

.why-ring-1 {
    width: 260px;
    height: 260px;
    animation: spinWhy 12s linear infinite;
}

.why-ring-2 {
    width: 310px;
    height: 310px;
    border-color: #c0112f;
    opacity: 0.12;
    animation: spinWhy 18s linear infinite reverse;
}

@keyframes spinWhy {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Circle image */
.why-img-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #e8f5ee;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(27,64,47,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.why-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Floating badges */
.why-badge {
    position: absolute;
    background: #fff;
    border-radius: 30px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #1a2e3a;
    box-shadow: 0 4px 16px rgba(27,64,47,0.14);
    z-index: 3;
    white-space: nowrap;
}

.why-badge i {
    color: #c0112f;
    font-size: 14px;
}

.badge-top    { top: -10px;   left: 50%; transform: translateX(-50%); animation: floatBadge 3s ease-in-out infinite; }
.badge-bottom { bottom: -10px; left: 50%; transform: translateX(-50%); animation: floatBadge 3.5s ease-in-out infinite 0.5s; }
.badge-left   { left: -20px;  top: 50%;  transform: translateY(-50%); animation: floatBadge 4s ease-in-out infinite 1s; }
.badge-right  { right: -20px; top: 50%;  transform: translateY(-50%); animation: floatBadge 3.2s ease-in-out infinite 1.5s; }

@keyframes floatBadge {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%     { transform: translateX(-50%) translateY(-6px); }
}

.badge-left, .badge-right {
    animation-name: floatBadgeSide;
}

@keyframes floatBadgeSide {
    0%,100% { transform: translateY(-50%); }
    50%     { transform: translateY(calc(-50% - 6px)); }
}

/* ── Right: Stats ── */
.why-stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stat card */
.why-stat-card {
    background: #f6fbf7;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #e0ede5;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s ease;
    cursor: pointer;

    opacity: 0;
    transform: translateX(40px);
}

.why-stat-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.why-stat-card:hover {
    background: #1b402f;
    border-color: #1b402f;
    transform: translateX(-6px);
    box-shadow: 0 10px 30px rgba(27,64,47,0.15);
}

.why-stat-card.red:hover {
    background: #c0112f;
    border-color: #c0112f;
}

.why-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1b402f;
    flex-shrink: 0;
    transition: all 0.35s;
}

.why-stat-card.red .why-stat-icon {
    background: #fdeaec;
    color: #c0112f;
}

.why-stat-card:hover .why-stat-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.why-stat-card h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 28px;
    font-weight: 700;
    color: #1a2e3a;
    margin: 0;
    line-height: 1;
    transition: color 0.35s;
}

.why-stat-card:hover h3 {
    color: #fff;
}

.why-stat-card p {
    font-size: 12px;
    color: #666;
    margin: 3px 0 0;
    transition: color 0.35s;
}

.why-stat-card:hover p {
    color: #a8d4b8;
}

.why-stat-card.red:hover p {
    color: rgba(255,255,255,0.8);
}

/* Doctor card */
.why-doctor-card {
    background: #1b402f;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.35s ease;
}

.why-doctor-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.why-doctor-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #a8d4b8;
    flex-shrink: 0;
}

.why-doctor-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
}

.why-doctor-card span {
    font-size: 11px;
    color: #c0112f;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.why-doctor-card p {
    font-size: 11px;
    color: #a8d4b8;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .why-main-grid {
        grid-template-columns: 1fr 280px 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-center-col {
        order: -1;
    }

    .why-heading-wrap h2 {
        font-size: 32px;
    }

    .why-card {
        transform: translateX(0);
        opacity: 0;
        transform: translateY(20px);
    }

    .why-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .why-stat-card {
        transform: translateY(20px);
    }

    .why-stat-card.animate-in {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 60px 0;
    }

    .why-heading-wrap h2 {
        font-size: 26px;
    }

    .why-img-wrap {
        width: 240px;
        height: 240px;
    }

    .why-img-circle {
        width: 180px;
        height: 180px;
    }

    .why-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ==============================
   ABOUT SECTION
================================ */
.about-section {
    padding: 40px 0;
    background: #fff;
}
.about-sectionn {
    padding: 100px 0;
    background: #fff;
    padding-bottom: 30px;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ── Left: Image ── */
.about-image {
    flex: 0 0 42%;
}

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    display: block;
}

/* Green shape behind image */
.about-img-wrap::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #e8f5ee;
    border-radius: 24px;
    z-index: -1;
}

/* Experience Badge */
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -24px;
    background: #1b402f;
    color: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(27, 64, 47, 0.25);
}

.about-badge h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1;
}

.about-badge p {
    font-size: 12px;
    margin: 6px 0 0;
    color: #a8d4b8;
    line-height: 1.3;
}

/* ── Right: Content ── */
.about-content {
    flex: 1;
}

/* Tag pill */
.about-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-content h2 span {
    color: #c0112f;
}

.about-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: #2d8a6e;
    margin-bottom: 24px;
}

.about-mission {
    font-size: 15px;
    color: #1b402f;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 16px;
    border-left: 3px solid #c0112f;
    padding-left: 16px;
}

.about-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── Stats Row ── */
.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: #f6fbf7;
    border-radius: 16px;
    padding: 24px 30px;
}

.about-stat {
    flex: 1;
    text-align: center;
}

.about-stat h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1b402f;
    margin: 0 0 4px;
    line-height: 1;
}

.about-stat p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: #c8e6d4;
    flex-shrink: 0;
}

/* ── CTA Button ── */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b402f;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.about-btn:hover {
    background: #c0112f;
    color: #fff;
    transform: translateX(3px);
}

.about-btn i {
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-inner {
        flex-direction: column;
        gap: 50px;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .about-img-wrap img {
        height: 420px;
    }

    .about-badge {
        right: 16px;
        bottom: 16px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-stats {
        padding: 20px;
    }

    .about-stat h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-img-wrap img {
        height: 340px;
    }

    .about-img-wrap::before {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* ==============================
   STATS SECTION
================================ */
.stats-section {
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Stats intro text */
.stats-section .stats-intro {
    text-align: center;
    font-size: 15px;
    color: #1b402f;
    line-height: 1.75;
    max-width: 700px;        /* ← limits width so it doesn't stretch full screen */
    margin: 0 auto 40px;     /* ← centers it and adds space below */
    padding: 0 20px;    
    font-weight: 500;     /* ← left/right padding */
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px 10px;
}

/* Divider between items */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ddd;
}

/* Big number */
.stat-number {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(30px, 7vw, 70px);   /* ← auto resizes with screen */
    font-weight: 400;
    color: #c0112f;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -2px;
}

/* Label */
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}
/* ==============================
   NUTRITION SECTION
================================ */
.nutrition-section {
    padding: 30px 0;
    background: #e8f5ee;
    overflow: hidden;
}

.nutrition-inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ── Left Image ── */
.nutrition-image {
    flex: 0 0 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

/* Green circle background */
.nutrition-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #e8f5ee;
    border-radius: 50%;
    z-index: 0;
}

/* Doctor image — smaller */
.nutrition-image img {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 450px;
    object-fit: contain;
    display: block;
}

/* ── Rotating Rings ── */
.ring {
    position: absolute;
    border-radius: 80%;
    border: 1.5px dashed #1b402f;
    z-index: 1;
}

.ring-1 {
    width: 420px;
    height: 420px;
    opacity: 0.25;
    animation: spinRing 10s linear infinite;
}

.ring-2 {
    width: 470px;
    height: 470px;
    border-color: #c0112f;
    opacity: 0.15;
    animation: spinRing 16s linear infinite reverse;
}

.ring-3 {
    width: 520px;
    height: 520px;
    opacity: 0.10;
    animation: spinRing 22s linear infinite;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Floating Icons ── */
.float-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e8f5ee;
    box-shadow: 0 4px 14px rgba(27, 64, 47, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 3;
}

.icon-1 { top: 30px;  left: 30px;  color: #c0112f; animation: floatBob 3s ease-in-out infinite; }
.icon-2 { top: 30px;  right: 30px; color: #1b8fd4; animation: floatBob 3.5s ease-in-out infinite 0.5s; }
.icon-3 { bottom: 60px; left: 20px;  color: #c0112f; animation: floatBob 4s ease-in-out infinite 1s; }
.icon-4 { bottom: 60px; right: 20px; color: #e8a020; animation: floatBob 3.2s ease-in-out infinite 1.5s; }

@keyframes floatBob {
    0%,100% { transform: translateY(0px);   }
    50%      { transform: translateY(-10px); }
}

/* ── Right Content ── */
.nutrition-content {
    flex: 1;
}

.nutrition-tag {
    display: inline-block;
    background: #0f452d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.nutrition-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.nutrition-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── Checklist ── */
.nutrition-checklist {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.nutrition-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nutrition-checklist ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2e3a;
}

.nutrition-checklist ul li i {
    color: #c0112f;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── CTA Button ── */
.nutrition-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b402f;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.nutrition-btn:hover {
    background: #c0112f;
    color: #fff;
    transform: translateX(3px);
}

.nutrition-btn i {
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .nutrition-inner {
        flex-direction: column;
        gap: 40px;
    }

    .nutrition-image {
        flex: none;
        width: 100%;
        height: 360px;
    }

    .nutrition-circle {
        width: 240px;
        height: 240px;
    }

    .nutrition-image img {
        width: 200px;
        height: 260px;
    }

    .ring-1 { width: 260px; height: 260px; }
    .ring-2 { width: 300px; height: 300px; }
    .ring-3 { width: 340px; height: 340px; }

    .nutrition-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .nutrition-section {
        padding: 60px 0;
    }

    .nutrition-image {
        height: 300px;
    }

    .nutrition-circle {
        width: 200px;
        height: 200px;
    }

    .nutrition-image img {
        width: 170px;
        height: 220px;
    }

    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 255px; height: 255px; }
    .ring-3 { width: 290px; height: 290px; }

    .icon-1 { top: 10px;  left: 10px;  }
    .icon-2 { top: 10px;  right: 10px; }
    .icon-3 { bottom: 20px; left: 10px; }
    .icon-4 { bottom: 20px; right: 10px; }

    .nutrition-content h2 {
        font-size: 26px;
    }

    .nutrition-checklist {
        flex-direction: column;
        gap: 0;
    }

    .nutrition-checklist ul {
        gap: 12px;
    }

    .nutrition-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ==============================
   SERVICES SECTION
================================ */
.services-section {
    padding: 50px 0;
    background: #f6fbf7;
    overflow: hidden;
}

/* ── Heading ── */
.services-heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.services-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 12px;
}

.services-heading h2 span {
    color: #c0112f;
}

.services-heading p {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Swiper ── */
.servicesSwiper {
    padding: 20px 10px 60px !important;
}

/* Equal height slides */
.servicesSwiper .swiper-wrapper {
    align-items: stretch;
}

.servicesSwiper .swiper-slide {
    height: auto;
}

/* ── Service Card ── */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    height: 300px;           /* ← fixed equal height */
    border: 1px solid #e8f0eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(27, 64, 47, 0.12);
    border-color: #1b402f;
}

/* Icon */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1b402f;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: #1b402f;
    color: #fff;
}

/* Title */
.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2e3a;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Description — clamp to 3 lines */
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1b402f;
    text-decoration: none;
    margin-top: auto;
    flex-shrink: 0;
    transition: color 0.2s, gap 0.2s;
}

.service-link:hover {
    color: #c0112f;
    gap: 10px;
}

/* ── Pagination ── */
.services-pagination {
    bottom: 10px !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #1b402f;
    opacity: 0.3;
}

.services-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ── Navigation ── */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.services-prev,
.services-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1b402f;
    cursor: pointer;
    transition: all 0.2s;
    position: static !important;
    margin: 0 !important;
}

.services-prev:hover,
.services-next:hover {
    background: #1b402f;
    color: #fff;
}

.services-prev::after,
.services-next::after {
    display: none !important;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .services-heading h2 {
        font-size: 32px;
    }

    .service-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .services-heading h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 28px 20px;
        height: 280px;
    }
}

/* ==============================
   MAP SECTION
================================ */
.map-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* ── Heading ── */
.map-heading {
    text-align: center;
    margin-bottom: 50px;
}

.map-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.map-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 12px;
}

.map-heading h2 span {
    color: #c0112f;
}

.map-heading p {
    font-size: 15px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Inner Row ── */
.map-inner {
    display: flex;
    gap: 40px;
    align-items: stretch;
    min-height: 480px;
}

/* ── Info Cards Column ── */
.map-info {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f6fbf7;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #e0ede5;
    transition: all 0.3s ease;
}

.map-info-card:hover {
    background: #e8f5ee;
    border-color: #1b402f;
    transform: translateX(4px);
}

.map-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.3s;
}

.map-info-card:hover .map-info-icon {
    background: #c0112f;
}

.map-info-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e3a;
    margin: 0 0 4px;
}

.map-info-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Direction Button */
.map-direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b402f;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    transition: background 0.2s, transform 0.2s;
}

.map-direction-btn:hover {
    background: #c0112f;
    color: #fff;
    transform: translateX(3px);
}

.map-direction-btn i {
    font-size: 16px;
}

/* ── Map Embed ── */
.map-embed {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0ede5;
    min-height: 480px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    border: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .map-inner {
        flex-direction: column;
    }

    .map-info {
        flex: none;
        width: 100%;
    }

    .map-info-card {
        flex-direction: row;
    }

    .map-embed {
        min-height: 380px;
    }

    .map-embed iframe {
        min-height: 380px;
    }

    .map-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding: 60px 0;
    }

    .map-heading h2 {
        font-size: 26px;
    }

    .map-embed {
        min-height: 280px;
    }

    .map-embed iframe {
        min-height: 280px;
    }

    .map-info-card {
        padding: 14px 16px;
    }
}



/* ==============================
   WHY CHOOSE US SECTION about us
================================ */
.wcu-section {
    padding: 50px 0;
    background: #e8f5ee;
    overflow: hidden;
}

/* ── Heading ── */
.wcu-heading {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-tag {
    display: inline-block;
    background: #1b402f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.wcu-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.wcu-heading h2 span {
    color: #c0112f;
}

.wcu-heading p {
    font-size: 15px;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Grid ── */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card ── */
.wcu-card {
    background: #f6fbf7;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid #e0ede5;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;

    /* Animation start state */
    opacity: 0;
    transform: translateY(40px);
}

/* Visible state (added by JS) */
.wcu-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.wcu-card:hover {
    background: #1b402f;
    border-color: #1b402f;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 64, 47, 0.18);
}

/* Background number watermark */
.wcu-number {
    position: absolute;
    bottom: -10px;
    right: 16px;
    font-size: 80px;
    font-weight: 700;
    color: #1b402f;
    opacity: 0.06;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s ease;
    pointer-events: none;
}

.wcu-card:hover .wcu-number {
    color: #fff;
    opacity: 0.08;
}

/* Icon */
.wcu-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1b402f;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon pulse ring */
.wcu-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid #1b402f;
    opacity: 0;
    transform: scale(1);
    transition: all 0.4s ease;
}

.wcu-card:hover .wcu-icon::after {
    opacity: 0.3;
    transform: scale(1.3);
}

.wcu-card:hover .wcu-icon {
    background: #c0112f;
    color: #fff;
}

/* Title */
.wcu-card h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 19px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.wcu-card:hover h4 {
    color: #fff;
}

/* Description */
.wcu-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.wcu-card:hover p {
    color: #a8d4b8;
}

/* ── Bottom accent line ── */
.wcu-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c0112f;
    border-radius: 0 0 0 20px;
    transition: width 0.4s ease;
}

.wcu-card:hover::before {
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wcu-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .wcu-section {
        padding: 60px 0;
    }

    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wcu-heading h2 {
        font-size: 26px;
    }

    .wcu-card {
        padding: 28px 22px;
    }
}

/* ==============================
   JOURNEY / TIMELINE SECTION
================================ */
.journey-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* ── Heading ── */
.journey-heading {
    text-align: center;
    margin-bottom: 70px;
}

.journey-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.journey-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 14px;
}

.journey-heading h2 span {
    color: #c0112f;
}

.journey-heading p {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Timeline wrapper ── */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Center vertical line */
.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e8f5ee, #1b402f 20%, #1b402f 80%, #e8f5ee);
    transform: translateX(-50%);
    z-index: 0;
}

/* ── Each timeline item ── */
.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey-item.left {
    flex-direction: row;
    transform: translateX(-50px);
}

.journey-item.right {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

/* Visible state */
.journey-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* ── Center dot ── */
.journey-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1b402f;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #1b402f;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin: 0 0;
    transition: all 0.3s ease;
}

.journey-item:hover .journey-dot {
    background: #c0112f;
    box-shadow: 0 0 0 3px #c0112f;
    transform: scale(1.3);
}

/* ── Content box ── */
.journey-content {
    background: #f6fbf7;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e0ede5;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
    max-width: calc(50% - 30px);
    transition: all 0.3s ease;
    position: relative;
}

.journey-item:hover .journey-content {
    background: #fff;
    border-color: #1b402f;
    box-shadow: 0 12px 36px rgba(27, 64, 47, 0.12);
    transform: scale(1.02);
}

/* Arrow pointer toward center line */
.journey-item.left .journey-content::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 28px;
    border-width: 8px 0 8px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #e0ede5;
}

.journey-item.left:hover .journey-content::after {
    border-color: transparent transparent transparent #1b402f;
}

.journey-item.right .journey-content::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 28px;
    border-width: 8px 10px 8px 0;
    border-style: solid;
    border-color: transparent #e0ede5 transparent transparent;
}

.journey-item.right:hover .journey-content::after {
    border-color: transparent #1b402f transparent transparent;
}

/* ── Icon ── */
.journey-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1b402f;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.journey-item:hover .journey-icon {
    background: #1b402f;
    color: #fff;
}

/* ── Year badge ── */
.journey-year {
    display: inline-block;
    background: #c0112f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ── Title ── */
.journey-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* ── Description ── */
.journey-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    /* Switch to single column left-aligned */
    .journey-timeline::before {
        left: 20px;
    }

    .journey-item.left,
    .journey-item.right {
        flex-direction: row;
        transform: translateX(-30px);
    }

    .journey-item.animate-in {
        transform: translateX(0);
    }

    .journey-dot {
        margin: 0 16px 0 12px;
        flex-shrink: 0;
    }

    .journey-content {
        max-width: 100%;
        flex: 1;
    }

    /* Remove arrows on mobile */
    .journey-item.left .journey-content::after,
    .journey-item.right .journey-content::after {
        display: none;
    }

    .journey-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 60px 0;
    }

    .journey-heading h2 {
        font-size: 26px;
    }

    .journey-content {
        padding: 20px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .journey-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ==============================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 90px 0;
    background: #f9fafb;
    overflow: hidden;
}

/* ── Heading ── */
.contact-heading {
    text-align: center;
    margin-bottom: 56px;
}

.contact-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.contact-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 12px;
}

.contact-heading h2 span {
    color: #c0112f;
}

.contact-heading p {
    font-size: 15px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Inner Row ── */
.contact-inner {
    display: flex;
    gap: 0;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

/* ── Left Panel ── */
.contact-panel {
    flex: 0 0 320px;
    background: #1b402f;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.contact-panel::before,
.contact-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.contact-panel::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
}

.contact-panel::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    background: rgba(192, 17, 47, 0.15);
}

.contact-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(192,17,47,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.contact-panel-content {
    position: relative;
    z-index: 2;
    padding: 48px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-panel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.contact-panel-content > p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Contact list */
.contact-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 13.5px;
    line-height: 1.55;
}

.cp-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    margin-top: 1px;
}

/* Socials */
.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.contact-socials a:hover {
    background: #c0112f;
    transform: translateY(-3px);
}

/* ── Form Wrap ── */
.contact-form-wrap {
    flex: 1;
    background: #fff;
    padding: 48px 44px;
}

/* ── Form Layout ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-full {
    grid-column: 1 / -1;
}

.cf-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1a2e3a;
    letter-spacing: 0.2px;
}

.cf-group label span {
    color: #c0112f;
    margin-left: 2px;
}

/* Input Wrap */
.cf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-input-wrap > i:first-child {
    position: absolute;
    left: 14px;
    color: #1b402f;
    font-size: 15px;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.cf-textarea-wrap > i:first-child {
    top: 16px;
    transform: none;
}

.cf-input-wrap input,
.cf-input-wrap select,
.cf-input-wrap textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid #e0ede5;
    border-radius: 12px;
    font-size: 14px;
    color: #1a2e3a;
    font-family: 'Poppins', sans-serif;
    background: #f6fbf7;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.cf-input-wrap input::placeholder,
.cf-input-wrap textarea::placeholder {
    color: #aaa;
}

.cf-input-wrap input:focus,
.cf-input-wrap select:focus,
.cf-input-wrap textarea:focus {
    border-color: #1b402f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27,64,47,0.08);
}

.cf-input-wrap textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Select chevron */
.cf-select-wrap .cf-chevron {
    position: absolute;
    right: 14px;
    color: #1b402f;
    font-size: 13px;
    pointer-events: none;
}

/* ── Submit Button ── */
.cf-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1b402f;
    color: #fff;
    border: none;
    padding: 15px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    width: fit-content;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 20px rgba(27,64,47,0.25);
}

.cf-submit-btn i {
    font-size: 15px;
    transition: transform 0.25s;
}

.cf-submit-btn:hover {
    background: #c0112f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192,17,47,0.3);
}

.cf-submit-btn:hover i {
    transform: translateX(4px);
}

/* ── Alert Messages ── */
.cf-alert {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 500;
    margin-top: 4px;
}

.cf-alert.show {
    display: flex;
}

.cf-success {
    background: #e8f5ee;
    color: #1b402f;
    border: 1px solid #b2d8be;
}

.cf-error {
    background: #fdf0f2;
    color: #c0112f;
    border: 1px solid #f0c0c8;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .contact-inner {
        flex-direction: column;
        border-radius: 20px;
    }

    .contact-panel {
        flex: none;
        width: 100%;
    }

    .contact-panel-content {
        padding: 36px 28px;
    }

    .contact-panel-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .contact-form-wrap {
        padding: 36px 28px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-heading h2 {
        font-size: 26px;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }

    .contact-panel-list {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .cf-submit-btn {
        width: 100%;
    }
}

/* 
   SERVICES PAGE – services-page.css
 */

/* ── Hero ── */
.sp-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #1b402f;
}

.sp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(192,17,47,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2a1e 0%, #1b402f 60%, #2a1220 100%);
    opacity: 0.82;
}

.sp-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 52px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-hero-text {
    max-width: 640px;
}

.sp-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.18);
}

.sp-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.sp-hero-text h1 em {
    color: #e8a0aa;
    font-style: italic;
}

.sp-hero-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 500px;
}

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.sp-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.sp-breadcrumb a:hover { color: #fff; }

.sp-breadcrumb span { color: #e8a0aa; }

.sp-breadcrumb i { font-size: 11px; }

/* Decorative shapes */
.sp-hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.sp-deco-1 {
    width: 380px;
    height: 380px;
    background: #fff;
    top: -120px;
    right: -60px;
}

.sp-deco-2 {
    width: 220px;
    height: 220px;
    background: #c0112f;
    bottom: -80px;
    right: 200px;
    opacity: 0.12;
}

/* ── Quick Nav Chips ── */
.sp-quicknav {
    background: #fff;
    border-bottom: 1px solid #e8ede9;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sp-quicknav-inner {
    display: flex;
    gap: 8px;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sp-quicknav-inner::-webkit-scrollbar { display: none; }

.sp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 500;
    color: #1a2e3a;
    background: #f0f5f2;
    border: 1.5px solid #e0ede5;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sp-chip i { font-size: 13px; color: #1b402f; }

.sp-chip:hover,
.sp-chip.active {
    background: #1b402f;
    border-color: #1b402f;
    color: #fff;
}

.sp-chip:hover i,
.sp-chip.active i { color: #fff; }

/* ── Services Main ── */
.sp-services {
    padding: 80px 0 60px;
    background: #f9fafb;
}

/* ── Service Block ── */
.sp-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 56px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.sp-block.sp-visible {
    opacity: 1;
    transform: none;
}

.sp-block-alt {
    flex-direction: row-reverse;
}

/* ── Icon Column ── */
.sp-block-icon-col {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
}

.sp-block-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(27,64,47,0.25);
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.sp-block:hover .sp-block-icon {
    background: #c0112f;
    transform: scale(1.06) rotate(-4deg);
}

.sp-block-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: #c0112f;
    letter-spacing: 0.5px;
    opacity: 0.55;
}

/* ── Block Body ── */
.sp-block-body {
    flex: 1;
}

.sp-block-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.sp-block-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sp-lead {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 720px;
}

/* ── Detail Grid ── */
.sp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sp-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px;
    border: 1.5px solid #e8ede9;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    opacity: 0;
    transform: translateY(18px);
}

.sp-detail-card.sp-visible {
    opacity: 1;
    transform: none;
}

.sp-detail-card:hover {
    border-color: #1b402f;
    box-shadow: 0 8px 28px rgba(27,64,47,0.10);
    transform: translateY(-3px);
}

.sp-detail-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e3a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-detail-card h5 i {
    font-size: 15px;
    color: #1b402f;
    background: #e8f5ee;
    padding: 5px;
    border-radius: 8px;
}

.sp-detail-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.sp-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sp-detail-card ul li {
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.sp-detail-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1b402f;
}

/* Highlight card (4th card) */
.sp-highlight-card {
    background: linear-gradient(135deg, #1b402f 0%, #0f2a1e 100%);
    border-color: #1b402f;
    color: #fff;
}

.sp-highlight-card:hover {
    border-color: #c0112f;
    box-shadow: 0 10px 32px rgba(192,17,47,0.22);
}

.sp-highlight-card h5 {
    color: #fff;
}

.sp-highlight-card h5 i {
    background: rgba(255,255,255,0.15);
    color: #ffd4aa;
}

.sp-highlight-card p {
    color: rgba(255,255,255,0.8);
}

/* ── Divider ── */
.sp-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d8e8de, transparent);
    margin: 0 0;
}

/* ── CTA Banner ── */
.sp-cta {
    background: linear-gradient(135deg, #1b402f 0%, #0f2a1e 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sp-cta::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(192,17,47,0.12);
    top: -140px;
    right: -80px;
}

.sp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.sp-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sp-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.sp-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}

.sp-cta-primary {
    background: #c0112f;
    color: #fff;
    box-shadow: 0 6px 20px rgba(192,17,47,0.35);
}

.sp-cta-primary:hover {
    background: #a50e28;
    color: #fff;
    transform: translateY(-2px);
}

.sp-cta-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.sp-cta-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .sp-hero-text h1 { font-size: 40px; }

    .sp-block,
    .sp-block.sp-block-alt {
        flex-direction: column;
        gap: 28px;
    }

    .sp-block-icon-col {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .sp-block-num { padding-top: 0; }

    .sp-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sp-cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .sp-detail-grid {
        grid-template-columns: 1fr;
    }

    .sp-block-body h2 { font-size: 26px; }
}

@media (max-width: 576px) {
    .sp-hero { min-height: 280px; }
    .sp-hero-text h1 { font-size: 32px; }
    .sp-services { padding: 48px 0 40px; }
    .sp-cta { padding: 48px 0; }
    .sp-cta-text h2 { font-size: 26px; }
    .sp-cta-actions { flex-direction: column; width: 100%; }
    .sp-cta-btn { justify-content: center; }
}

/* ==============================
   TREATMENT PAGE
================================ */

/* ── Hero ── */
.tr-hero {
    background: #1b402f;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.tr-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(192, 17, 47, 0.08);
    top: -100px;
    right: -100px;
}

.tr-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -60px;
    left: 60px;
}

.tr-hero-inner {
    position: relative;
    z-index: 1;
}

.tr-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a8d4b8;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.tr-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.tr-hero p {
    font-size: 16px;
    color: #a8d4b8;
    max-width: 600px;
    line-height: 1.75;
    margin: 0;
}

/* ── Content Layout ── */
.tr-content {
    padding: 70px 0 90px;
    background: #f6fbf7;
}

.tr-layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

/* ── Main ── */
.tr-main {
    flex: 1;
    min-width: 0;
}

/* Overview box */
.tr-overview {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border-left: 4px solid #c0112f;
    margin-bottom: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tr-overview-icon {
    font-size: 36px;
    color: #1b402f;
    flex-shrink: 0;
    margin-top: 4px;
}

.tr-overview p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Section cards */
.tr-section {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 22px;
    border: 1px solid #e0ede5;
    transition: all 0.3s ease;

    /* animation start */
    opacity: 0;
    transform: translateY(24px);
}

.tr-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.tr-section:hover {
    border-color: #1b402f;
    box-shadow: 0 8px 30px rgba(27, 64, 47, 0.10);
}

.tr-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr-section h3 i {
    color: #c0112f;
    font-size: 20px;
}

.tr-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.tr-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tr-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    background: #f6fbf7;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e0ede5;
    transition: all 0.2s;
}

.tr-section ul li:hover {
    background: #e8f5ee;
    border-color: #1b402f;
}

.tr-section ul li i {
    color: #1b402f;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Sidebar ── */
.tr-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.tr-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e0ede5;
}

.tr-sidebar-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 16px;
}

/* Service list */
.tr-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tr-service-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.tr-service-list li a:hover {
    background: #e8f5ee;
    color: #1b402f;
    border-color: #c8e6d4;
}

.tr-service-list li.active a {
    background: #1b402f;
    color: #fff;
    border-color: #1b402f;
}

.tr-service-list li a i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Appointment card */
.tr-appt-card {
    background: #1b402f;
    border-color: #1b402f;
    text-align: center;
}

.tr-appt-card i {
    font-size: 36px;
    color: #a8d4b8;
    margin-bottom: 12px;
    display: block;
}

.tr-appt-card h5 {
    color: #fff;
}

.tr-appt-card p {
    font-size: 13px;
    color: #a8d4b8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.tr-appt-btn {
    display: inline-block;
    background: #c0112f;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.tr-appt-btn:hover {
    background: #fff;
    color: #c0112f;
    transform: translateY(-2px);
}

/* Contact list */
.tr-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tr-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.tr-contact-list li i {
    color: #c0112f;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .tr-layout {
        flex-direction: column;
    }

    .tr-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }

    .tr-hero h1 {
        font-size: 34px;
    }

    .tr-section ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tr-hero {
        padding: 100px 0 40px;
    }

    .tr-hero h1 {
        font-size: 26px;
    }

    .tr-content {
        padding: 40px 0 60px;
    }

    .tr-section {
        padding: 22px 18px;
    }

    .tr-overview {
        flex-direction: column;
        gap: 12px;
    }
}

  /* ── Hero ── */
        .treatment-hero {
            background: #e8f5ee;
            padding: 100px 20px 60px;
            text-align: center;
        }

        .treatment-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #1b402f;
        }

        .treatment-hero p {
            max-width: 700px;
            margin: 15px auto 0;
            color: #444;
        }

        /* ── Content ── */
        .treatment-content {
            padding: 60px 20px;
        }

        .treatment-content h3 {
            color: #1b402f;
            margin-bottom: 15px;
        }

        .treatment-content p {
            color: #555;
            line-height: 1.7;
        }

        .treatment-box {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            margin-bottom: 25px;
        }

        /* ── CTA ── */
        .treatment-cta {
            background: #1b402f;
            color: #fff;
            text-align: center;
            padding: 50px 20px;
            border-radius: 20px;
            margin-top: 40px;
        }

        .treatment-cta a {
            display: inline-block;
            margin-top: 15px;
            background: #c0112f;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
        }

        /* ── Hero ── */
        .treatment-hero {
            background: #e8f5ee;
            padding: 100px 20px 60px;
            text-align: center;
        }

        .treatment-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #1b402f;
        }

        .treatment-hero p {
            max-width: 700px;
            margin: 15px auto 0;
            color: #444;
        }

        /* ── Layout ── */
        .treatment-section {
            padding: 60px 0;
        }

        .treatment-img img {
            width: 100%;
            height: 50%;
            border-radius: 500px;
            object-fit: cover;
        }

        /* ── Content ── */
        .treatment-box {
            background: #fff;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .treatment-box h3 {
            color: #1b402f;
            margin-bottom: 10px;
        }

        .treatment-box p,
        .treatment-box ul {
            color: #555;
            line-height: 1.7;
        }

        /* ── CTA ── */
        .treatment-cta {
            background: #1b402f;
            color: #fff;
            padding: 40px 20px;
            border-radius: 20px;
            margin-top: 20px;
            text-align: center;
        }

        .treatment-cta a {
            display: inline-block;
            margin-top: 15px;
            background: #c0112f;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
        }

        /* ── Responsive ── */
        @media (max-width: 992px) {
            .treatment-img {
                margin-bottom: 30px;
            }
        }


        /* ==============================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
    padding: 90px 0;
    background: #f6fbf7;
    overflow: hidden;
}

/* ── Heading ── */
.testimonials-heading {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #1b402f;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.testimonials-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 12px;
}

.testimonials-heading h2 span {
    color: #c0112f;
}

.testimonials-heading p {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Rating Summary ── */
.testimonials-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 32px 40px;
    margin-bottom: 50px;
    border: 1px solid #e0ede5;
}

.summary-score {
    text-align: center;
    flex-shrink: 0;
}

.summary-score h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1b402f;
    margin: 0;
    line-height: 1;
}

.summary-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0 6px;
}

.summary-stars i {
    color: #f5a623;
    font-size: 16px;
}

.summary-score p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.summary-divider {
    width: 1px;
    height: 80px;
    background: #e0ede5;
    flex-shrink: 0;
}

/* Rating bars */
.summary-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #555;
}

.rating-bar span:first-child {
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 30px;
    font-weight: 500;
}

.rating-bar span:first-child i {
    color: #f5a623;
    font-size: 11px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e8f5ee;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #1b402f;
    border-radius: 4px;
    transition: width 1s ease;
}

.rating-bar span:last-child {
    min-width: 30px;
    text-align: right;
    font-size: 11px;
    color: #888;
}

/* Summary stats */
.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.summary-stat {
    text-align: center;
}

.summary-stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c0112f;
    margin: 0 0 2px;
    line-height: 1;
}

.summary-stat p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ── Swiper ── */
.testimonialsSwiper {
    padding: 16px 8px 60px !important;
}

.testimonialsSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
}

/* ── Testimonial Card ── */
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e0ede5;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.testi-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c0112f;
    transition: width 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,64,47,0.12);
    border-color: #1b402f;
}

.testi-card:hover::before {
    width: 100%;
}

/* Quote icon */
.testi-quote i {
    font-size: 32px;
    color: #e8f5ee;
    line-height: 1;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: #f5a623;
    font-size: 14px;
}

/* Review text */
.testi-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    font-style: italic;
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* Avatar circle */
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1b402f;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-avatar.green  { background: #2d8a6e; }
.testi-avatar.red    { background: #c0112f; }
.testi-avatar.purple { background: #6b4fbb; }
.testi-avatar.orange { background: #d97706; }

.testi-author h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e3a;
    margin: 0 0 3px;
}

.testi-author span {
    font-size: 12px;
    color: #888;
}

/* Google icon */
.testi-source {
    margin-left: auto;
    flex-shrink: 0;
}

.testi-source i {
    font-size: 20px;
    color: #4285F4;
}

/* ── Pagination ── */
.testi-pagination {
    bottom: 10px !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #1b402f;
    opacity: 0.3;
}

.testi-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ── Navigation ── */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.testi-prev,
.testi-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #1b402f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1b402f;
    cursor: pointer;
    transition: all 0.2s;
    position: static !important;
    margin: 0 !important;
}

.testi-prev:hover,
.testi-next:hover {
    background: #1b402f;
    color: #fff;
}

.testi-prev::after,
.testi-next::after {
    display: none !important;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .testimonials-summary {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px;
    }

    .summary-divider {
        display: none;
    }

    .summary-score {
        width: 100%;
    }

    .summary-stats {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-heading h2 {
        font-size: 26px;
    }

    .testi-card {
        padding: 24px 18px;
    }

    .summary-score h2 {
        font-size: 44px;
    }
}