:root{
    --primary:#6F42C1;
    --secondary:#4B2E83;
    --light:#F8F6FC;
    --text:#25212B;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
}

.main-header{
    background:#fff;
    padding:18px 0;
    box-shadow:0 8px 30px rgba(75,46,131,.08);
    position:sticky;
    top:0;
    z-index:100;
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.brand{
    font-size:24px;
    font-weight:700;
    color:var(--secondary);
}

.brand span{
    color:var(--primary);
}
.home-offers-section{
    padding:65px 0;
    background:#fff;
}

.home-offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 320px));
    gap:24px;
    justify-content:center;
}

.home-offer-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.home-offer-img{
    height:180px;
    position:relative;
    overflow:hidden;
}

.home-offer-img span{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(135deg,#6F42C1,#2b174f);
    color:#fff;
    padding:7px 13px;
    border-radius:30px;
    font-size:11px;
    font-weight:800;
    z-index:2;
}

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

.home-offer-body{
    padding:20px;
}

.home-offer-body h3{
    color:#2b174f;
    font-weight:900;
    font-size:21px;
}

.home-offer-body p{
    color:#6b6675;
    font-size:14px;
}

.home-offer-price{
    margin:12px 0 16px;
}

.home-offer-price span{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.home-offer-price strong{
    color:#6F42C1;
    font-weight:900;
    font-size:21px;
}

.nav-links{
    display:flex;
    gap:26px;
}

.nav-links a{
    color:#333;
    text-decoration:none;
    font-weight:500;
}

.nav-links a:hover{
    color:var(--primary);
}

.btn-purple{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border:none;
    border-radius:14px;
    padding:11px 24px;
}

.btn-purple:hover{
    color:#fff;
    opacity:.92;
}

.btn-outline-purple{
    border:1px solid var(--primary);
    color:var(--primary);
    border-radius:14px;
    padding:11px 24px;
}

.hero{
    min-height:82vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right, rgba(111,66,193,.18), transparent 35%),
        linear-gradient(135deg,#fff 0%,#f8f6fc 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
}

.badge-soft{
    display:inline-block;
    background:#eee8fb;
    color:var(--secondary);
    padding:8px 16px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    font-weight:700;
    color:var(--secondary);
}

.hero p{
    font-size:18px;
    color:#5e5968;
    max-width:560px;
    margin:22px 0;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-card{
    min-height:430px;
    border-radius:34px;
    padding:35px;
    background:
        linear-gradient(rgba(75,46,131,.15),rgba(75,46,131,.15)),
        url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 80px rgba(75,46,131,.20);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
}

.hero-card h3{
    font-size:34px;
    font-weight:700;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
}

.section-title h2{
    font-size:38px;
    color:var(--secondary);
    font-weight:700;
}

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

.treatment-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(75,46,131,.10);
    font-weight:600;
    color:var(--secondary);
    text-align:center;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:999;
}

@media(max-width:900px){
    .nav-links{
        display:none;
    }

    .hero-grid{
        grid-template-columns:1fr;
        padding:40px 0;
    }

    .hero h1{
        font-size:42px;
    }

    .treatment-grid{
        grid-template-columns:1fr;
    }
}
.why-section{
    padding:80px 0;
    background:#F8F6FC;
}

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

.why-card{
    background:#fff;
    padding:30px 24px;
    border-radius:26px;
    box-shadow:0 18px 45px rgba(75,46,131,.08);
    text-align:center;
}

.why-card i{
    font-size:34px;
    color:var(--primary);
    margin-bottom:18px;
}

.why-card h4{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:10px;
}

.why-card p{
    color:#6b6675;
    font-size:15px;
}

.membership-preview{
    padding:80px 0;
    background:#fff;
}

.membership-box{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    color:#fff;
    border-radius:34px;
    padding:55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 25px 70px rgba(75,46,131,.22);
}

.membership-box span{
    opacity:.9;
    font-weight:600;
}

.membership-box h2{
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.membership-box p{
    max-width:650px;
    opacity:.9;
}

.membership-box .btn-purple{
    background:#fff;
    color:var(--secondary);
}

.contact-strip{
    padding:40px 0 80px;
}

.contact-strip-box{
    background:#F8F6FC;
    border-radius:30px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.contact-strip-box h2{
    color:var(--secondary);
    font-weight:700;
    margin:0;
}

@media(max-width:900px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .membership-box,
    .contact-strip-box{
        flex-direction:column;
        text-align:center;
    }
}
.brand img{
    height:64px;
    width:auto;
    display:block;
}

.main-header{
    padding:14px 0;
}
.mobile-top,
.mobile-menu{
    display:none;
}

.site-footer{
    background:#2b174f;
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    height:80px;
    background:#fff;
    padding:8px;
    border-radius:14px;
    margin-bottom:18px;
}

.site-footer h4{
    margin-bottom:18px;
    font-weight:700;
}

.site-footer a{
    display:block;
    color:#eee;
    text-decoration:none;
    margin-bottom:10px;
}

.site-footer p{
    color:#e8defa;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    margin-top:40px;
    background:#1f103b;
    color:#ddd;
}

@media(max-width:900px){
    .main-header{
        display:none;
    }

    .mobile-top{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:12px 18px;
        background:#fff;
        position:sticky;
        top:0;
        z-index:1000;
        box-shadow:0 8px 25px rgba(75,46,131,.08);
    }

    .mobile-top img{
        height:52px;
    }

    .menu-toggle{
        border:0;
        background:var(--primary);
        color:#fff;
        width:44px;
        height:44px;
        border-radius:12px;
        font-size:20px;
    }

    .mobile-menu{
        display:none;
        position:fixed;
        top:76px;
        left:0;
        right:0;
        background:#fff;
        z-index:999;
        padding:22px;
        box-shadow:0 20px 50px rgba(75,46,131,.15);
    }

    body.menu-open .mobile-menu{
        display:block;
    }

    .mobile-menu a{
        display:block;
        margin-bottom:16px;
        text-decoration:none;
        color:#2b174f;
        font-weight:600;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}
.page-hero{
    padding:90px 0 70px;
    background:linear-gradient(135deg,#fff,#F8F6FC);
    text-align:center;
}

.page-hero span{
    color:var(--primary);
    font-weight:700;
}

.page-hero h1{
    color:var(--secondary);
    font-size:48px;
    font-weight:700;
    margin:12px 0;
}

.page-hero p{
    max-width:750px;
    margin:0 auto;
    color:#6b6675;
    font-size:18px;
}

.back-home{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.treatments-page{
    padding:80px 0;
}

.treatment-full-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border-radius:26px;
    padding:32px 24px;
    box-shadow:0 18px 45px rgba(75,46,131,.10);
    transition:.25s ease;
}

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

.service-card i{
    font-size:34px;
    color:var(--primary);
    margin-bottom:18px;
}

.service-card h3{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    color:#6b6675;
    min-height:78px;
}

.service-card a{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
}

@media(max-width:900px){
    .page-hero h1{
        font-size:34px;
    }

    .treatment-full-grid{
        grid-template-columns:1fr;
    }
}
.service-img{
    width:100%;
    height:170px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:18px;
}

.front-offer-badge{
    display:inline-block;
    background:#ffeefb;
    color:#9b1b88;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
}

.front-price-box{
    margin:12px 0;
}

.front-old-price{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.front-new-price{
    color:#6F42C1;
    font-weight:800;
}
.treatment-detail-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#fff,#F8F6FC);
}

.treatment-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.treatment-detail-hero h1{
    font-size:56px;
    color:var(--secondary);
    font-weight:800;
    margin:16px 0;
}

.treatment-detail-hero p{
    color:#6b6675;
    font-size:18px;
}

.offer-end{
    font-weight:700;
    color:var(--primary) !important;
}

.detail-main-img{
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
    border-radius:34px;
    box-shadow:0 30px 80px rgba(75,46,131,.18);
}

.detail-section{
    padding:80px 0;
}

.light-bg{
    background:#F8F6FC;
}

.detail-content{
    max-width:900px;
}

.detail-content h2{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:18px;
}

.detail-content p{
    color:#5e5968;
    font-size:18px;
    line-height:1.8;
}

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

.benefit-card{
    background:#fff;
    padding:22px;
    border-radius:20px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
    font-weight:700;
    color:var(--secondary);
}

.benefit-card i{
    color:var(--primary);
    margin-right:8px;
}

.detail-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.detail-gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 14px 35px rgba(75,46,131,.10);
}

.faq-wrap{
    max-width:900px;
    margin:0 auto;
}

.faq-card{
    background:#fff;
    padding:24px;
    border-radius:22px;
    margin-bottom:16px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.faq-card h4{
    color:var(--secondary);
    font-weight:800;
}

.faq-card p{
    color:#6b6675;
    margin-bottom:0;
}

@media(max-width:900px){
    .treatment-detail-grid{
        grid-template-columns:1fr;
    }

    .treatment-detail-hero h1{
        font-size:38px;
    }

    .detail-main-img{
        height:320px;
    }

    .benefit-grid,
    .detail-gallery-grid{
        grid-template-columns:1fr;
    }
}
.treatment-card{
    text-decoration:none;
}

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

.treatment-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(75,46,131,.10);
    text-decoration:none;
    transition:.3s;
    display:block;
}

.treatment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(75,46,131,.15);
}

.home-treatment-img{
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
    display:block;
}

.treatment-card span{
    display:block;
    padding:20px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:var(--secondary);
}
.hero-slider{
    min-height:82vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right, rgba(111,66,193,.18), transparent 35%),
        linear-gradient(135deg,#fff 0%,#f8f6fc 100%);
    overflow:hidden;
}

.hero-slide{
    display:none;
    width:100%;
}

.hero-slide.active{
    display:block;
}

.hero-slide-image{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(75,46,131,.20);
}

.hero-slide-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero-slide h1{
    font-size:64px;
    line-height:1.05;
    font-weight:700;
    color:var(--secondary);
}

.hero-slide p{
    font-size:18px;
    color:#5e5968;
    max-width:560px;
    margin:22px 0;
}

@media(max-width:900px){
    .hero-slide h1{
        font-size:42px;
    }

    .hero-slide-image img{
        height:320px;
    }
}
.reviews-section{
    padding:80px 0;
    background:#fff;
}

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

.review-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 18px 45px rgba(75,46,131,.10);
}

.review-stars{
    color:#f5b301;
    font-size:22px;
    margin-bottom:14px;
}

.review-card p{
    color:#5e5968;
    font-size:16px;
    line-height:1.7;
}

.review-client{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:22px;
    color:var(--secondary);
}

.review-client img{
    width:52px;
    height:52px;
    object-fit:cover;
    border-radius:50%;
}

@media(max-width:900px){
    .reviews-grid{
        grid-template-columns:1fr;
    }
}
.reviews-section{
    padding:70px 0;
    margin-top:0;
}

.reviews-grid{
    align-items:stretch;
}

.review-card{
    min-height:220px;
}

.review-client strong{
    font-size:18px;
}
.google-review-box{
    background:linear-gradient(135deg,#6F42C1,#4B2E83);
    color:#fff;
    border-radius:28px;
    padding:35px;
    margin-bottom:40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.google-stars{
    font-size:26px;
    color:#FFD700;
    margin-bottom:10px;
}

.google-review-box h3{
    margin-bottom:8px;
    font-weight:700;
}

.google-review-box p{
    margin:0;
    opacity:.9;
}

.google-review-box .btn-purple{
    background:#fff;
    color:#4B2E83;
    font-weight:700;
}

@media(max-width:900px){

    .google-review-box{
        flex-direction:column;
        text-align:center;
    }

}
.trust-stats-section{
    padding:70px 0;
    background:#F8F6FC;
}

.trust-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.trust-stat-card{
    background:#fff;
    border-radius:22px;
    padding:22px 15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(75,46,131,.08);
}

.trust-stat-card h3{
    color:var(--secondary);
    font-size:32px;
    font-weight:800;
    margin-bottom:5px;
    line-height:1.1;
}

.trust-stat-card p{
    color:#6b6675;
    font-size:15px;
    font-weight:600;
    margin:0;
}

@media(max-width:900px){
    .trust-stats-grid{
        grid-template-columns:1fr;
    }
}
.before-after-section{
    padding:80px 0;
    background:#fff;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.before-after-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(75,46,131,.08);
    transition:.3s;
}

.before-after-card:hover{
    transform:translateY(-5px);
}

.before-after-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.before-after-label{
    padding:18px;
    text-align:center;
    font-weight:700;
    color:var(--secondary);
}

@media(max-width:900px){

    .before-after-grid{
        grid-template-columns:1fr;
    }

    .before-after-card img{
        height:280px;
    }
}
.doctors-section{
    padding:90px 0;
    background:#F8F6FC;
}

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

.doctor-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 40px rgba(75,46,131,.08);
}

.doctor-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}

.doctor-card h3{
    margin-top:25px;
    color:var(--secondary);
    font-size:28px;
}

.doctor-role{
    display:block;
    color:#7A4BC5;
    font-weight:700;
    margin-top:8px;
}

.doctor-card p{
    padding:15px 25px;
    color:#666;
}

.doctor-day{
    margin:15px 25px 25px;
    padding:12px;
    border-radius:12px;
    background:#F4F0FB;
    font-weight:600;
    color:var(--secondary);
}

@media(max-width:900px){
    .doctors-grid{
        grid-template-columns:1fr;
    }

    .doctor-card img{
        height:300px;
    }
}
.booking-grid{
    align-items:start;
}

.booking-info-card,
.booking-form-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 40px rgba(75,46,131,.08);
}

.booking-note{
    margin-top:22px;
    background:#F8F6FC;
    border-left:5px solid var(--primary);
    padding:18px;
    border-radius:18px;
    color:#2b174f;
}

.contact-side-card{
    margin-top:28px;
}

@media(max-width:900px){
    .booking-info-card,
    .booking-form-card{
        padding:24px;
    }
}
.booking-section{
    padding:80px 0;
    background:#fff;
}

.booking-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:30px;
}

.booking-info-card h2,
.booking-form-card h2{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:14px;
}

.booking-info-card p{
    color:#5e5968;
    font-size:17px;
    line-height:1.7;
}

.booking-form-card label{
    font-weight:600;
    color:#2b174f;
    margin-bottom:6px;
}

.booking-form-card .form-control{
    border-radius:14px;
    padding:12px 14px;
    border:1px solid #ddd;
}

.booking-form-card textarea{
    resize:none;
}

.alert{
    border-radius:14px;
    padding:14px 18px;
}

@media(max-width:900px){
    .booking-section{
        padding:45px 0;
    }

    .booking-grid{
        grid-template-columns:1fr;
    }
}
.products-section{
    padding:80px 0;
    background:#fff;
}

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

.product-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(75,46,131,.10);
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 65px rgba(75,46,131,.16);
}

