﻿html, body {
    overscroll-behavior-y: none;
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    color: #111
}
.topbar{display:flex;justify-content:space-between;align-items:center;padding:1rem;position:sticky;top:0;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.06);z-index:10}
.brand{text-decoration:none;color:#111;font-weight:700}
.hero{height:85vh;display:grid;place-items:center;text-align:center}
.hero-inner h1{font-size:clamp(2.5rem,6vw,5rem);margin:0}
.cta{display:inline-block;padding:.9rem 1.2rem;border:1px solid #111;text-decoration:none}



.parallax {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 0;
}

/* Background layer with fixed coverage and gradient overlay */
    .parallax::before {
        content: "";
        position: fixed;
        top: -5vh; /* slightly above to cover top gap */
        left: -5vw; /* slightly wider for side scroll safety */
        width: 110vw; /* oversize background */
        height: 120vh; /* oversize vertically so it covers even at max offset */
        background: linear-gradient( rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100% ), var(--bg-url);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: translateY(var(--bg-offset, 0px));
        filter: blur(var(--blur-amount, 0px));
        transition: filter 0.05s linear, transform 0.05s linear;
        z-index: -1;
        pointer-events: none;
    }



/* Optional content overlay */
.parallax .overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.overlay{position:relative;padding:4rem 1rem;max-width:1100px;margin:0 auto}

.photo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1rem
}








.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}









/* SECTION BACKGROUND + WIDTH */
.offers-section {
    background: #101113; /* dark like screenshot */
    padding: 52px 0 34px;
}

.offers-wrap {
    max-width: 1220px; /* <— this is the “decrease width” you asked */
    margin: 0 auto;
    padding: 0 18px;
}

/* HEADER */
.offers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.offers-kicker {
    letter-spacing: .18em;
    font-size: 12px;
    text-transform: uppercase;
    color: #e91e63; /* #9aa0ff; */
    margin-bottom: 6px;
}

.offers-title {
    font-size: 56px;
    line-height: 1.02;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.offers-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.offers-viewall {
    color: #e91e63; /* #9aa0ff; */
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

/* ARROWS (ALWAYS VISIBLE) */
.offers-actions {
    display: flex;
    gap: 10px;
}

.offers-nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* <— no hover-only */
    visibility: visible; /* <— no hover-only */
}

.offers-nav:hover {
    filter: brightness(1.1);
}

.offers-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* SLIDER */
.offers-viewport {
    overflow: hidden;
}

.offers-track {
    display: flex;
    gap: 14px; /* closer to screenshot */
    scroll-behavior: smooth;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.offers-track::-webkit-scrollbar {
    display: none;
}

/* CARD SIZE LIKE SCREENSHOT (3 BIG CARDS ON DESKTOP) */
.offer-card {
    flex: 0 0 calc((100% - 14px*2) / 3); /* 3 visible */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: #1a1b1f;
}

.offer-media {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 32%, rgba(0,0,0,.70) 100%);
}

/* BADGES */
.offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #6b6b6b;
}

.badge-new {
    background: #e53935;
}

.badge-popular {
    background: #e53935;
}

.badge-default {
    background: #6b6b6b;
}

/* TEXT LIKE SCREENSHOT */
.offer-subtitle {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin-bottom: 6px;
}

.offer-title {
    color: #fff;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 90%;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
    color: #fff;
}

.offer-from {
    font-size: 11px;
    letter-spacing: .12em;
    opacity: .85;
}

.offer-amount {
    font-size: 40px;
    font-weight: 800;
}

.offer-was {
    font-size: 12px;
    opacity: .8;
    text-decoration: line-through;
}

/*.offer-cta {
    display: inline-flex;
    background: #e91e63;*/ /* #6c63ff; */
    /*color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}*/

.offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e91e63; /* matches your beauty branding */
    color: #fff !important;
    text-decoration: none;
    padding: 4px 9px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    /* NEW IMPROVEMENTS */
    transition: all 0.25s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
}


/*.offer-cta:hover {
    filter: brightness(1.05);
}*/