.product-img-wrap{
    position:relative;
    background:#F8F6FC;
}

.product-img-wrap img{
    width:100%;
    height:310px;
    object-fit:cover;
    display:block;
}

.product-placeholder{
    height:310px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:54px;
    color:#6F42C1;
}

.product-offer-badge{
    position:absolute;
    top:16px;
    left:16px;
    background:#fff;
    color:#6F42C1;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-body{
    padding:26px;
}

.product-brand{
    display:inline-block;
    color:#6F42C1;
    background:#F4F0FB;
    padding:6px 12px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    margin-bottom:12px;
}

.product-body h3{
    color:#2b174f;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.product-body p{
    color:#6b6675;
    line-height:1.7;
    min-height:58px;
}

.product-price{
    margin:18px 0;
}

.product-price .old-price{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.product-price strong{
    color:#6F42C1;
    font-size:22px;
    font-weight:900;
}

.product-wa-btn{
    width:100%;
    text-align:center;
}

.empty-products{
    max-width:650px;
    margin:0 auto;
    text-align:center;
    background:#F8F6FC;
    border-radius:28px;
    padding:50px 25px;
}

.empty-products h3{
    color:#2b174f;
    font-weight:800;
}

.empty-products p{
    color:#6b6675;
}

@media(max-width:900px){
    .products-section{
        padding:45px 0;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-img-wrap img,
    .product-placeholder{
        height:280px;
    }
}
.products-section .products-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:26px !important;
}

.products-section .product-card{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
}

.products-section .product-img-wrap{
    height:310px !important;
    overflow:hidden !important;
}

.products-section .product-img-wrap img{
    width:100% !important;
    height:310px !important;
    max-height:310px !important;
    object-fit:cover !important;
    display:block !important;
}

@media(max-width:900px){
    .products-section .products-grid{
        grid-template-columns:1fr !important;
    }

    .products-section .product-img-wrap,
    .products-section .product-img-wrap img{
        height:280px !important;
        max-height:280px !important;
    }
}
.products-section .products-grid{
    grid-template-columns:repeat(4,1fr) !important;
    gap:22px !important;
}

.products-section .product-img-wrap,
.products-section .product-img-wrap img{
    height:240px !important;
    max-height:240px !important;
}

.products-section .product-body{
    padding:22px !important;
}

.products-section .product-body h3{
    font-size:21px !important;
}

.products-section .product-body p{
    min-height:auto !important;
    font-size:15px !important;
}

.products-section .product-price strong{
    font-size:20px !important;
}

@media(max-width:1200px){
    .products-section .products-grid{
        grid-template-columns:repeat(3,1fr) !important;
    }
}

@media(max-width:900px){
    .products-section .products-grid{
        grid-template-columns:1fr !important;
    }

    .products-section .product-img-wrap,
    .products-section .product-img-wrap img{
        height:260px !important;
        max-height:260px !important;
    }
}
.products-section .products-grid{
    justify-content:center !important;
}

.products-section .product-card{
    max-width:330px !important;
}

@media(min-width:901px){
    .products-section .products-grid{
        grid-template-columns:repeat(auto-fit, minmax(280px, 330px)) !important;
    }
}
.doctors-section{
    padding:65px 0 !important;
}

.doctors-grid{
    grid-template-columns:repeat(auto-fit, minmax(280px, 360px)) !important;
    justify-content:center !important;
    gap:24px !important;
}

.doctor-card{
    max-width:360px !important;
    border-radius:24px !important;
}

.doctor-card img{
    height:260px !important;
}

.doctor-card h3{
    font-size:23px !important;
    margin-top:22px !important;
}

.doctor-role{
    font-size:15px !important;
}

.doctor-card p{
    padding:10px 22px !important;
    font-size:14px !important;
    line-height:1.5 !important;
}

.doctor-day{
    margin:14px 22px 22px !important;
    padding:11px !important;
    font-size:14px !important;
}

@media(max-width:900px){
    .doctor-card{
        max-width:100% !important;
    }

    .doctor-card img{
        height:260px !important;
    }
}
/* Compact Doctors Section - Override */
.doctors-section{
    padding:55px 0 !important;
}

.doctors-section .section-title{
    margin-bottom:28px !important;
}

.doctors-section .section-title h2{
    font-size:34px !important;
}

.doctors-grid{
    display:grid !important;
    grid-template-columns:repeat(auto-fit, minmax(260px, 330px)) !important;
    justify-content:center !important;
    gap:22px !important;
}

.doctor-card{
    max-width:330px !important;
    min-height:auto !important;
    border-radius:22px !important;
}

.doctor-card img{
    height:160px !important;
    object-fit:cover !important;
    object-position:top center !important;
}

.doctor-card h3{
    font-size:22px !important;
    margin-top:18px !important;
    margin-bottom:6px !important;
}

.doctor-role{
    font-size:14px !important;
    margin-top:4px !important;
}

.doctor-card p{
    padding:8px 18px !important;
    font-size:14px !important;
    line-height:1.45 !important;
}

.doctor-day{
    margin:12px 18px 18px !important;
    padding:10px !important;
    font-size:14px !important;
}

@media(max-width:900px){
    .doctors-grid{
        grid-template-columns:1fr !important;
    }

    .doctor-card{
        max-width:100% !important;
    }

    .doctor-card img{
        height:190px !important;
    }
}
/* Super Compact Doctor Cards */

.doctors-grid{
    display:flex !important;
    justify-content:center !important;
    gap:18px !important;
    flex-wrap:wrap !important;
}

.doctor-card{
    width:260px !important;
    max-width:260px !important;
    min-height:auto !important;
    padding:0 !important;
    border-radius:18px !important;
}

.doctor-card img{
    height:140px !important;
}

.doctor-card h3{
    font-size:18px !important;
    margin:12px 10px 4px !important;
}

.doctor-role{
    font-size:13px !important;
}

.doctor-card p{
    font-size:13px !important;
    padding:0 12px !important;
    margin-bottom:10px !important;
}

.doctor-day{
    margin:10px 12px 12px !important;
    padding:8px !important;
    font-size:13px !important;
}

@media(max-width:768px){
    .doctor-card{
        width:100% !important;
        max-width:320px !important;
    }
}
.doctor-card img{
    width:100% !important;
    height:180px !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
}
/* Doctor card equal badge level */
.doctor-card{
    display:flex !important;
    flex-direction:column !important;
}

.doctor-card h3{
    min-height:48px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.doctor-role{
    min-height:36px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.doctor-day{
    margin-top:auto !important;
}
/* Final Smart Compact Doctor Cards */
.doctors-section{
    padding:45px 0 !important;
}

.doctors-section .section-title{
    margin-bottom:24px !important;
}

.doctors-grid{
    gap:16px !important;
}

.doctor-card{
    width:240px !important;
    max-width:240px !important;
    min-height:245px !important;
    border-radius:18px !important;
}

.doctor-card img{
    height:130px !important;
}

.doctor-card h3{
    font-size:18px !important;
    min-height:42px !important;
    margin:10px 10px 2px !important;
    line-height:1.15 !important;
}

.doctor-role{
    font-size:12.5px !important;
    min-height:30px !important;
}

.doctor-day{
    margin:8px 10px 10px !important;
    padding:7px !important;
    font-size:12.5px !important;
    border-radius:11px !important;
}

@media(max-width:768px){
    .doctor-card{
        width:100% !important;
        max-width:320px !important;
    }
}
/* Doctor middle image position fix */
.doctors-grid .doctor-card:nth-child(2) img{
    object-position:center -18px !important;
}
/* Smart Hero Slider Final */
.hero-slider{
    min-height:78vh !important;
}

.hero-grid{
    grid-template-columns:.9fr 1.1fr !important;
    gap:55px !important;
}

.hero-slide-image{
    border-radius:28px !important;
}

.hero-slide-image img{
    height:470px !important;
    width:100% !important;
    object-fit:cover !important;
    object-position:center !important;
}

.hero-slide{
    opacity:0;
    visibility:hidden;
    position:absolute;
    inset:0;
    transition:opacity .9s ease, visibility .9s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
}

.hero-slide h1{
    font-size:58px !important;
}

@media(max-width:900px){
    .hero-slider{
        min-height:auto !important;
    }

    .hero-grid{
        grid-template-columns:1fr !important;
        gap:28px !important;
    }

    .hero-slide-image img{
        height:300px !important;
    }

    .hero-slide h1{
        font-size:38px !important;
    }
}
.hero-slide{
    opacity:0 !important;
    visibility:hidden !important;
    transform:translateY(14px) !important;
    transition:opacity .9s ease, transform .9s ease, visibility .9s ease !important;
}

.hero-slide.active{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}
/* Professional Hero Animation Fix */
.hero-slider{
    position:relative !important;
    overflow:hidden !important;
}

.hero-slide{
    display:none !important;
    width:100% !important;
}

.hero-slide.active{
    display:block !important;
}

.hero-slide-image{
    overflow:hidden !important;
    background:#f8f6fc !important;
}

.hero-slide-image img{
    opacity:1 !important;
    transform:scale(1.01) !important;
    transition:opacity .8s ease, transform 3s ease !important;
}

.hero-slide.active .hero-slide-image img{
    animation:heroImageSoft 5.5s ease forwards !important;
}

.hero-slide h1,
.hero-slide p,
.hero-slide .hero-actions{
    animation:heroTextSoft .55s ease both !important;
}

@keyframes heroImageSoft{
    from{
        opacity:.15;
        transform:scale(1.04);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

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

@media(max-width:900px){
    .hero-slide-image img{
        height:280px !important;
    }
}
/* Doctor image position balance */
.doctors-grid .doctor-card:nth-child(1) img{
    object-position:center -18px !important;
}

.doctors-grid .doctor-card:nth-child(3) img{
    object-position:center -18px !important;
}
/* Doctor image balance */
.doctors-grid .doctor-card:nth-child(1) img{
    object-position:center -25px !important;
}

.doctors-grid .doctor-card:nth-child(2) img{
    object-position:center -14px !important;
}

.doctors-grid .doctor-card:nth-child(3) img{
    object-position:center -14px !important;
}
/* Dynamic Before & After Section */
.before-after-new-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 380px));
    gap:24px;
    justify-content:center;
}

.before-after-new-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.before-after-images{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.ba-img-box{
    position:relative;
    height:220px;
    overflow:hidden;
    background:#f8f6fc;
}

.ba-img-box span{
    position:absolute;
    top:10px;
    left:10px;
    background:#fff;
    color:#6F42C1;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:800;
    z-index:2;
}

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

.before-after-new-card h3{
    font-size:18px;
    font-weight:800;
    color:#2b174f;
    padding:16px;
    margin:0;
    text-align:center;
}

@media(max-width:900px){
    .ba-img-box{
        height:190px;
    }
}
/* Before & After final polish */
.before-after-section{
    padding:55px 0 !important;
    background:#fff !important;
}

.before-after-section .section-title{
    margin-bottom:28px !important;
}

.before-after-section .section-title h2{
    font-size:36px !important;
}

.before-after-new-card{
    max-width:360px !important;
    border-radius:24px !important;
}

.ba-img-box{
    height:200px !important;
}

.before-after-new-card h3{
    font-size:18px !important;
    padding:14px !important;
}
/* Contact Page */
.contact-page-section{
    padding:70px 0;
    background:#fff;
}

.contact-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.contact-info-card,
.contact-map-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.contact-info-card h2,
.contact-map-card h2{
    color:#2b174f;
    font-weight:800;
    margin-bottom:12px;
}

.contact-info-card p,
.contact-map-card p{
    color:#6b6675;
}

.contact-detail-box{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#F8F6FC;
    padding:16px;
    border-radius:18px;
    margin-top:14px;
}

.contact-detail-box i{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#fff;
    color:#6F42C1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-detail-box strong{
    display:block;
    color:#2b174f;
    margin-bottom:4px;
}

.contact-detail-box a,
.contact-detail-box span{
    color:#5e5968;
    text-decoration:none;
}

.contact-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.map-placeholder{
    min-height:330px;
    background:linear-gradient(135deg,#F8F6FC,#fff);
    border-radius:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#2b174f;
    margin-top:20px;
}

.map-placeholder i{
    font-size:54px;
    color:#6F42C1;
    margin-bottom:14px;
}

.map-placeholder h3{
    font-weight:800;
}

@media(max-width:900px){
    .contact-page-grid{
        grid-template-columns:1fr;
    }

    .contact-info-card,
    .contact-map-card{
        padding:22px;
    }
}
.contact-page-section{
    padding-top:85px !important;
    padding-bottom:85px !important;
}
.map-embed{
    margin-top:20px;
    border-radius:22px;
    overflow:hidden;
    min-height:330px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.map-embed iframe{
    width:100% !important;
    height:330px !important;
    display:block;
    border:0;
}
.map-embed{
    margin-top:20px;
    border-radius:22px;
    overflow:hidden;
    min-height:330px;
    box-shadow:0 14px 35px rgba(75,46,131,.08);
}

.map-embed iframe{
    width:100% !important;
    height:330px !important;
    display:block;
    border:0;
}
/* CTA strip Call Now button fix */
.contact-strip-box .btn-outline-purple{
    background:#fff !important;
    border:1.5px solid var(--primary) !important;
    color:var(--primary) !important;
    border-radius:16px !important;
    padding:13px 28px !important;
    font-weight:700 !important;
    text-decoration:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:130px !important;
}

.contact-strip-box .btn-outline-purple:hover{
    background:var(--primary) !important;
    color:#fff !important;
}

/* Contact Strip Buttons Fix */

.contact-strip-box > div{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.contact-strip-box .btn-outline-purple{
    background:#fff;
    color:#6f42c1;
    border:2px solid #6f42c1;
    border-radius:14px;
    padding:14px 28px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
}

.contact-strip-box .btn-outline-purple:hover{
    background:#6f42c1;
    color:#fff;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#6F42C1 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#6F42C1;
    color:#fff !important;
    transform:translateY(-3px);
}
.offers-section{
    padding:70px 0;
    background:#fff;
}

.offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 360px));
    gap:24px;
    justify-content:center;
}

.offer-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.offer-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
}

.offer-body{
    padding:22px;
}

.offer-body h3{
    color:#2b174f;
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.offer-body p{
    color:#6b6675;
    font-size:15px;
    line-height:1.6;
}

.offer-price{
    margin:14px 0;
}

.offer-price span{
    color:#888;
    text-decoration:line-through;
    margin-right:8px;
}

.offer-price strong{
    color:#6F42C1;
    font-size:22px;
    font-weight:900;
}

.offer-expiry{
    background:#F8F6FC;
    color:#2b174f;
    padding:9px 12px;
    border-radius:12px;
    font-size:13px;
    font-weight:700;
    margin-bottom:16px;
}
.offer-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    border-radius:20px 20px 0 0;
}

.offer-card{
    overflow:hidden;
}
.offer-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.offer-card:hover img{
    transform:scale(1.05);
}
/* Offers page compact card */
.offers-section{
    padding:45px 0 !important;
}

.offers-grid{
    grid-template-columns:repeat(auto-fit, minmax(260px, 310px)) !important;
    gap:20px !important;
}

.offer-card{
    max-width:310px !important;
    border-radius:22px !important;
}

.offer-card img{
    height:185px !important;
}

.offer-body{
    padding:18px 20px !important;
}

.offer-body h3{
    font-size:20px !important;
    margin-bottom:6px !important;
}

.offer-body p{
    font-size:14px !important;
    margin-bottom:8px !important;
}

.offer-price{
    margin:10px 0 !important;
}

.offer-price strong{
    font-size:20px !important;
}

.offer-expiry{
    padding:8px 12px !important;
    margin-bottom:14px !important;
}

.offer-body .btn{
    padding:11px 22px !important;
    border-radius:13px !important;
}
.offer-image-wrap{
    position:relative;
    overflow:hidden;
}

.offer-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:5;
    background:linear-gradient(135deg,#6F42C1,#2b174f);
    color:#fff;
    padding:7px 13px;
    border-radius:50px;
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.gallery-page-section{
    padding:65px 0;
    background:#fff;
}
.before-after-new-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    max-width:1000px;
    margin:auto;
}

.before-after-new-card{
    background:#fff;
    border-radius:25px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.before-after-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.ba-img-box img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:18px;
}

.ba-img-box span{
    display:inline-block;
    background:#6F42C1;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
}

.before-after-new-card h3{
    text-align:center;
    margin-top:20px;
    color:#2b174f;
    font-weight:800;
}
@media(max-width:768px){

.before-after-images{
    grid-template-columns:1fr;
}

.ba-img-box img{
    height:250px;
}

}
/* Gallery page Before & After clean layout */
.gallery-page-section .gallery-ba-grid{
    display:grid !important;
    grid-template-columns:minmax(300px, 760px) !important;
    justify-content:center !important;
    gap:30px !important;
    max-width:900px !important;
    margin:0 auto !important;
}

.gallery-page-section .gallery-ba-card{
    background:#fff !important;
    border-radius:26px !important;
    padding:22px !important;
    box-shadow:0 18px 45px rgba(75,46,131,.10) !important;
}

.gallery-page-section .before-after-images{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:16px !important;
}

.gallery-page-section .ba-img-box{
    height:300px !important;
    border-radius:18px !important;
    overflow:hidden !important;
    position:relative !important;
    background:#f8f6fc !important;
}

.gallery-page-section .ba-img-box img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.gallery-page-section .ba-img-box span{
    position:absolute !important;
    top:14px !important;
    left:14px !important;
    background:#6F42C1 !important;
    color:#fff !important;
    padding:7px 14px !important;
    border-radius:30px !important;
    font-size:13px !important;
    font-weight:800 !important;
    z-index:2 !important;
}

.gallery-page-section .gallery-ba-card h3{
    text-align:center !important;
    color:#2b174f !important;
    font-weight:800 !important;
    font-size:22px !important;
    margin:20px 0 0 !important;
}

@media(max-width:768px){
    .gallery-page-section .gallery-ba-grid{
        grid-template-columns:1fr !important;
    }

    .gallery-page-section .before-after-images{
        grid-template-columns:1fr !important;
    }

    .gallery-page-section .ba-img-box{
        height:240px !important;
    }
}
/* ===== Gallery Page Size Fix ===== */

.gallery-page-section .gallery-ba-grid{
    display:grid !important;
    grid-template-columns:minmax(300px,580px) !important;
    justify-content:center !important;
    gap:20px !important;
}

.gallery-page-section .gallery-ba-card{
    max-width:580px !important;
    margin:auto !important;
    padding:18px !important;
    border-radius:24px !important;
    background:#fff !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
}

.gallery-page-section .gallery-ba-images{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
}

.gallery-page-section .ba-img-box{
    height:240px !important;
    overflow:hidden !important;
    border-radius:18px !important;
    position:relative !important;
}

.gallery-page-section .ba-img-box img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.gallery-page-section .ba-label{
    position:absolute !important;
    top:12px !important;
    left:12px !important;
    background:#6F42C1 !important;
    color:#fff !important;
    padding:6px 14px !important;
    border-radius:30px !important;
    font-size:13px !important;
    font-weight:700 !important;
}

.gallery-page-section .gallery-ba-card h4{
    text-align:center !important;
    margin-top:16px !important;
    margin-bottom:0 !important;
    font-size:18px !important;
    font-weight:800 !important;
    color:#2b174f !important;
}
/* Membership Page */
.membership-page-section{
    padding:70px 0;
    background:#fff;
}

.membership-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.membership-benefit-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    text-align:center;
    box-shadow:0 14px 40px rgba(75,46,131,.10);
}

.membership-benefit-card i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#F4F0FB;
    color:#6F42C1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin:0 auto 16px;
}

.membership-benefit-card h3{
    color:#2b174f;
    font-size:20px;
    font-weight:800;
    margin-bottom:10px;
}

.membership-benefit-card p{
    color:#6b6675;
    font-size:14px;
    line-height:1.6;
}

.membership-journey-box{
    margin-top:45px;
    background:linear-gradient(135deg,#2b174f,#6F42C1);
    color:#fff;
    border-radius:28px;
    padding:35px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    box-shadow:0 18px 50px rgba(75,46,131,.18);
}

.membership-journey-box h2{
    font-weight:900;
    margin:10px 0;
}

.membership-journey-box p{
    color:rgba(255,255,255,.85);
}

.mini-label{
    display:inline-block;
    background:rgba(255,255,255,.16);
    padding:7px 14px;
    border-radius:30px;
    font-weight:800;
    font-size:13px;
}

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

.journey-step{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    padding:20px 12px;
    text-align:center;
}

.journey-step strong{
    display:block;
    font-size:24px;
    font-weight:900;
}

.journey-step span{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:rgba(255,255,255,.86);
}

.membership-cta-box{
    margin-top:45px;
    background:#F8F6FC;
    border-radius:26px;
    padding:34px;
    text-align:center;
}

.membership-cta-box h2{
    color:#2b174f;
    font-weight:900;
}

.membership-cta-box p{
    color:#6b6675;
}

.membership-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:20px;
}