.offer-cta:hover {
    background: #d81b60;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(233, 30, 99, 0.25);
}

.offer-cta i {
    font-size: 16px;
}


/* FORCE offers slider inactive bars to be visible (overrides theme button styles) */
#offers .offers-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 26px !important;
    margin-top: 18px !important;
    padding-bottom: 6px !important;
    position: relative !important;
    z-index: 5 !important;
}

#offers .offers-dots .offers-dot {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: none !important;
    display: block !important;
    width: 92px !important;
    height: 3px !important; /* slightly thicker so it’s visible */
    border-radius: 999px !important;
    background-color: rgba(255,255,255,0.45) !important; /* INACTIVE visible grey */
    opacity: 1 !important; /* kills global opacity rules */
    filter: none !important; /* kills global filters */
    box-shadow: none !important;
    cursor: pointer !important;
    padding: 0 !important;
}

#offers .offers-dots .offers-dot:hover {
    background-color: rgba(255,255,255,0.65) !important;
}

#offers .offers-dots .offers-dot.is-active {
    background-color: rgba(255,255,255,0.95) !important; /* ACTIVE bright */
    transform: scaleX(1.08) !important;
}

/* TABLET: 2 CARDS */
@media (max-width: 1024px) {
    .offers-title {
        font-size: 42px;
    }

    .offer-card {
        flex-basis: calc((100% - 14px) / 2);
    }

    .offer-media {
        height: 380px;
    }
}

/* iPHONE / MOBILE: 1 CARD + PEEK + BIG TEXT */
@media (max-width: 640px) {
    .offers-header {
        align-items: flex-start;
    }

    .offers-right {
        align-items: flex-start;
        gap: 10px;
    }

    .offers-title {
        font-size: 34px;
    }

    .offers-viewall {
        display: none;
    }
    /* optional: like many mobile UIs */
    .offer-card {
        flex-basis: 86%; /* <— iPhone “one card with peek” */
    }

    .offer-media {
        height: 360px;
    }

    .offer-title {
        font-size: 34px;
    }

    .offer-amount {
        font-size: 34px;
    }

    #offers .offers-dots {
        gap: 16px !important;
    }

    #offers .offers-dots .offers-dot {
        width: 48px !important;
    }
}

@media (max-width: 768px) {
    .offer-cta {
        padding: 7px 12px;
        font-size: 12px;
    }
}

.offer-card, .offer-media {
    filter: none !important;
    backdrop-filter: none !important;
}








/* === Signature Services Section === */
.strip {
    position: relative;
    z-index: 3;
    padding: 4rem 5%;
    text-align: center;
    color: #fff;
}

.strip h2 {
    font-size: 2.2rem;
    color: #e91e63;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    padding: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

    .card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #e0e0e0; /*#ff7ab8;*/
        text-shadow: 0 0 6px rgba(255, 122, 184, 0.4);
    }

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: auto;
}

.read-more {
    align-self: center;
    background: transparent;
    border: 1px solid #e91e63;
    color: #e91e63;
    font-size: 0.75rem;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #e91e63;
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(233,30,99,0.4);
}








.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none; /*display:grid*/
    place-items: center;
    z-index: 9999;
}

.modal.show {
    display: grid; /* only show when we explicitly add .show */
}
.modal-contents {
    background: #fff;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: auto;
    border-radius: 8px;
    padding: 1rem;
    overflow-y: auto;
}
.footer{padding:2rem 1rem;text-align:center;color:#666}
.comment-box{display:grid;gap:.5rem;margin-bottom:1rem}
.comment-box input,.comment-box textarea{padding:.6rem;border:1px solid #ccc;border-radius:6px}

.cta {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta:hover {
    background: rgba(255,255,255,0.3);
}




#ebnews {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 12px;
}

#ebnews.innerps {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
}

.news-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

    .news-item img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
    }

.comments {
    margin-top: 1rem;
    background: rgba(0,0,0,0.3);
    padding: 0.8rem;
    border-radius: 6px;
}

    .comments ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .comments li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