@media(max-width:900px){
    .membership-benefits-grid{
        grid-template-columns:1fr;
    }

    .membership-journey-box{
        grid-template-columns:1fr;
    }

    .journey-steps{
        grid-template-columns:1fr;
    }
}
/* Force equal card heights */

.treatment-full-grid{
    align-items:stretch;
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card h3{
    min-height:60px;
}

.service-card p{
    flex:1;
}

.front-price-box{
    min-height:35px;
}

.card-actions{
    margin-top:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.card-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    text-decoration:none;
}

.card-view{
    color:#fff !important;
}

.card-book{
    color:#6c2eb9 !important;
}
.home-offers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    align-items:stretch;
}

.home-offer-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.home-offer-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

.home-offer-body p{
    display:-webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.home-offer-price{
    margin-top:auto;
    padding-top:14px;
}

.home-offer-body .btn{
    margin-top:14px;
    align-self:flex-start;
}

@media(max-width:1100px){
    .home-offers-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .home-offers-grid{
        grid-template-columns:1fr;
    }
}
/* Offers page - 4 cards per row + equal button alignment */

.offers-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:24px !important;
    align-items:stretch !important;
}

.offer-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
}

.offer-image-wrap img{
    width:100% !important;
    height:210px !important;
    object-fit:cover !important;
}

.offer-body{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
}

.offer-body p{
    display:-webkit-box !important;
    -webkit-line-clamp:5 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
}

.offer-price{
    margin-top:auto !important;
    padding-top:14px !important;
}

.offer-expiry{
    margin-top:12px !important;
}

.offer-body .btn{
    margin-top:15px !important;
    align-self:flex-start !important;
}

@media(max-width:1200px){
    .offers-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:768px){
    .offers-grid{
        grid-template-columns:1fr !important;
    }
}
/* Featured Treatment Cards Upgrade */

.service-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(91,55,183,0.15);
}

.service-card .service-img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;

    border-top-left-radius:24px;
    border-top-right-radius:24px;
}

.service-card h3{
    padding:20px 22px 0;
}

.service-card p{
    padding:0 22px 22px;
}

.service-card::before{
    content:'';
    display:block;
    height:4px;
    background:linear-gradient(
        90deg,
        #6f42c1,
        #a855f7
    );
}
/* Home Featured Treatment Image Shape Fix */

.treatment-card img,
.home-treatment-img{
    border-radius:18px !important;
    overflow:hidden !important;
    display:block !important;
    width:100% !important;
    height:260px !important;
    object-fit:cover !important;
    box-shadow:0 10px 25px rgba(111,66,193,0.12) !important;
}

/* =========================================================
   ELIXIR MOBILE EMERGENCY FIX - 2026-07-03
   Paste/keep this at the VERY BOTTOM of assets/css/style.css
   ========================================================= */
html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

img, iframe, video{
    max-width:100%;
}

.container{
    max-width:1180px;
}

@media(max-width:900px){
    body{
        padding-top:0 !important;
    }

    .container{
        width:100% !important;
        padding-left:16px !important;
        padding-right:16px !important;
    }

    .main-header{
        display:none !important;
    }

    .mobile-top{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        width:100% !important;
        padding:10px 16px !important;
        background:#fff !important;
        position:sticky !important;
        top:0 !important;
        z-index:9999 !important;
        box-shadow:0 8px 25px rgba(75,46,131,.10) !important;
    }

    .mobile-top img{
        height:46px !important;
        width:auto !important;
        max-width:170px !important;
        object-fit:contain !important;
    }

    .menu-toggle{
        flex:0 0 42px !important;
        width:42px !important;
        height:42px !important;
        border:0 !important;
        border-radius:12px !important;
        background:linear-gradient(135deg,var(--primary),var(--secondary)) !important;
        color:#fff !important;
        font-size:19px !important;
    }

    .mobile-menu{
        display:block !important;
        position:fixed !important;
        top:66px !important;
        left:12px !important;
        right:12px !important;
        width:auto !important;
        max-height:calc(100vh - 82px) !important;
        overflow-y:auto !important;
        background:#fff !important;
        z-index:9998 !important;
        padding:16px !important;
        border-radius:18px !important;
        box-shadow:0 20px 55px rgba(43,23,79,.22) !important;
        opacity:0 !important;
        visibility:hidden !important;
        transform:translateY(-8px) !important;
        pointer-events:none !important;
        transition:.25s ease !important;
    }

    body.menu-open .mobile-menu{
        opacity:1 !important;
        visibility:visible !important;
        transform:translateY(0) !important;
        pointer-events:auto !important;
    }

    .mobile-menu a{
        display:block !important;
        width:100% !important;
        margin:0 0 10px !important;
        padding:12px 14px !important;
        border-radius:12px !important;
        background:#F8F6FC !important;
        color:#2b174f !important;
        text-decoration:none !important;
        font-weight:700 !important;
    }

    .mobile-menu a.btn,
    .mobile-menu .btn-purple{
        background:linear-gradient(135deg,var(--primary),var(--secondary)) !important;
        color:#fff !important;
        text-align:center !important;
        margin-bottom:0 !important;
    }

    .hero,
    .hero-slider,
    .page-hero,
    .treatment-detail-hero,
    .treatment-list-hero{
        padding-top:34px !important;
        padding-bottom:36px !important;
        min-height:auto !important;
    }

    .hero-grid,
    .treatment-detail-grid,
    .booking-grid,
    .contact-page-grid,
    .membership-journey-box{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:24px !important;
    }

    .hero-slide{
        position:absolute !important;
        inset:0 !important;
    }

    .hero-slide.active{
        position:relative !important;
    }

    .hero-slide h1,
    .hero h1,
    .treatment-detail-hero h1,
    .page-hero h1,
    .treatment-list-hero h1{
        font-size:32px !important;
        line-height:1.15 !important;
        word-break:normal !important;
    }

    .hero-slide p,
    .hero p,
    .page-hero p,
    .treatment-detail-hero p,
    .treatment-list-hero p{
        font-size:15px !important;
        line-height:1.65 !important;
    }

    .hero-actions,
    .treatment-hero-actions,
    .membership-actions,
    .contact-actions{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;
        width:100% !important;
    }

    .hero-actions .btn,
    .treatment-hero-actions .btn,
    .membership-actions .btn,
    .contact-actions .btn{
        width:100% !important;
        text-align:center !important;
    }

    .hero-slide-image,
    .hero-card{
        border-radius:22px !important;
    }

    .hero-slide-image img,
    .hero-card,
    .detail-main-img{
        height:260px !important;
        min-height:260px !important;
        object-fit:cover !important;
    }

    .section,
    .why-section,
    .reviews-section,
    .before-after-section,
    .doctors-section,
    .home-offers-section,
    .membership-preview,
    .products-section,
    .offers-section,
    .gallery-page-section,
    .contact-page-section,
    .booking-section,
    .treatments-page,
    .membership-page-section{
        padding-top:42px !important;
        padding-bottom:42px !important;
    }

    .section-title{
        margin-bottom:24px !important;
    }

    .section-title h2,
    .before-after-section .section-title h2,
    .doctors-section .section-title h2{
        font-size:27px !important;
        line-height:1.2 !important;
    }

    .treatment-grid,
    .treatment-full-grid,
    .why-grid,
    .reviews-grid,
    .trust-stats-grid,
    .trust-grid,
    .products-grid,
    .products-section .products-grid,
    .offers-grid,
    .home-offers-grid,
    .membership-benefits-grid,
    .before-after-grid,
    .before-after-new-grid,
    .gallery-page-section .gallery-ba-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:18px !important;
        max-width:100% !important;
        width:100% !important;
    }

    .treatment-card,
    .service-card,
    .why-card,
    .review-card,
    .trust-stat-card,
    .trust-card,
    .product-card,
    .products-section .product-card,
    .offer-card,
    .home-offer-card,
    .before-after-new-card,
    .gallery-page-section .gallery-ba-card,
    .doctor-card{
        width:100% !important;
        max-width:100% !important;
    }

    .home-treatment-img,
    .treatment-card img,
    .service-card .service-img,
    .service-img,
    .product-img-wrap,
    .product-img-wrap img,
    .products-section .product-img-wrap,
    .products-section .product-img-wrap img,
    .offer-card img,
    .offer-image-wrap img,
    .home-offer-img,
    .home-offer-img img{
        height:220px !important;
        max-height:220px !important;
        object-fit:cover !important;
    }

    .treatment-card span{
        font-size:18px !important;
        padding:14px !important;
    }

    .service-card{
        padding:0 !important;
    }

    .service-card h3{
        min-height:auto !important;
        font-size:20px !important;
        padding:16px 18px 0 !important;
    }

    .service-card p{
        padding:0 18px 16px !important;
        min-height:auto !important;
        font-size:14px !important;
    }

    .card-actions{
        grid-template-columns:1fr !important;
        padding:0 18px 18px !important;
    }

    .card-actions a{
        min-height:44px !important;
    }

    .google-review-box,
    .membership-box,
    .contact-strip-box{
        padding:24px 18px !important;
        border-radius:22px !important;
        flex-direction:column !important;
        text-align:center !important;
    }

    .membership-box h2{
        font-size:28px !important;
    }

    .contact-strip-box > div,
    .contact-strip-box > div > div{
        display:grid !important;
        grid-template-columns:1fr !important;
        width:100% !important;
        gap:10px !important;
    }

    .contact-strip-box .btn,
    .contact-strip-box .btn-outline-purple{
        width:100% !important;
    }

    .before-after-images,
    .gallery-page-section .before-after-images,
    .gallery-page-section .gallery-ba-images{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:10px !important;
    }

    .ba-img-box,
    .gallery-page-section .ba-img-box{
        height:190px !important;
    }

    .doctor-card{
        min-height:auto !important;
    }

    .doctor-card img{
        height:190px !important;
        object-position:center top !important;
    }

    .footer-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:24px !important;
        text-align:center !important;
    }

    .footer-logo{
        height:64px !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    .footer-social{
        justify-content:center !important;
    }

    .whatsapp-float{
        right:14px !important;
        bottom:14px !important;
        width:52px !important;
        height:52px !important;
        font-size:27px !important;
    }
}

@media(max-width:430px){
    .hero-slide h1,
    .hero h1,
    .page-hero h1,
    .treatment-detail-hero h1,
    .treatment-list-hero h1{
        font-size:29px !important;
    }

    .hero-slide-image img,
    .hero-card,
    .detail-main-img{
        height:225px !important;
        min-height:225px !important;
    }

    .home-treatment-img,
    .treatment-card img,
    .service-card .service-img,
    .service-img,
    .product-img-wrap,
    .product-img-wrap img,
    .products-section .product-img-wrap,
    .products-section .product-img-wrap img,
    .offer-card img,
    .offer-image-wrap img,
    .home-offer-img,
    .home-offer-img img{
        height:200px !important;
        max-height:200px !important;
    }

    .ba-img-box,
    .gallery-page-section .ba-img-box{
        height:165px !important;
    }
}
/* HERO IMAGE CORRECT RATIO - FINAL */

.hero-slide-image{
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    border-radius:28px !important;
    overflow:hidden !important;
    background:transparent !important;
    display:block !important;
}

.hero-slide-image img{
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    aspect-ratio:auto !important;
    object-fit:initial !important;
    object-position:initial !important;
    display:block !important;
    border-radius:28px !important;
}