.comment-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

    .comment-form textarea {
        resize: none;
        padding: 0.5rem;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(0,0,0,0.2);
        color: #fff;
    }

    .comment-form button {
        margin-top: 0.5rem;
        align-self: flex-end;
        padding: 0.4rem 1rem;
        background: #e91e63;
        border: none;
        border-radius: 4px;
        color: #fff;
        cursor: pointer;
    }




/* Outer layout wrapper */
.home-layout {
    display: flex;
    justify-content: center;
    padding: 4rem 5%;
    position: relative;
    z-index: 2; /* above parallax */
}

/* Shared rounded background container */
.content-wrapper {
    display: flex;
    
    
    flex-direction: row;
    align-items: flex-start; /* let each define own height initially */


    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    color: #fff;
}

/* Left (News/Discussion) */
.left-column {
    flex: 1; /*2 1 60%;*/
    min-width: 300px;


    height: auto;
    align-self: stretch;
}

/* Right (About) */
.right-column {
    flex: 1; /*1 1 35%;*/
    min-width: 280px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 2rem;
}

.left-column {
    overflow-y: auto;
}



/* About section styles */
.about-box {
    text-align: left;
}

.about-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 1rem;
}

.motto {
    font-style: italic;
    color: #e6b8ff;
    border-left: 3px solid #e91e63;
    padding-left: 1rem;
    margin-top: 1rem;
}

/* Responsive stack */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        padding: 1.5rem;
    }

    .right-column {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-left: 0;
        padding-top: 1rem;
    }
}



.info-section {
    display: flex;
    justify-content: center;
    padding: 3rem 5%;
    position: relative;
    z-index: 2;
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1300px; /* ✅ increased width to fit 3 cols comfortably */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    padding: 2rem 3rem;
    color: #fff;
    flex-wrap: nowrap; /* ✅ force all in one line until smaller breakpoints */
    gap: 2rem;
}


.info-column {
    flex: 1;
    min-width: 0; /* ✅ allow flexible shrink to fit */
}


.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.treatment-list {
    list-style: none;
    columns: 2;
    column-gap: 1rem;
    padding-left: 0;
    margin-top: 1rem;
    font-size: 0.95rem;
}

    .treatment-list li {
        margin-bottom: 0.5rem;
    }

.info-link {
    display: inline-block;
    margin-top: 1rem;
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .info-link:hover {
        color: #ff66a3;
    }

.hours td {
    padding: 2px 8px;
    font-size: 0.95rem;
}

.note {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
}

.map-box {
    text-align: center;
    margin-top: 1rem;
}

    .map-box img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0,0,0,0.4);
    }

/* Responsive */
@media (max-width: 1000px) {
    .info-wrapper {
        flex-direction: column;
    }

    .info-column {
        width: 100%;
    }
}


/* Limit height initially */
.readmore-box {
    max-height: 5.5em; /* shows about 3–4 lines */
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

    .readmore-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2em;
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    /* Expanded state */
    .readmore-box.expanded {
        max-height: 100vh; /* enough to show full text */
    }

        .readmore-box.expanded::after {
            opacity: 0;
        }

.readmore-btn {
    background: transparent;
    border: 1px solid #e91e63;
    color: #e91e63;
    font-weight: 600;
    border-radius: 5px;
    padding: 0.4rem 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .readmore-btn:hover {
        background: #e91e63;
        color: #fff;
    }








.hidden {
    display: none !important;
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: rgba(40, 40, 40, 0.85);
    padding: 2rem;
    border-radius: 12px;
    width: 320px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}











/* Shared typography */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}

.section-subtitle {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
    opacity: .8;
    line-height: 1.5;
}

/* Split layout for two-column sections */
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

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





/* WELCOME SECTION */
.welcome-section {
    width: 100%;
    padding: 70px 0;
    background: #f3edea; /* warm light tone like your screenshot */
}

.ticks {
    list-style: none;
    padding: 0;
}

    .ticks li {
        padding-left: 26px;
        margin: 10px 0;
        position: relative;
    }

        .ticks li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
        }