@media(max-width:900px){
    .hero-slide-image{
        height:auto !important;
        aspect-ratio:auto !important;
    }

    .hero-slide-image img{
        width:100% !important;
        height:auto !important;
        max-height:none !important;
    }
}
/* MOBILE HERO SIZE RESTORE + ANIMATION FIX */
@media(max-width:900px){

    .hero-slide{
        display:none !important;
        position:static !important;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;
    }

    .hero-slide.active{
        display:block !important;
        position:static !important;
    }

    .hero-slide-image,
    .hero-slide-image img{
        width:100% !important;
        height:auto !important;
        max-height:none !important;
        object-fit:initial !important;
        display:block !important;
    }
}
/* ===== Elixir Premium UI Foundation v2.0 ===== */
:root{
  --elixir-purple:#5f2b8a;
  --elixir-purple-deep:#3f175f;
  --elixir-lilac:#f7f2fb;
  --elixir-ink:#241d2b;
  --elixir-muted:#716879;
  --elixir-border:rgba(95,43,138,.12);
  --elixir-shadow:0 18px 50px rgba(52,25,70,.10);
  --elixir-radius:22px;
}
html{scroll-behavior:smooth}
body{color:var(--elixir-ink);-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;background:#fff}
img{max-width:100%;height:auto}
.container{width:min(1180px,calc(100% - 32px))}
.main-header{background:rgba(255,255,255,.94);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--elixir-border)}
.header-wrap{min-height:82px}
.nav-links a{font-weight:500;letter-spacing:.01em;transition:color .2s ease,opacity .2s ease}
.nav-links a:hover{color:var(--elixir-purple)}
.btn{border-radius:999px;font-weight:600;letter-spacing:.01em;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.btn:hover{transform:translateY(-1px)}
.btn-purple{background:linear-gradient(135deg,var(--elixir-purple),var(--elixir-purple-deep));border-color:transparent;box-shadow:0 10px 25px rgba(95,43,138,.20)}
.section-title span{font-weight:600;letter-spacing:.12em;text-transform:uppercase;font-size:.78rem;color:var(--elixir-purple)}
.section-title h2{letter-spacing:-.035em;color:var(--elixir-ink)}
.treatment-card,.why-card,.trust-stat-card,.review-card,.home-offer-card{border:1px solid var(--elixir-border);box-shadow:0 10px 35px rgba(52,25,70,.06);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.treatment-card:hover,.why-card:hover,.review-card:hover,.home-offer-card:hover{transform:translateY(-5px);box-shadow:var(--elixir-shadow);border-color:rgba(95,43,138,.22)}
.treatment-card img,.home-treatment-img{object-fit:cover}
.membership-box,.contact-strip-box{border-radius:28px;box-shadow:var(--elixir-shadow)}
.whatsapp-float{box-shadow:0 12px 30px rgba(0,0,0,.18)}
@media(max-width:767px){
  .container{width:min(100% - 24px,1180px)}
  .section{padding-top:54px;padding-bottom:54px}
  .mobile-top{background:rgba(255,255,255,.96);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--elixir-border)}
  .hero-actions{gap:10px}
  .hero-actions .btn{width:100%}
  .membership-box,.contact-strip-box{border-radius:20px}
}

/* ===== Elixir Premium UI v2.1 ===== */
:root{
  --elixir-gold:#c6a96b;
  --elixir-soft:#fbf9fd;
  --elixir-soft-2:#f6f0fb;
}
body{overflow-x:hidden}
.main-header{box-shadow:0 10px 36px rgba(49,24,66,.065)!important}
.header-wrap{min-height:76px!important}
.brand img{height:64px!important;width:auto!important}
.nav-links{align-items:center!important;gap:22px!important}
.nav-links a{font-size:.96rem!important;color:#332a38!important}
.nav-links a:hover{color:var(--elixir-purple)!important}

.page-hero{padding:64px 0 54px!important;background:linear-gradient(180deg,#fff 0%,#fbf8fd 100%)!important;text-align:center!important;border-bottom:1px solid var(--elixir-border)}
.page-hero .container{max-width:900px!important}
.page-hero h1{font-size:clamp(2.2rem,4vw,3.65rem)!important;line-height:1.03!important;letter-spacing:-.05em!important;margin:12px 0 14px!important;color:var(--elixir-purple-deep)!important}
.page-hero p{max-width:720px!important;margin:0 auto!important;color:var(--elixir-muted)!important;font-size:1.05rem!important}
.back-home{display:inline-flex!important;align-items:center!important;gap:6px!important;text-decoration:none!important;font-weight:600!important;color:var(--elixir-purple)!important;font-size:.92rem!important}

/* Treatments */
.treatments-section{padding:54px 0 76px!important}
.treatments-grid{gap:22px!important}
.treatment-card{border-radius:22px!important;overflow:hidden!important;background:#fff!important}
.treatment-card img{height:220px!important;max-height:220px!important;width:100%!important;object-fit:cover!important;border-radius:18px!important}
.treatment-card h3{font-size:1.22rem!important;line-height:1.25!important;letter-spacing:-.02em!important}
.treatment-card p{font-size:.92rem!important;line-height:1.7!important;color:var(--elixir-muted)!important}

/* Product / offer cards */
.products-section,.offers-section{padding:54px 0 76px!important;background:#fff!important}
.products-grid,.offers-grid{gap:24px!important;align-items:start!important}
.product-card,.offer-card{border:1px solid var(--elixir-border)!important;border-radius:24px!important;box-shadow:0 12px 34px rgba(52,25,70,.07)!important;overflow:hidden!important;background:#fff!important;transition:.25s ease!important}
.product-card:hover,.offer-card:hover{transform:translateY(-5px)!important;box-shadow:0 20px 46px rgba(52,25,70,.12)!important}
.product-img-wrap{height:265px!important;min-height:265px!important;background:linear-gradient(145deg,#fff,#faf7fc)!important;display:flex!important;align-items:center!important;justify-content:center!important}
.product-img-wrap img{height:100%!important;max-height:265px!important;width:100%!important;object-fit:contain!important;padding:18px!important}
.product-body,.offer-body{padding:22px!important}
.offer-image-wrap{height:250px!important;overflow:hidden!important;background:var(--elixir-soft)!important}
.offer-image-wrap img,.offer-card img{height:250px!important;max-height:250px!important;width:100%!important;object-fit:cover!important}
.empty-products{max-width:720px!important;margin:0 auto!important;border:1px solid var(--elixir-border)!important;border-radius:28px!important;background:linear-gradient(135deg,#fff,var(--elixir-soft-2))!important;box-shadow:var(--elixir-shadow)!important;padding:46px 28px!important;text-align:center!important}

/* Membership */
.membership-page-section{padding:62px 0 80px!important}
.membership-benefits-grid{gap:20px!important}
.membership-benefit-card{border:1px solid var(--elixir-border)!important;border-radius:22px!important;box-shadow:0 12px 34px rgba(52,25,70,.065)!important;padding:28px 22px!important;background:#fff!important}
.membership-benefit-card i{width:58px!important;height:58px!important;display:grid!important;place-items:center!important;border-radius:18px!important;background:var(--elixir-soft-2)!important;color:var(--elixir-purple)!important;margin:0 auto 17px!important}
.membership-journey-box,.membership-cta-box{border:1px solid var(--elixir-border)!important;border-radius:28px!important;box-shadow:var(--elixir-shadow)!important}

/* Contact */
.contact-page-section{padding:58px 0 78px!important}
.contact-page-grid{gap:26px!important;align-items:stretch!important}
.contact-info-card,.contact-map-card{border:1px solid var(--elixir-border)!important;border-radius:28px!important;box-shadow:0 16px 42px rgba(52,25,70,.08)!important;background:#fff!important;padding:30px!important}
.contact-detail-box{border:1px solid rgba(95,43,138,.08)!important;background:#faf7fc!important;border-radius:18px!important}
.map-embed{border-radius:22px!important;overflow:hidden!important;min-height:360px!important}
.map-embed iframe{width:100%!important;min-height:360px!important}

/* Booking */
.booking-section{padding:58px 0 80px!important;background:linear-gradient(180deg,#fff,#fcfafd)!important}
.booking-grid{gap:28px!important;align-items:start!important}
.booking-info-card,.booking-form-card{border:1px solid var(--elixir-border)!important;border-radius:28px!important;box-shadow:0 16px 44px rgba(52,25,70,.08)!important;background:#fff!important;padding:32px!important}
.booking-form-card .form-control,.booking-form-card .form-select{min-height:54px!important;border:1px solid rgba(55,37,65,.14)!important;border-radius:14px!important;background:#fff!important;box-shadow:none!important}
.booking-form-card .form-control:focus,.booking-form-card .form-select:focus{border-color:rgba(95,43,138,.55)!important;box-shadow:0 0 0 4px rgba(95,43,138,.08)!important}
.booking-form-card textarea.form-control{min-height:130px!important}

/* Footer */
.site-footer{background:linear-gradient(145deg,#281041,#38175a)!important;padding-top:58px!important}
.footer-grid{gap:46px!important}
.footer-logo{height:82px!important;background:#fff!important;border-radius:16px!important;padding:8px!important}
.site-footer h4{font-size:1.02rem!important;letter-spacing:.02em!important;margin-bottom:17px!important}
.site-footer p,.site-footer a{color:rgba(255,255,255,.82)!important}
.footer-bottom{background:rgba(15,5,27,.35)!important;border-top:1px solid rgba(255,255,255,.08)!important}

.whatsapp-float{width:58px!important;height:58px!important;right:22px!important;bottom:22px!important}

@media(max-width:900px){
  .page-hero{padding:42px 0 36px!important}
  .page-hero h1{font-size:2.35rem!important}
  .product-img-wrap{height:220px!important;min-height:220px!important}
  .product-img-wrap img{max-height:220px!important}
  .offer-image-wrap,.offer-image-wrap img,.offer-card img{height:210px!important;max-height:210px!important}
  .contact-info-card,.contact-map-card,.booking-info-card,.booking-form-card{padding:22px!important;border-radius:22px!important}
}
@media(max-width:600px){
  .page-hero{padding:34px 0 30px!important}
  .page-hero h1{font-size:2rem!important}
  .treatment-card img{height:190px!important;max-height:190px!important}
  .products-section,.offers-section,.membership-page-section,.contact-page-section,.booking-section{padding-top:38px!important;padding-bottom:58px!important}
}

/* ===== Elixir Premium Frontend v2.3 ===== */
:root{--v23-bg:#fcfbfd;--v23-line:rgba(80,35,108,.10);--v23-shadow:0 22px 60px rgba(48,22,64,.10)}
body{background:var(--v23-bg)}
.main-header{position:sticky!important;top:0!important;z-index:1000!important}
.header-wrap{min-height:72px!important}.brand img{height:58px!important}.nav-links a{position:relative}.nav-links a:after{content:"";position:absolute;left:50%;right:50%;bottom:-9px;height:2px;background:var(--elixir-purple);transition:.22s}.nav-links a:hover:after{left:0;right:0}
.hero-slider{background:radial-gradient(circle at 15% 15%,#f4eafa 0,transparent 38%),linear-gradient(135deg,#fff 0%,#faf6fc 100%);border-bottom:1px solid var(--v23-line)}
.hero-slide{min-height:540px}.hero-grid{min-height:540px;align-items:center;gap:54px}.hero-grid h1{font-size:clamp(2.8rem,5.1vw,5rem)!important;line-height:.98!important;letter-spacing:-.06em!important;max-width:700px;color:var(--elixir-purple-deep)!important}.hero-grid p{font-size:1.08rem!important;line-height:1.8!important;max-width:610px;color:var(--elixir-muted)!important}.badge-soft{border:1px solid rgba(95,43,138,.12);background:#fff!important;box-shadow:0 8px 25px rgba(52,25,70,.06)}
.hero-slide-image{border-radius:32px!important;overflow:hidden;box-shadow:var(--v23-shadow);background:#fff}.hero-slide-image img{width:100%;height:440px!important;object-fit:cover!important;display:block}
.section{padding:78px 0}.section-title{max-width:760px;margin-left:auto;margin-right:auto}.section-title h2{font-size:clamp(2rem,3.5vw,3.15rem)!important;line-height:1.08!important;margin-top:9px}.section-title p{color:var(--elixir-muted);line-height:1.75}
.treatment-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:20px!important}.treatment-card{min-height:0!important;padding:0!important;border-radius:24px!important;text-align:left!important;overflow:hidden!important;background:#fff!important}.treatment-card .home-treatment-img{width:100%!important;height:205px!important;border-radius:0!important;object-fit:cover!important}.treatment-card>span{display:block;padding:18px 20px 20px;font-size:1.06rem!important;font-weight:650!important;color:var(--elixir-ink)!important}
.why-section,.reviews-section,.before-after-section,.home-offers-section,.doctors-section{padding:78px 0!important}.why-section{background:#fff!important}.why-grid{gap:18px!important}.why-card{border-radius:24px!important;padding:30px 22px!important;background:linear-gradient(180deg,#fff,#fdfbfe)!important}.why-card i{width:58px;height:58px;display:grid;place-items:center;margin:0 auto 17px;border-radius:18px;background:var(--elixir-soft-2);color:var(--elixir-purple);font-size:1.35rem}.why-card h4{font-size:1.08rem}.why-card p{color:var(--elixir-muted);line-height:1.65}
.trust-stats-section{padding:0 0 78px!important;background:#fff!important}.trust-stats-grid{gap:14px!important}.trust-stat-card{border-radius:22px!important;background:linear-gradient(145deg,#fff,#faf6fc)!important;padding:24px 18px!important}.trust-stat-card h3{color:var(--elixir-purple-deep)!important;font-size:1.55rem!important}
.google-review-box{border-radius:28px!important;border:1px solid var(--v23-line)!important;box-shadow:var(--v23-shadow)!important;background:linear-gradient(135deg,#fff,#f8f1fc)!important}.review-card{border-radius:24px!important;padding:26px!important;background:#fff!important}.review-card p{line-height:1.75;color:var(--elixir-muted)}
.doctors-section{background:#fff!important}.doctors-grid{gap:24px!important}.doctor-card{border:1px solid var(--v23-line)!important;border-radius:28px!important;overflow:hidden!important;box-shadow:0 14px 40px rgba(52,25,70,.07)!important;background:#fff!important}.doctor-card img{width:100%!important;height:310px!important;object-fit:cover!important}.doctor-card h3,.doctor-card p,.doctor-card .doctor-role,.doctor-card .doctor-day{margin-left:22px!important;margin-right:22px!important}.doctor-card h3{margin-top:20px!important}
.before-after-new-grid,.home-offers-grid{gap:24px!important}.before-after-new-card,.home-offer-card{border-radius:26px!important;overflow:hidden!important;background:#fff!important}.before-after-images img{object-fit:cover!important}.home-offer-img img{height:240px!important;object-fit:cover!important}.home-offer-body{padding:22px!important}
.membership-preview{padding:74px 0!important;background:#fff!important}.membership-box{padding:42px 46px!important;background:linear-gradient(135deg,#3f175f,#6d3595)!important;color:#fff!important}.membership-box span{color:#eadbf4!important;text-transform:uppercase;letter-spacing:.12em;font-size:.78rem;font-weight:700}.membership-box h2{font-size:clamp(2rem,3vw,2.8rem)!important;letter-spacing:-.04em}.membership-box p{color:rgba(255,255,255,.82)!important;max-width:680px}.membership-box .btn-purple{background:#fff!important;color:var(--elixir-purple-deep)!important}
.contact-strip{padding:0 0 78px!important;background:#fff!important}.contact-strip-box{padding:36px 42px!important;border:1px solid var(--v23-line)!important;background:#fbf8fd!important}.contact-strip-box h2{font-size:clamp(1.65rem,2.6vw,2.35rem)!important;letter-spacing:-.035em!important}
.site-footer{margin-top:0!important}
@media(max-width:900px){.hero-slide{min-height:auto}.hero-grid{min-height:auto;gap:28px;padding-top:38px;padding-bottom:42px}.hero-grid h1{font-size:clamp(2.35rem,9vw,3.7rem)!important}.hero-slide-image{border-radius:24px!important}.hero-slide-image img{height:auto!important;max-height:none!important;object-fit:contain!important}.treatment-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.doctor-card img{height:280px!important}.section,.why-section,.reviews-section,.before-after-section,.home-offers-section,.doctors-section{padding:58px 0!important}}
@media(max-width:600px){.treatment-grid{grid-template-columns:1fr 1fr!important;gap:12px!important}.treatment-card .home-treatment-img{height:135px!important}.treatment-card>span{padding:13px 13px 15px;font-size:.91rem!important}.membership-box,.contact-strip-box{padding:28px 22px!important}.hero-grid p{font-size:.98rem!important}.doctor-card img{height:auto!important;max-height:none!important;object-fit:contain!important}}

/* ===== ElixirSkin Premium v2.4 — Conversion & Polish Layer ===== */
:root{
  --v24-purple:#54217d;
  --v24-deep:#2f0e49;
  --v24-soft:#fbf8fd;
  --v24-line:rgba(84,33,125,.11);
  --v24-shadow:0 20px 55px rgba(47,14,73,.09);
}
.main-header{border-bottom:1px solid var(--v24-line)!important}
.header-wrap{min-height:94px!important}
.brand img{filter:drop-shadow(0 8px 16px rgba(84,33,125,.10))}
.nav-links a{position:relative;font-weight:500!important}
.nav-links a:after{content:"";position:absolute;left:50%;right:50%;bottom:-9px;height:2px;border-radius:99px;background:var(--v24-purple);transition:.22s ease}
.nav-links a:hover:after{left:12%;right:12%}
.btn{transition:transform .2s ease,box-shadow .2s ease,background .2s ease!important}
.btn:hover{transform:translateY(-2px)}
.btn-purple{box-shadow:0 10px 25px rgba(84,33,125,.18)!important}
.hero-slider{position:relative;overflow:hidden;background:radial-gradient(circle at 82% 18%,rgba(117,65,159,.09),transparent 31%),linear-gradient(180deg,#fff 0%,#fcf9fe 100%)!important}
.hero-slider:before{content:"";position:absolute;width:420px;height:420px;border-radius:50%;left:-250px;top:60px;background:rgba(112,55,151,.045);pointer-events:none}
.hero-grid{position:relative;z-index:1}
.hero-grid h1{text-wrap:balance}
.hero-actions{gap:12px!important;flex-wrap:wrap}
.hero-slide-image{border:1px solid rgba(84,33,125,.08)!important}
.section-title>span{text-transform:uppercase;letter-spacing:.11em;font-size:.78rem!important;font-weight:700!important}
.section-title h2{text-wrap:balance}
.treatment-card,.why-card,.review-card,.doctor-card,.before-after-new-card,.home-offer-card,.trust-stat-card{transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease!important;border:1px solid var(--v24-line)!important}
.treatment-card:hover,.why-card:hover,.review-card:hover,.doctor-card:hover,.before-after-new-card:hover,.home-offer-card:hover,.trust-stat-card:hover{transform:translateY(-5px);box-shadow:var(--v24-shadow)!important;border-color:rgba(84,33,125,.19)!important}
.treatment-card .home-treatment-img,.home-offer-img img,.doctor-card img{transition:transform .45s ease}
.treatment-card:hover .home-treatment-img,.home-offer-card:hover .home-offer-img img{transform:scale(1.025)}
.why-section,.doctors-section,.home-offers-section{position:relative}
.trust-stat-card p{margin-bottom:0!important}
.google-review-box{overflow:hidden;position:relative}
.google-review-box:after{content:"G";position:absolute;right:25px;top:50%;transform:translateY(-50%);font-weight:700;font-size:5rem;line-height:1;color:rgba(84,33,125,.045);pointer-events:none}
.doctor-role{display:block!important;min-height:24px}
.doctor-day{border:1px solid rgba(84,33,125,.07)!important}
.home-offer-img{overflow:hidden!important}
.home-offer-img>span{z-index:2!important}
.membership-box{border-radius:30px!important;box-shadow:0 24px 60px rgba(47,14,73,.18)!important;position:relative;overflow:hidden}
.membership-box:after{content:"";position:absolute;width:260px;height:260px;border-radius:50%;right:-95px;top:-120px;background:rgba(255,255,255,.07);pointer-events:none}
.membership-box>*{position:relative;z-index:1}
.contact-strip-box{border-radius:28px!important;box-shadow:0 16px 45px rgba(47,14,73,.06)!important}
.whatsapp-float{box-shadow:0 12px 30px rgba(0,0,0,.16)!important;transition:transform .2s ease!important}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.03)}
.site-footer{border-top:1px solid var(--v24-line)}
.footer-logo{filter:drop-shadow(0 8px 16px rgba(84,33,125,.08))}
@media(max-width:900px){
  .mobile-top{box-shadow:0 8px 25px rgba(47,14,73,.06)!important;border-bottom:1px solid var(--v24-line)!important}
  .hero-grid{padding-top:30px!important}
  .hero-actions .btn{flex:1 1 180px;text-align:center}
  .google-review-box:after{display:none}
}
@media(max-width:600px){
  .container{width:min(100% - 24px,1180px)!important}
  .hero-grid h1{letter-spacing:-.045em!important}
  .section-title h2{font-size:1.85rem!important}
  .section-title p{font-size:.94rem}
  .treatment-card{border-radius:19px!important}
  .membership-box{border-radius:24px!important}
  .contact-strip-box{border-radius:24px!important}
}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;transition:none!important;animation:none!important}}

/* =========================================================
   ELIXIR v2.4.1 - Mobile Google Review + Social Icon Hotfix
   ========================================================= */
.google-review-box,
.google-review-box *{
    box-sizing:border-box;
}
.google-review-left,
.google-review-right{
    position:relative;
    z-index:2;
    min-width:0;
}
.google-review-box h3,
.google-review-box p,
.google-review-box .btn-purple{
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    word-break:normal !important;
    overflow-wrap:anywhere;
}
.footer-social a,
.footer-social a:visited,
.footer-social a:focus,
.footer-social a:active{
    opacity:1 !important;
    visibility:visible !important;
    color:#6F42C1 !important;
    background:#fff !important;
}
.footer-social a i,
.footer-social a svg,
.footer-social a span{
    opacity:1 !important;
    visibility:visible !important;
    display:inline-block !important;
    color:currentColor !important;
    fill:currentColor !important;
}
.footer-social a:hover{
    opacity:1 !important;
    visibility:visible !important;
    background:#6F42C1 !important;
    color:#fff !important;
}
@media(max-width:900px){
    .google-review-box{
        height:auto !important;
        min-height:0 !important;
        overflow:visible !important;
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
        justify-content:flex-start !important;
        padding:26px 20px !important;
        gap:18px !important;
    }
    .google-review-left,
    .google-review-right{
        width:100% !important;
        max-width:100% !important;
        flex:0 0 auto !important;
        text-align:center !important;
    }
    .google-review-box h3{
        display:block !important;
        margin:0 0 8px !important;
        line-height:1.3 !important;
    }
    .google-review-box p{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
        line-height:1.6 !important;
        opacity:.92 !important;
    }
    .google-review-box .btn-purple{
        display:inline-flex !important;
        width:auto !important;
        max-width:100% !important;
        min-height:46px !important;
        align-items:center !important;
        justify-content:center !important;
        padding:12px 20px !important;
        line-height:1.35 !important;
    }
    .footer-social{
        display:flex !important;
        visibility:visible !important;
        opacity:1 !important;
        justify-content:center !important;
        flex-wrap:wrap !important;
    }
    .footer-social a{
        display:flex !important;
        opacity:1 !important;
        visibility:visible !important;
    }
}

/* =========================================================
   ELIXIR v2.4.2 - Google Review Contrast Hotfix
   Fixes inherited white text on the light premium review card.
   ========================================================= */
.google-review-box .google-review-left h3{
    color:#3f1f68 !important;
    opacity:1 !important;
    visibility:visible !important;
    text-shadow:none !important;
}
.google-review-box .google-review-left p{
    color:#665d70 !important;
    opacity:1 !important;
    visibility:visible !important;
    text-shadow:none !important;
}
.google-review-box .google-stars{
    opacity:1 !important;
    visibility:visible !important;
}
@media(max-width:900px){
    .google-review-box .google-review-left h3{color:#3f1f68 !important;}
    .google-review-box .google-review-left p{color:#665d70 !important;opacity:1 !important;}
}

/* =========================================================
   ELIXIR v2.7 - Premium Header Navigation
   Premium priority cards for Treatments, Offers & Membership.
   Keeps the remaining navigation clean and Book Now dominant.
   ========================================================= */
@media (min-width: 901px){
  .main-header .header-wrap{
    gap:18px !important;
  }
  .main-header .nav-links{
    gap:9px !important;
    align-items:center !important;
  }
  .main-header .nav-links a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:40px;
    padding:9px 12px !important;
    border-radius:13px;
    white-space:nowrap;
    line-height:1;
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease,color .2s ease !important;
  }
  .main-header .nav-links a:after{
    display:none !important;
  }
  .main-header .nav-links a[href="treatments.php"]{
    color:#4b2775 !important;
    background:linear-gradient(180deg,#fff,#fbf8ff) !important;
    border:1px solid rgba(91,44,160,.14) !important;
    box-shadow:0 7px 20px rgba(65,31,105,.06);
    font-weight:600 !important;
  }
  .main-header .nav-links a[href="offers.php"]{
    color:#fff !important;
    background:linear-gradient(135deg,#7b42c7,#54217d) !important;
    border:1px solid rgba(83,33,125,.14) !important;
    box-shadow:0 10px 24px rgba(84,33,125,.18);
    font-weight:700 !important;
    position:relative;
  }
  .main-header .nav-links a[href="offers.php"]:before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#f1c65a;
    box-shadow:0 0 0 4px rgba(241,198,90,.12);
    margin-right:7px;
    flex:0 0 auto;
  }
  .main-header .nav-links a[href="membership.php"]{
    color:#552b82 !important;
    background:linear-gradient(135deg,#f7f0ff,#fff) !important;
    border:1px solid rgba(111,66,193,.18) !important;
    box-shadow:0 7px 20px rgba(65,31,105,.07);
    font-weight:600 !important;
  }
  .main-header .nav-links a[href="treatments.php"]:hover,
  .main-header .nav-links a[href="membership.php"]:hover{
    transform:translateY(-2px);
    border-color:rgba(91,44,160,.30) !important;
    box-shadow:0 12px 26px rgba(65,31,105,.11);
  }
  .main-header .nav-links a[href="offers.php"]:hover{
    transform:translateY(-2px);
    color:#fff !important;
    box-shadow:0 14px 30px rgba(84,33,125,.25);
  }
  .main-header > .container > .btn-purple,
  .main-header .header-wrap > .btn-purple{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 25px !important;
    border-radius:16px !important;
    font-weight:700 !important;
    box-shadow:0 12px 28px rgba(84,33,125,.23) !important;
    white-space:nowrap;
  }
}

/* Mobile: important destinations become clean touch-friendly cards. */
@media (max-width: 900px){
  .mobile-menu a[href="treatments.php"],
  .mobile-menu a[href="offers.php"],
  .mobile-menu a[href="membership.php"]{
    border-radius:13px !important;
    padding:12px 14px !important;
    margin:3px 8px !important;
    border:1px solid rgba(91,44,160,.12) !important;
    font-weight:600 !important;
  }
  .mobile-menu a[href="treatments.php"],
  .mobile-menu a[href="membership.php"]{
    background:#faf7ff !important;
    color:#4f287d !important;
  }
  .mobile-menu a[href="offers.php"]{
    background:linear-gradient(135deg,#7540bf,#54217d) !important;
    color:#fff !important;
    box-shadow:0 8px 22px rgba(84,33,125,.18);
  }
  .mobile-menu .btn-purple{
    margin-top:8px !important;
    border-radius:14px !important;
    min-height:48px;
  }
}

/* =========================================================
   ELIXIR v2.7.1 - All Navigation Premium Cards
   Gives every desktop navigation item a subtle premium card,
   adds more lavender colour, while keeping Offers/Book Now dominant.
   ========================================================= */
@media (min-width: 901px){
  .main-header{
    background:linear-gradient(180deg,#ffffff 0%,#fcf9ff 100%) !important;
    border-bottom:1px solid rgba(91,44,160,.08) !important;
  }
  .main-header .nav-links{
    gap:8px !important;
  }
  .main-header .nav-links a{
    min-height:42px !important;
    padding:10px 14px !important;
    border-radius:14px !important;
    color:#45266f !important;
    background:linear-gradient(135deg,#f4ebff 0%,#fbf8ff 100%) !important;
    border:1px solid rgba(111,66,193,.16) !important;
    box-shadow:0 7px 18px rgba(72,35,113,.07) !important;
    font-weight:600 !important;
  }
  .main-header .nav-links a:hover{
    transform:translateY(-2px) !important;
    background:linear-gradient(135deg,#eadcff 0%,#f8f2ff 100%) !important;
    border-color:rgba(111,66,193,.30) !important;
    box-shadow:0 11px 24px rgba(72,35,113,.13) !important;
    color:#3d1c67 !important;
  }
  .main-header .nav-links a[href="treatments.php"],
  .main-header .nav-links a[href="membership.php"]{
    background:linear-gradient(135deg,#eadcff 0%,#f8f2ff 100%) !important;
    border-color:rgba(111,66,193,.24) !important;
    color:#482071 !important;
  }
  .main-header .nav-links a[href="offers.php"]{
    color:#fff !important;
    background:linear-gradient(135deg,#7c43ca 0%,#55207e 100%) !important;
    border-color:rgba(83,33,125,.24) !important;
    box-shadow:0 10px 25px rgba(84,33,125,.22) !important;
  }
  .main-header .nav-links a[href="offers.php"]:hover{
    color:#fff !important;
    background:linear-gradient(135deg,#8750d2 0%,#60258c 100%) !important;
    box-shadow:0 14px 30px rgba(84,33,125,.28) !important;
  }
  .main-header > .container > .btn-purple,
  .main-header .header-wrap > .btn-purple{
    background:linear-gradient(135deg,#5e268b 0%,#3e155f 100%) !important;
    border:1px solid rgba(62,21,95,.18) !important;
    box-shadow:0 13px 30px rgba(69,26,103,.25) !important;
  }
}

@media (max-width:900px){
  .mobile-menu a:not(.btn-purple){
    background:linear-gradient(135deg,#f2e8ff,#fbf8ff) !important;
    color:#47236f !important;
    border:1px solid rgba(111,66,193,.16) !important;
    border-radius:13px !important;
    padding:12px 14px !important;
    margin:3px 8px !important;
    font-weight:600 !important;
  }
  .mobile-menu a[href="offers.php"]{
    background:linear-gradient(135deg,#7c43ca,#55207e) !important;
    color:#fff !important;
  }
}

/* =========================================================
   ElixirSkin v2.7.2 - Offer image fit refinement
   Keep full treatment artwork visible on offer placements.
   ========================================================= */
.offer-image-wrap{
    height:300px!important;
    padding:10px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
    background:linear-gradient(145deg,#fbf8fe 0%,#f4ecfa 100%)!important;
}
.offer-image-wrap img,
.offer-card > img{
    width:100%!important;
    height:100%!important;
    max-height:100%!important;
    object-fit:contain!important;
    object-position:center!important;
    border-radius:18px!important;
    background:#fff!important;
}
.home-offer-img{
    height:270px!important;
    padding:9px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
    background:linear-gradient(145deg,#fbf8fe 0%,#f4ecfa 100%)!important;
}
.home-offer-img img{
    width:100%!important;
    height:100%!important;
    max-height:100%!important;
    object-fit:contain!important;
    object-position:center!important;
    border-radius:17px!important;
    background:#fff!important;
}
.home-offer-img > span{
    position:absolute!important;
    top:16px!important;
    left:16px!important;
}
@media (max-width: 768px){
    .offer-image-wrap{height:260px!important;padding:8px!important}
    .home-offer-img{height:240px!important;padding:8px!important}
}
@media (max-width: 480px){
    .offer-image-wrap{height:235px!important}
    .home-offer-img{height:220px!important}
}

/* =========================================================
   ElixirSkin v2.9 - Premium Hero Full Artwork Fit
   Designed treatment artwork must remain fully visible.
   ========================================================= */
.hero-slide-image{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
    background:linear-gradient(145deg,#fbf8fe 0%,#f3eafa 100%)!important;
    border-radius:28px!important;
    padding:10px!important;
}
.hero-slide-image img{
    width:100%!important;
    height:100%!important;
    max-width:100%!important;
    max-height:100%!important;
    object-fit:contain!important;
    object-position:center center!important;
    border-radius:21px!important;
    background:#fff!important;
    transform:none!important;
}
.hero-slide.active .hero-slide-image img{
    animation:none!important;
    transform:none!important;
}
@media (max-width:900px){
    .hero-slide-image{padding:8px!important;border-radius:22px!important}
    .hero-slide-image img{border-radius:17px!important}
}
@media (max-width:480px){
    .hero-slide-image{padding:6px!important;border-radius:18px!important}
    .hero-slide-image img{border-radius:14px!important}
}


/* =========================================================
   ElixirSkin v2.9.2 — Featured Treatments balanced artwork
   IMPORTANT: v2.9 hero full-artwork rules above are preserved.
   This patch targets homepage Featured Skin Solutions only.
   ========================================================= */
.treatment-grid .treatment-card .home-treatment-img{
    width:100% !important;
    height:auto !important;
    aspect-ratio:3 / 2 !important;
    object-fit:contain !important;
    object-position:center !important;
    padding:0 !important;
    margin:0 !important;
    display:block !important;
    background:#f8f2fc !important;
    border-radius:0 !important;
}

/* Keep featured cards neat while allowing the artwork to use the full card width. */
.treatment-grid .treatment-card{
    overflow:hidden !important;
}
@media(max-width:600px){
    .treatment-grid .treatment-card .home-treatment-img{
        width:100% !important;
        height:auto !important;
        aspect-ratio:3 / 2 !important;
        object-fit:contain !important;
        padding:0 !important;
    }
}


/* =========================================================
   v2.9.3 FAST FIX
   Homepage Featured Skin Solutions: edge-to-edge full artwork,
   no crop, no oversized blank frame.
   Hero v2.9 rules remain untouched above.
   ========================================================= */
.treatment-grid .treatment-card{
    padding:0 !important;
    overflow:hidden !important;
}
.treatment-grid .treatment-card .home-treatment-img{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    height:auto !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    object-position:center !important;
    padding:0 !important;
    margin:0 !important;
    background:#f8f3fc !important;
    border-radius:0 !important;
}
@media(max-width:600px){
    .treatment-grid .treatment-card .home-treatment-img{
        width:100% !important;
        height:auto !important;
        max-height:none !important;
        aspect-ratio:auto !important;
        padding:0 !important;
    }
}