.media-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    min-height: 260px;
}























/* =========================================================
   BAND SYSTEM (safe: does NOT touch offers slider)
   ========================================================= */

/* Ensure parallax background stays behind */
.parallax {
    position: relative;
    z-index: 0;
}

    .parallax::before {
        z-index: -10;
    }

/* Band base */
.band {
    width: 100%;
    padding: 70px 0;
    position: relative;
    z-index: 2;
    background: #fff; /* default solid */
    color: #111; /* default readable */
}

/* centered container */
.band__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* band titles */
.band__title {
    margin: 0 0 28px 0;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: inherit;
}

/* specific band colors like screenshot */
.band-services {
    background: #ffffff;
}

.band-welcome {
    background: #f3edea;
}

.band-accreditations {
    background: #ffffff;
}

.band-quality {
    background: #b9d0dc;
}

.band-footer {
    background: #0f2a3a;
    color: #fff;
}

/* responsive spacing */
@media (max-width:768px) {
    .band {
        padding: 45px 0;
    }

    .band__title {
        font-size: 26px;
    }
}

/* =========================================================
   Services cards: override your existing glass .card styles
   ONLY inside the white services band.
   ========================================================= */
.band-services .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.band-services .card {
    background: #fff !important;
    color: #111 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    padding: 16px;
    backdrop-filter: none !important;
}

    .band-services .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        margin: 10px 0 12px 0;
    }

    .band-services .card h3 {
        margin: 0 0 10px 0;
        font-size: 18px;
        color: #111 !important;
        text-shadow: none !important;
    }

    .band-services .card p {
        margin: 0 0 12px 0;
        opacity: .8;
        color: #333 !important;
    }

.band-services .read-more {
    border: 1px solid #e91e63;
    color: #e91e63;
    background: transparent;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
}

    .band-services .read-more:hover {
        background: #e91e63;
        color: #fff;
    }

/* =========================================================
   Welcome/Quality split + media box (safe)
   ========================================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

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

.ticks {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ticks li {
        padding-left: 26px;
        margin: 10px 0;
        position: relative;
    }

        .ticks li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 800;
            opacity: .7;
        }

.media-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    min-height: 260px;
    overflow: hidden;
}

/* Accreditations row */
.accreditations {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

    .accreditations img {
        height: 50px;
        width: auto;
    }

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

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

/* ===== Skin Care Clinic London Section ===== */

.band-treatments {
    background: #ffffff;
    text-align: center;
}

.band__subtitle {
    font-size: 18px;
    margin-bottom: 12px;
}

.band__text {
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    opacity: .85;
}

/* Treatment Grid */

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

.treatment-tile {
    display: block;
    text-decoration: none;
    color: #fff;
    background: #183a52;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease;
}

    .treatment-tile img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    .treatment-tile span {
        display: block;
        padding: 10px;
        font-size: 14px;
    }

    .treatment-tile:hover {
        transform: translateY(-3px);
    }

/* Bottom selector */

.treatment-selector {
    background: #0f2a3a;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 14px;
    align-items: end;
}

    .treatment-selector label {
        color: #fff;
        font-size: 12px;
        display: block;
        margin-bottom: 6px;
    }

    .treatment-selector select {
        width: 100%;
        padding: 10px;
        border-radius: 4px;
        border: none;
    }

.selector-btn {
    width: 100%;
    padding: 10px;
    background: #c5d4db;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

/* Responsive */

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

    .treatment-selector {
        grid-template-columns: 1fr;
    }
}



























/* NAVBAR BASE */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #e91e63;
    text-decoration: none;
}

.nav-logo img.logo {
    height: 22px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #e91e63;
}


/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #e91e63;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .menu-toggle:hover {
        color: #c2185b;
        transform: scale(1.1);
    }

/* RESPONSIVE MENU */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

        .nav-menu.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* SCROLL HIDE */
.navbar.hidden {
    top: -80px;
}
















    .nav-bag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        text-decoration: none;
        color: inherit;
    }

    .bag-svg {
        width: 30px;
        height: 30px;
    }