/* Root Variables */
:root {
    --primary-color: #e579ad;
    --light-pink: #fff3f3;
    --text-dark: #000000;
    --text-muted: #878787;
    --text-medium: #5f5f5f;
    --primary: #e579ad;
    --primary-dark: #d66b9f;
    --primary-light: #fff3f3;
    --border: #e5e7eb;
    --primary-mid: #f5c6e0;

}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: transparent !important;
    box-shadow: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}



.logo-circle {
    width: 60px;
    height: 60px;
}

/* .logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: white;
    border-radius: 50%;
} */
.navbar {
    /* background: #fff; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, .05); */
    animation: navIn .5s ease both;
}

@keyframes navIn {
    from {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: 18px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    position: relative;
    transition: color .25s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    border-radius: 2px;
    transition: width .25s;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-signin:hover {
    color: var(--text-dark);
    background-color: rgb(246 246 246);
    border-color: #cacaca;

}

.btn-outline-secondary {
    border-color: #d9d9d9;
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 600;
    background: #fff;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* text aur icon ka gap */
    position: relative;
}

/* icon slot (fixed width to avoid shifting) */
.book-btn .btn-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* both icons occupy same slot */
.book-btn .btn-icon i {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity .25s ease, transform .25s ease;
    font-size: 15px;
    line-height: 1;
}

/* default state: chevron visible */
.book-btn .chevron-icon {
    opacity: 1;
    transform: translateX(0);
}

/* default state: arrow hidden and slightly left */
.book-btn .arrow-icon {
    opacity: 0;
    transform: translateX(-8px);
}

/* hover: chevron fade + move out */
.book-btn:hover .chevron-icon {
    opacity: 0;
    transform: translateX(8px);
}

/* hover: arrow fade in + slide to place */
.book-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    font-size: 18px;
}

.book-btn {
    transition: padding .25s ease, transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.book-btn:hover {
    padding-right: 2rem;
    /* px-4 se thora zyada feel */
}

/* .btn:hover {} */

/* Hero Section */
.hero-section {
    position: relative;
    height: 672px;
    background: url('../images/Rectangle 308.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 105px;
}

.w-857px {
    width: 857px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)); */
}

.hero-section .container {
    z-index: 1;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.mt-350px {
    margin-top: 350px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Hero Bottom Section */
.hero-bottom-section {
    position: relative;
    height: 847px;
    background: url('../images/Rectangle\ 308\ \(1\).png') center/cover no-repeat;
}

/* Brand Intro */
.brand-intro {
    padding: 5rem 0;
}

.gallery-card {
    height: 440px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.02);
}

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

/* Services CTA */
.services-cta {
    padding: 5rem 0;
}

.bg-light-pink {
    background-color: var(--light-pink) !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* One section having the background image */
.hero-with-cta {
    position: relative;
    min-height: 847px;
    background: url('../images/Rectangle 308 (1).png') center/cover no-repeat;
    overflow: visible;
}

/* optional overlay */
.hero-with-cta .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* container sits above background */
.hero-with-cta .hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-with-cta .cta-card {
    position: absolute;
    left: 0;
    margin-top: 280px;
    width: 100%;
    max-width: 635px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.bg-light-pink {
    background-color: var(--light-pink) !important;
    border-radius: 25px;
    padding-bottom: 25px !important;
}

@media (max-width: 992px) {
    .hero-with-cta {
        min-height: 700px;
        padding-bottom: 140px;
    }

    .hero-with-cta .cta-card {
        position: relative;
        bottom: auto;
        margin-top: 420px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-with-cta {
        min-height: 620px;
    }

    .hero-with-cta .cta-card {
        margin-top: 360px;
        padding: 24px !important;
    }
}


/* Adjusting the overall treatments section */
.treatments-section {
    background-color: var(--light-pink);
    /* border-radius: 70px; */
    padding-top: 100px !important;
    margin-top: -50px;
}

/* Treatment Card */
.treatment-card {
    position: relative;
    height: 334px;
    /* Default height for cards */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    /* border: 0.1px solid rgba(0, 0, 0, 0.1); */
}

/* Hover effect */
.treatment-card:hover {
    transform: translateY(-5px);
}

/* Treatment Image */
.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Overlay */
.treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(229, 121, 173, 0.7);
    backdrop-filter: blur(3px);
    padding: 1rem;
    text-align: center;
}

/* Title inside the overlay */
.treatment-overlay h4 {
    font-size: 30px;
    margin: 0;
    letter-spacing: -0.6px;
}

/* Special styling for "Medical Weight Loss" card */
.treatment-card.weight-loss {
    height: 440px;
}

/* Adjust the Sugaring card height */
.treatment-card.sugaring {
    height: 300px;
    position: relative;
    /* top: 40px; */
}


.mt--94px {
    margin-top: -115px;
}

.last-left-right-card {
    height: 440px;
}


/* Featured Section */
.featured-section {
    background-color: var(--light-pink);
}

.featured-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.featured-card img {
    height: 200px;
    margin-left: 20px;
}

/* Reviews Section */
/* Root Variables */
:root {
    --primary-pink: #e579ad;
    --star-yellow: #FFA500;
    --text-dark: #000000;
    --text-gray: #666666;
    --card-bg: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Reviews Section */
.reviews-section {
    padding: 0 0;
    background-color: #ffffff;
}

.reviews-treatment-section {
    background-color: #fff3f3;
}

/* Google Rating Card - Left Side */
.google-rating-card {
    background: transparent;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.profile-image-wrapper {
    margin-bottom: 15px;
}

.profile-image {
    width: 63px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rating-number {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 8px 0;
}

.large-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
}

.star-img {
    width: 26px;
    height: 26px;
}

.review-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.powered-by {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.google-text {
    font-weight: 700;
    color: #1a73e8;
}

.g-second-letter {
    color: #FF1D00;
}

.g-third-letter {
    color: #FFB900;
}

.g-five-letter {
    color: #00C950;
}


.review-btn {
    background-color: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 26px;
    /* padding: 10px 20px; */
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    justify-content: space-evenly;
    height: 37px;
}

.review-btn:hover {
    background-color: #d66b9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 121, 173, 0.3);
}

.google-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Review Slider Container */
.review-slider-container {
    position: relative;
    padding: 30px 50px;
}

/* Swiper Styles */
.reviewSwiper {
    padding: 0 0 60px 0;
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

/* Review Card - Slider Items */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 215px;
    margin: 20px 5px;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: var(--star-yellow);
    font-size: 18px;
}

.star {
    color: var(--star-yellow);
    font-size: 18px;
}

.review-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: auto;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.reviewer-avatar {
    width: 40px;
    height: 41px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-nav i {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.slider-nav:hover i {
    color: white;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-nav.swiper-button-disabled:hover {
    transform: translateY(-50%);
}

/* Pagination Dots */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d0d0d0;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-pink);
    width: 12px;
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .review-slider-container {
        padding: 0 45px;
    }

    .google-rating-card {
        margin-bottom: 40px;
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-slider-container {
        padding: 0 40px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
    }

    .slider-nav i {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .reviews-section {
        padding: 40px 0;
    }

    .google-rating-card {
        padding: 20px;
    }

    .profile-image {
        width: 55px;
        height: 56px;
    }

    .rating-number {
        font-size: 17px;
    }

    .star-img {
        width: 22px;
        height: 22px;
    }

    .review-slider-container {
        padding: 0 35px;
    }

    .review-card {
        padding: 20px;
        min-height: 200px;
    }

    .review-text {
        font-size: 14px;
    }

    .slider-nav {
        width: 34px;
        height: 34px;
    }

    .slider-nav i {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .review-slider-container {
        padding: 0 32px;
    }

    .review-card {
        padding: 18px;
        min-height: 190px;
    }

    .review-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .reviewer-avatar {
        width: 36px;
        height: 37px;
    }

    .reviewer-name-small {
        font-size: 13px;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
    }

    .slider-nav i {
        font-size: 14px;
    }
}

/* Smooth transitions */
.swiper-slide {
    transition: opacity 0.3s ease;
}

/* Loading state */
img {
    /* opacity: 0; */
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}


.btn-primary-custom:hover {
    background-color: #d66b9f;
}


/* Events Section */
.events-section {
    padding: 5rem 0;
}

/* Trust Section */
.trust-section {
    background-color: var(--light-pink);
    border-radius: 70px;
}

.partner-logo {
    max-height: 50px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* Results Section */
.results-section {
    background-color: var(--light-pink);
}

.result-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: scale(1.05);
}

.result-card img {
    width: 100%;
    height: 218px;
    object-fit: cover;
}

.result-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Awards Section */
.awards-section {
    padding: 5rem 0;
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
}

.location-filters {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.location-filters .btn {
    font-size: 20px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.location-filters .btn.active {
    background-color: #ebebeb;
    border-color: black;
    color: black;
}

.location-card {
    background-color: #ebebeb;
}

.location-card img {
    max-height: 414px;
    object-fit: cover;
}

/* FAQ Section */
/* .faq-section {
    padding: 5rem 0;
} */

.accordion-button {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.accordion-button:not(.collapsed) {
    background-color: #f6f6f6;
    color: var(--text-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Footer */
.footer {
    background-color: #f6f6f6;
    border-radius: 30px 30px 0 0;
}

.qr-code {
    width: 91px;
    height: 91px;
}

.social-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        height: 600px;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .gallery-card {
        height: 300px;
    }

    .treatment-card {
        height: 250px;
    }

    .treatment-overlay h4 {
        font-size: 24px;
    }

    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .gallery-card {
        height: 250px;
    }

    .treatment-card {
        height: 220px;
    }

    .treatment-overlay h4 {
        font-size: 20px;
    }

    .featured-card img {
        height: 150px;
    }

    .result-card img {
        height: 150px;
    }

    .location-card img {
        max-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 400px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .gallery-card {
        height: 200px;
    }

    .treatment-card {
        height: 200px;
    }

    .treatment-overlay h4 {
        font-size: 18px;
    }

    .btn-primary-custom {
        font-size: 16px;
        padding: 0.4rem 1.2rem;
    }

    .featured-card .row {
        flex-direction: column;
    }

    .featured-card img {
        height: 200px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d66b9f;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Events Section - Full Width Design */
.events-section-full {
    width: 100%;
    background-color: #DCC5B4;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.events-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 737px;
    position: relative;
}

/* Left Content Area */
.events-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: #DCC5B4;
    padding: 80px 60px 80px 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.events-heading {
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.events-description {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 630px;
    letter-spacing: 0.05rem;
}

.events-btn {
    background-color: #e579ad;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.events-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.events-btn:hover {
    background-color: #d66b9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 121, 173, 0.3);
}

.events-btn:hover i {
    transform: translateX(4px);
}

/* Right Image Area */
.events-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 1199.98px) {
    .events-content {
        width: 45%;
        padding: 60px 40px 60px 60px;
    }

    .events-heading {
        font-size: 50px;
    }

    .events-description {
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .events-container {
        min-height: 450px;
    }

    .events-content {
        width: 50%;
        padding: 50px 30px 50px 50px;
        background: linear-gradient(to right, #f5f0eb 0%, #f5f0eb 60%, rgba(245, 240, 235, 0.9) 80%, transparent 100%);
    }

    .events-heading {
        font-size: 42px;
    }

    .events-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .events-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .events-image-wrapper {
        width: 75%;
    }
}

@media (max-width: 767.98px) {
    .events-section-full {
        background-color: #ffffff;
    }

    .events-container {
        flex-direction: column;
        min-height: auto;
    }

    .events-content {
        position: relative;
        width: 100%;
        padding: 50px 30px;
        background: #f5f0eb;
    }

    .events-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .events-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .events-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .events-image-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .events-content {
        padding: 40px 20px;
    }

    .events-heading {
        font-size: 32px;
    }

    .events-description {
        font-size: 13px;
    }

    .events-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .events-image-wrapper {
        height: 300px;
    }
}


/* Search Section */
.search-section {
    margin: 60px auto;
    max-width: 1290px;
}

.search-bar {
    background: #f3f3f5;
    border-radius: 9px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar input {
    background: transparent;
    border: none;
    flex: 1;
    font-size: 20px;
    color: #717182;
    outline: none;
}

.filter-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Category Pills */
.category-pills {
    margin: 40px 0;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.category-pill {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 33554400px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.category-pill.active {
    background: #e579ad;
    color: white;
    border-color: #e579ad;
}

/* Treatments Section */
.treatments-title {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.8px;
    margin: 60px 0 40px;
}

.treatment-card2nd {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.treatment-card2nd img {
    width: 100%;
    height: 296px;
    object-fit: cover;
    border-radius: 15px;
}

.treatment-info {
    padding: 20px;
    text-align: center;
}

.treatment-info h3 {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.treatment-info p {
    font-weight: 600;
    font-size: 15px;
    color: #878787;
    margin-bottom: 20px;
}

.btn-book-treatment {
    background: #e579ad;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Featured In Section */
.featured-section {
    background: #e4d3c8;
    padding: 50px 0;
    /* margin: 80px 0; */
}

.featured-title {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 4.5px;
    margin-bottom: 40px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 88px;
    flex-wrap: wrap;
}

.featured-logos img {
    height: 35px;
    width: auto;
}

/* CTA Section */
.cta-section {
    /* background: #e4d3c8; */
    border-radius: 70px;
    /* padding: 80px 0; */
    margin: 80px 0;
    position: relative;
}

.cta-content h2 {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-weight: 600;
    font-size: 45px;
    letter-spacing: -0.9px;
    margin-bottom: 30px;
}

/* Membership Section */
.membership-section {
    background: #e4d3c8;
    /* padding: 80px 0; */
    /* margin: 80px 0; */
}

.membership-content h2 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.membership-content p {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 526px;
}

/* Before/After Section */
.before-after-section {
    background: #fff3f3;
    border-radius: 70px;
    padding: 30px 0;
    /* margin: 80px 0; */
}

.before-after-title {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 60px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.before-after-card {
    text-align: center;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.before-after-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-img {
    z-index: 1;
}

.after-img {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    background: #e579ad;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-button::before,
.slider-button::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.slider-button::before {
    transform: rotate(135deg);
    left: 12px;
}

.slider-button::after {
    transform: rotate(-45deg);
    right: 12px;
}

.before-after-card h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.before-after-card p {
    font-size: 15px;
    color: #000;
}


.testimonials-section {
    position: relative;
    overflow: hidden;
    background: #fff3f3;
    padding: 30px 0;
}

/* fade overlay */
.testimonials-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 720px;
    background: linear-gradient(to top,
            rgba(255, 243, 243, 1) 0%,
            rgba(255, 243, 243, 0.995) 0%,
            rgba(255, 243, 243, 0.99) 15%,
            rgba(255, 243, 243, 0.975) 20%,
            rgba(255, 243, 243, 0.95) 8%,
            rgba(255, 243, 243, 0.90) 20%,
            rgba(255, 243, 243, 0.78) 45%,
            rgba(255, 243, 243, 0.55) 20%,
            rgba(255, 243, 243, 0.25) 50%,
            rgba(255, 243, 243, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* container should NOT have z-index */
.testimonials-section .container {
    position: relative;
    z-index: auto;
}

/* See all button ABOVE overlay */
.testimonials-section .btn-see-all {
    position: relative;
    z-index: 3;
}


.testimonials-heading {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

/* Testimonial Cards - LEFT ALIGNED */
.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

/* Stars - LEFT ALIGNED */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars .star {
    color: #FFA500;
    font-size: 16px;
}

/* Testimonial Text - LEFT ALIGNED */
.testimonial-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

/* Author Info - LEFT ALIGNED */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

/* See All Button */
.btn-see-all {
    background-color: #e579ad;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-see-all i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-see-all:hover {
    background-color: #d66b9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 121, 173, 0.3);
}

.btn-see-all:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .testimonials-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .testimonial-card {
        padding: 22px;
    }
}

@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        margin-bottom: 20px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-heading {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 12px;
    }

    .btn-see-all {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-heading {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
    }

    .btn-see-all {
        font-size: 13px;
        padding: 10px 24px;
    }
}

/* Locations Section */
.locations-section {
    padding: 30px 0;
}

.locations-title {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.8px;
    margin-bottom: 40px;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.location-filter {
    background: #ebebeb;
    border: 1px solid transparent;
    border-radius: 24.5px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.location-filter.active {
    border-color: #000;
}

.location-card {
    background: #ebebeb;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.location-map {
    height: 414px;
    border-radius: 30px 0 0 30px;
}

.location-info {
    padding: 40px;
}

.location-info h3 {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
}

.location-info .country {
    font-weight: 600;
    font-size: 20px;
    color: #878787;
    margin-bottom: 30px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.location-detail h4 {
    font-weight: 600;
    font-size: 20px;
    color: #878787;
    margin-bottom: 10px;
}

.location-detail p {
    font-weight: 600;
    font-size: 15px;
    color: #878787;
}

.location-hours {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #f6f6f6;
    border-radius: 30px;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-logo img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 15px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #e579ad;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content {
        left: 20px;
        top: 300px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}


/* Trust Section */
.trust-section {
    background-color: #fff3f3;
    border-radius: 70px;
    padding: 80px 0;
}

.trust-heading {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 0.9px;
    margin-bottom: 3rem;
}

/* Partner Logos Slider */
.partner-logos-wrapper {
    padding: 20px 0;
    overflow: hidden;
}

.partnerSwiper {
    overflow: visible;
}

.partnerSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.partnerSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.partner-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Trust Image Container */
.trust-image-container {
    max-width: 940px;
    margin: 0 auto;
}

.trust-image-wrapper {
    background: white;
    border-radius: 30px;
    /* padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.trust-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .trust-heading {
        font-size: 40px;
    }

    .partner-logo {
        max-height: 45px;
    }
}

@media (max-width: 991.98px) {
    .trust-section {
        border-radius: 50px;
        padding: 60px 0;
    }

    .trust-heading {
        font-size: 36px;
    }

    .partner-logo {
        max-height: 40px;
    }

    .trust-image-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .trust-section {
        border-radius: 30px;
        padding: 50px 0;
    }

    .trust-heading {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .partner-logo {
        max-height: 35px;
    }

    .trust-image-wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .trust-image {
        border-radius: 15px;
    }
}

@media (max-width: 575.98px) {
    .trust-heading {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .partner-logo {
        max-height: 30px;
    }

    .trust-image-wrapper {
        padding: 15px;
    }
}


/* About Us Page Styles */
/* About Hero Section */
.about-hero-section {
    padding: 110px 0 80px;
    background-color: #ffffff;
}

.about-hero-image img {
    width: 100%;
    height: 799px;
    object-fit: cover;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.about-hero-content {
    padding-left: 40px;
}

.about-hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.about-hero-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
}

/* Values Section */
.values-section {
    /* padding: 80px 0; */
    background-color: #ffffff;
}

.values-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -0.8px;
}

.values-subtitle {
    font-size: 20px;
}

.value-content p {
    font-size: 20px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.value-icon {
    flex-shrink: 0;
}

.value-icon i {
    color: #e579ad;
    font-size: 24px;
}

.value-content h3 {
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #5f5f5f;
    margin: 0;
}

.values-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Team Section */
.team-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.team-section-title {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    letter-spacing: -0.9px;
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
}

.team-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    background: #ffffff;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.team-role {
    font-size: 15px;
    font-weight: 400;
    color: #878787;
    margin: 0;
}

/* Responsive About Us Styles */
@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 120px 0 60px;
    }

    .about-hero-title {
        font-size: 44px;
    }

    .about-hero-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .values-title {
        font-size: 36px;
    }

    .team-section-title {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 100px 0 40px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-text {
        font-size: 15px;
    }

    .values-section {
        /* padding: 60px 0; */
    }

    .values-title {
        font-size: 32px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .team-image {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 32px;
    }

    .values-title {
        font-size: 28px;
    }

    .team-section-title {
        font-size: 32px;
    }

    .team-image {
        height: 250px;
    }
}

.about-hero-image {
    width: 100%;
    height: 799px;
    object-fit: cover;
}


/* Section background like SS */
.featured-section {
    background: var(--light-pink);
    padding: 50px 0;
}

.featured-title {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 35px;
    color: #111;
}

/* .logo-marquee {
    overflow: hidden;
    position: relative;
} */

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* .logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--light-pink), rgba(255, 255, 255, 0));
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--light-pink), rgba(255, 255, 255, 0));
} */

/* Track */
.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 90px;
    /* spacing between logos (like SS) */
    animation: marquee 18s linear infinite;
    padding: 10px 0;
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* Logo styling */
.partner-logo {
    height: 46px;
    /* adjust per your assets */
    width: auto;
    object-fit: contain;
    opacity: 0.70;
    filter: grayscale(100%);
    transition: opacity .25s ease, filter .25s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Continuous scroll */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* because we duplicated set */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .logo-track {
        gap: 50px;
        animation-duration: 14s;
    }

    .partner-logo {
        height: 34px;
    }
}


/* ===================================
   BLOG PAGE STYLES
   =================================== */

/* Blog Header Section */
.blog-header-section {
    padding: 140px 0 40px;
    background-color: #ffffff;
}

.blog-page-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: -55px;
}

/* Blog List Section */
.blog-list-section {
    margin-top: 70px;
    padding: 40px 0 80px;
    background-color: #ffffff;
}

/* Blog Post Item */
.blog-post-item {
    margin-bottom: 80px;
}

.blog-post-item:last-child {
    margin-bottom: 0;
}

/* Blog Post Images - Two Column Layout */
.blog-post-images {
    display: flex;
    gap: 20px;
    height: 100%;
}

.blog-post-img.img-small {
    width: 575px;
    height: 396px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-post-img.img-large {
    width: 575px;
    height: 569px;
    object-fit: cover;
    border-radius: 10px;
}

/* Single Image Layout */
.blog-post-single-img {
    height: 396px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-single-img .blog-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full Width Image */
.blog-post-full-img {
    width: 1172px;
    height: 563px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Side Image in Two Column Layout */
.blog-post-side-img {
    margin-top: 20px;
    height: 396px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Post Content */
.blog-post-content {
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.blog-post-meta {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-post-meta .author {
    font-weight: 600;
}

.blog-post-excerpt {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Read More Button */
.btn-blog-read {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-blog-read:hover {
    background-color: #d66b9f;
    transform: translateX(3px);
    color: white;
}

.btn-blog-read i {
    font-size: 16px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.btn-blog-read:hover i {
    transform: rotate(90deg) translateX(3px);
}

/* Full Width Blog Post */
.blog-post-full {
    display: flex;
    flex-direction: column;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .blog-page-title {
        font-size: 44px;
    }

    .blog-post-title {
        font-size: 36px;
    }

    .blog-post-img.img-small {
        width: 100%;
        height: 350px;
    }

    .blog-post-img.img-large {
        width: 100%;
        height: 400px;
    }

    .blog-post-full-img {
        height: 450px;
    }

    .blog-post-side-img {
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    .blog-header-section {
        padding: 120px 0 30px;
    }

    .blog-page-title {
        font-size: 40px;
    }

    .blog-post-item {
        margin-bottom: 60px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-images {
        flex-direction: column;
    }

    .blog-post-img.img-small,
    .blog-post-img.img-large {
        width: 100%;
        height: 350px;
    }

    .blog-post-full-img {
        height: 400px;
    }

    .blog-post-single-img {
        height: 350px;
        margin-bottom: 20px;
    }

    .blog-post-side-img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .blog-header-section {
        padding: 110px 0 25px;
    }

    .blog-page-title {
        font-size: 36px;
    }

    .blog-list-section {
        padding: 30px 0 60px;
    }

    .blog-post-item {
        margin-bottom: 50px;
    }

    .blog-post-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .blog-post-meta {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .blog-post-excerpt {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .blog-post-img.img-small,
    .blog-post-img.img-large {
        height: 300px;
    }

    .blog-post-full-img {
        height: 350px;
        margin-bottom: 25px;
    }

    .blog-post-single-img {
        height: 300px;
    }

    .blog-post-side-img {
        height: 280px;
    }

    .btn-blog-read {
        padding: 8px 20px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .blog-page-title {
        font-size: 32px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-meta {
        font-size: 13px;
    }

    .blog-post-excerpt {
        font-size: 13px;
    }

    .blog-post-img.img-small,
    .blog-post-img.img-large {
        height: 250px;
    }

    .blog-post-full-img {
        height: 300px;
    }

    .blog-post-single-img {
        height: 250px;
    }

    .blog-post-side-img {
        height: 250px;
    }

    .btn-blog-read {
        padding: 8px 18px;
        font-size: 16px;
    }
}

/* Hover Effects */
.blog-post-item {
    transition: transform 0.3s ease;
}

/* .blog-post-item:hover {
    transform: translateY(-5px);
} */

.blog-post-img {
    transition: transform 0.5s ease;
}

/* .blog-post-item:hover .blog-post-img {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
} */

.blog-post-img.img-small,
.blog-post-img.img-large,
.blog-post-single-img,
.blog-post-side-img {
    overflow: hidden;
}

/* Loading States */
.blog-post-img {
    background: #f0f0f0;
}

img[src=""] {
    opacity: 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn-blog-read:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .blog-header-section,
    .locations-section,
    .faq-section,
    footer {
        display: none;
    }

    .blog-post-item {
        page-break-inside: avoid;
        margin-bottom: 40px;
    }

    .blog-post-img,
    .blog-post-full-img {
        max-height: 400px;
    }
}

.microneedling-img-small {
    width: 427px;
    height: 396px;
}

.microneedling-img-large {
    width: 733px;
    height: 396px;
}


/* Package Sections */
.packages-section {
    padding: 40px 0;
}

.package-title {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -0.8px;
    text-align: center;
    margin-bottom: 40px;
}

.package-card {
    background: #fff3f3;
    border-radius: 20px;
    /* padding: 50px; */
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.package-card.reverse {
    flex-direction: row-reverse;
}

.package-image {
    flex: 0 0 473px;
    height: 590px;
    border-radius: 20px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    flex: 1;
    padding: 60px;
}

.package-content h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.package-content .saving {
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    color: #878787;
    margin-bottom: 20px;
}

.package-divider {
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

.package-description {
    font-size: 25px;
    font-weight: 600;
    color: #878787;
    line-height: 1.5;
    margin-bottom: 30px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 40px;
}

.package-price .price {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.package-price .value {
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    color: #878787;
}


/* Additional Membership Page Styles */
.membership-hero {
    padding: 140px 0 0;
    background: white;
}

.membership-hero-content {
    text-align: start;
    margin-bottom: 40px;
}

.membership-hero-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.membership-hero-description {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Image + Membership Cards Layout */
.membership-section-wrapper {
    position: relative;
}

.membership-hero-image {
    width: 100%;
    max-width: 900px;
    height: 1400px;
    object-fit: cover;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.membership-cards-container {
    position: absolute;
    right: 0;
    top: 0;
    left: 60%;
    width: 500px;
}

.membership-card {
    background: var(--light-pink);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

.membership-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-align: center;
    margin-bottom: 12px;
}

.membership-card .annual-fee {
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.membership-card .description {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-become-member {
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-become-member:hover {
    background: #d66b9f;
    transform: translateY(-2px);
}

/* Gold Membership Full Width Card */
.gold-membership-section {
    padding: 80px 0;
}

.gold-membership-card {
    background: var(--light-pink);
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
}

.gold-membership-image {
    flex: 0 0 473px;
    height: 590px;
    border-radius: 20px;
    overflow: hidden;
}

.gold-membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-membership-content {
    flex: 1;
    padding: 50px;
}

.gold-membership-content h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.gold-membership-content .saving {
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.gold-divider {
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

.gold-membership-content .description {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.gold-price-info {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.gold-price-info .price {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.gold-price-info .value {
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
}

/* Events Full Width Section */
.events-full-section {
    background: #DCC5B4;
    position: relative;
    overflow: hidden;
}

.events-full-overlay {
    background: rgba(255, 243, 243, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 594px;
    z-index: 1;
}

.events-full-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 100px 54px;
}

.events-full-title {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.events-full-description {
    font-size: 18px;
    font-weight: 500;
    max-width: 488px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.events-full-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

.approach-image-container {
    position: relative;
    width: 100%;
    max-width: 888px;
    height: 870px;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.approach-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.approach-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.approach-item {
    margin-bottom: 40px;
}

.approach-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.approach-icon {
    width: 33px;
    height: 33px;
}

.approach-item h4 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.approach-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .membership-cards-container {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 600px;
        margin: 40px auto 0;
    }

    .membership-hero-image {
        height: 800px;
    }

    .gold-membership-card {
        flex-direction: column;
    }

    .gold-membership-image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
    }

    .approach-image-container {
        height: 600px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .membership-hero-title {
        font-size: 32px;
    }

    .membership-hero-image {
        height: 600px;
    }

    .membership-cards-container {
        width: 100%;
    }

    .gold-membership-content {
        padding: 30px;
    }

    .gold-membership-content h3 {
        font-size: 24px;
    }

    .gold-membership-content .description {
        font-size: 18px;
    }

    .events-full-title {
        font-size: 42px;
    }

    .approach-content {
        padding-left: 20px;
    }

    .approach-title {
        font-size: 28px;
    }

    .approach-item h4 {
        font-size: 24px;
    }
}


/* Desktop/LG: cards right side, not cut at 1060px */
.membership-section-wrapper {
    position: relative;
}

.membership-cards-container {
    position: absolute;
    top: 0;
    right: clamp(16px, 3vw, 60px);
    /* ✅ always inside screen */
    left: auto;
    /* ✅ remove left:60% */
    width: min(520px, 44vw);
    /* ✅ fits in 1060px */
    z-index: 5;
}

.membership-hero-image {
    width: min(900px, 58vw);
    /* ✅ image + cards both fit */
    height: 1400px;
    object-fit: cover;
}

/* Only stack on tablet/mobile */
@media (max-width: 991.98px) {
    .membership-cards-container {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 600px;
        margin: 24px auto 0;
        padding: 0 16px;
    }

    .membership-hero-image {
        width: 100%;
        max-width: none;
        height: 520px;
        /* ✅ mobile pe huge height nahi */
        border-radius: 0;
        /* optional */
    }
}

/* ==============================
   FEATURED LOGOS (Responsive)
   ============================== */

.featured-logos-section {
    background: #E4D3C8;
    padding: clamp(28px, 4vw, 60px) 0;
    overflow: hidden;
    /* ✅ no horizontal scroll */
}

.featured-logos-section .featured-title {
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: clamp(14px, 1.8vw, 18px);
    margin: 0 0 clamp(18px, 3vw, 35px);
    color: #111;

    /* desktop default: left (because you used text-start) */
    text-align: left;
}

/* marquee wrapper must be relative for ::before/::after fades */
.featured-logos-section .logo-marquee {
    position: relative;
    overflow: hidden;
}

/* Edge fade (optional but looks premium) */
.featured-logos-section .logo-marquee::before,
.featured-logos-section .logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: clamp(36px, 7vw, 120px);
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.featured-logos-section .logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #E4D3C8 0%, rgba(228, 211, 200, 0) 100%);
}

.featured-logos-section .logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #E4D3C8 0%, rgba(228, 211, 200, 0) 100%);
}

/* Track */
.featured-logos-section .logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: clamp(28px, 6vw, 88px);
    /* ✅ responsive gap */
    padding: 8px 0;
    will-change: transform;
    animation: marquee 18s linear infinite;
}

/* Logos */
.featured-logos-section .partner-logo {
    height: clamp(24px, 3.2vw, 35px);
    /* ✅ responsive size */
    width: auto;
    object-fit: contain;
    opacity: .75;
    filter: grayscale(100%);
    transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.featured-logos-section .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-1px);
}

/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==============================
   Breakpoints
   ============================== */

/* Tablet: center title, slightly faster marquee */
@media (max-width: 991.98px) {
    .featured-logos-section .featured-title {
        text-align: center;
    }

    .featured-logos-section .logo-track {
        animation-duration: 16s;
    }
}

/* Mobile: smaller padding + faster, tighter */
@media (max-width: 575.98px) {
    .featured-logos-section {
        padding: 24px 0;
    }

    .featured-logos-section .logo-track {
        gap: 36px;
        animation-duration: 14s;
    }
}

/* Accessibility: stop motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    .featured-logos-section .logo-track {
        animation: none;
    }
}


.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: #FEF1F3 !important;
}

.fs-15px {
    font-size: 13px !important;
}

/* ══ NAVBAR ══ */
.spa-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--border);
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(229, 121, 173, .35);
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    letter-spacing: -.4px;
    line-height: 1.1;
}

.nav-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-book-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(229, 121, 173, .3);
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: var(--primary-dark);
}

.nav-more-wrap {
    position: relative;
}

.nav-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.nav-more-btn:hover {
    border-color: #bbb;
}

.nav-more-btn i {
    font-size: 13px;
    transition: transform .25s;
}

.nav-more-btn.open i {
    transform: rotate(180deg);
}

.nav-more-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 230px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 8px 0;
    display: none;
    z-index: 1000;
    animation: dropIn .18s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-more-dropdown.show {
    display: block;
}

.nav-more-dropdown .dd-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #aaa;
    padding: 10px 18px 4px;
}

.nav-more-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    margin: 1px 6px;
    transition: background .15s, color .15s;
}

.nav-more-dropdown a i {
    font-size: 15px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.nav-more-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 6px 14px;
}

@media (max-width: 400px) {
    .nav-logo-text {
        display: none;
    }

    .spa-navbar {
        padding: 0 14px;
    }
}

/* ══ TOP BAR ══ */
.menu-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0 12px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #15803d;
}

.open-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #15803d;
}

.toggle-group {
    display: inline-flex;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.toggle-group button {
    border: none;
    background: #fff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
    font-family: 'Inter', sans-serif;
}

.toggle-group button.active {
    background: #111;
    color: #fff;
}

/* Location dropdown */
.loc-pill-wrap {
    position: relative;
}

.filter-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
    white-space: nowrap;
}

.filter-pill-btn:hover {
    border-color: #999;
}

.filter-pill-btn i {
    color: var(--text-muted);
    font-size: 13px;
}

.filter-pill-btn.open {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill-btn.open i {
    color: var(--primary);
}

.loc-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .11);
    padding: 8px 0;
    z-index: 500;
    display: none;
    animation: dropIn .18s ease;
}

.loc-dropdown.show {
    display: block;
}

.loc-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: background .15s;
}

.loc-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.loc-dropdown-item.selected {
    color: var(--primary);
    font-weight: 700;
}

.loc-dropdown-item i {
    font-size: 14px;
    color: var(--text-muted);
}

.loc-dropdown-item.selected i {
    color: var(--primary);
}

/* ══ LAYOUT SHELL ══ */
.treatments-shell {
    display: flex;
    align-items: flex-start;
    /* padding: 0 0 80px; */
}

/* ══ SIDEBAR ══ */
.menu-sidebar {
    width: 210px;
    flex-shrink: 0;
    position: sticky;
    top: 62px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 18px 0;
    scrollbar-width: none;
}

.menu-sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-search-wrap {
    position: relative;
    margin: 0 8px 14px;
}

.sidebar-search-wrap i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
}

.sidebar-search-wrap input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px 8px 32px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.sidebar-search-wrap input:focus {
    border-color: var(--primary);
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    border-radius: 8px;
    margin: 1px 6px;
    text-decoration: none;
    transition: background .18s, color .18s;
}

.sidebar-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-link.active {
    background: #111;
    color: #fff;
    font-weight: 600;
}

/* ══ MOBILE FILTER BAR ══ */
.mobile-filter-bar {
    display: none;
    position: sticky;
    top: 62px;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-filter-bar::-webkit-scrollbar {
    display: none;
}

.mobile-filter-inner {
    display: flex;
    gap: 8px;
    padding: 0 16px;
    width: max-content;
}

.mob-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    flex-shrink: 0;
}

.mob-pill.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.mob-pill:not(.active):hover {
    border-color: #999;
}

.mob-pill-search {
    width: 36px;
    height: 34px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.mob-pill-search i {
    font-size: 14px;
    color: #555;
}

/* ══ MAIN CONTENT ══ */
.menu-main {
    flex: 1;
    min-width: 0;
    padding: 22px 0 0 28px;
}

.menu-page-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 4px;
}

/* ══ CATEGORY SECTION ══ */
.cat-section {
    margin-bottom: 48px;
    scroll-margin-top: 80px;
}

.cat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cat-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    letter-spacing: -.3px;
}

.cat-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}

/* ══ 3-COLUMN GRID ══ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ══ SERVICE CARD ══ */
.t-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07), 0 4px 16px rgba(0, 0, 0, .07);
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(229, 121, 173, .22);
}

.t-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Badge on image */
.t-card-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.badge-new {
    background: var(--primary);
    color: #fff;
}

.badge-popular {
    background: #f59e0b;
    color: #fff;
}

.badge-value {
    background: #15803d;
    color: #fff;
}

.badge-premium {
    background: #7c3aed;
    color: #fff;
}

.t-card-body {
    padding: 14px 14px 44px;
    flex: 1;
}

.t-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}

.t-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 7px;
}

/* Detail meta row */
.t-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.t-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.t-card-meta-item i {
    font-size: 11px;
    color: var(--primary);
}

.t-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Tags */
.t-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.t-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    white-space: nowrap;
}

/* Book button */
.t-card-add {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary);
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 8px rgba(229, 121, 173, .35);
    font-family: 'Inter', sans-serif;
}

.t-card-add:hover {
    background: var(--primary-dark);
    transform: scale(1.04);
}

.t-card-add i {
    font-size: 11px;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 30px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1199px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 991px) {
    .menu-sidebar {
        width: 170px;
    }

    .menu-main {
        padding-left: 18px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .menu-sidebar {
        display: none;
    }

    .mobile-filter-bar {
        display: block;
    }

    .treatments-shell {
        flex-direction: column;
    }

    .menu-main {
        padding: 16px 0 0;
    }

    .menu-page-title {
        font-size: 22px;
    }

    .menu-topbar {
        padding: 12px 0 10px;
        gap: 8px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .t-card-img {
        height: 145px;
    }
}

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

.btn-appointment {
    background: #e579ad;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* ══════════════════════════════════════════
   LOCATIONS SECTION
   ══════════════════════════════════════════ */
.locations-section {
    padding: 30px 0 40px;
    background: #fff;
}

/* Title row */
.locations-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.locations-title-row h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.6px;
    margin: 0;
}

.locations-nav-arrows {
    display: flex;
    gap: 8px;
}

.loc-arrow-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid #c8c8c8;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.loc-arrow-btn:hover {
    background: #e579ad;
    border-color: #e579ad;
    color: #fff;
}

.loc-arrow-btn i {
    font-size: 20px;
    color: #333;
}

.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
    font-weight: 900 !important;
}

.loc-arrow-btn:hover i {
    color: #fff;
}

/* Filter pills row */
.location-filters-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 24px;
}

.location-filters-wrap::-webkit-scrollbar {
    display: none;
}

.location-filters-inner {
    display: flex;
    gap: 10px;
    width: max-content;
    padding-bottom: 4px;
}

.loc-pill {
    background: #f0f0f0;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.loc-pill:hover {
    border-color: #aaa;
}

.loc-pill.active {
    border-color: #000;
    background: #f0f0f0;
    font-weight: 600;
}

/* Location card */
.location-card-wrap {
    background: #ebebeb;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    min-height: 400px;
}

/* Map side */
.location-map-col {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-map-col iframe,
.location-map-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

/* Info side */
.location-info-col {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    background: #ebebeb;
    position: relative;
}

/* Get Directions button – top right */
.loc-get-directions {
    position: absolute;
    top: 40px;
    right: 50px;
    background: #e579ad;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.loc-get-directions:hover {
    background: #d66b9f;
}

.loc-get-directions i {
    font-size: 12px;
}

.loc-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px;
}

.loc-country {
    font-size: 13px;
    font-weight: 500;
    color: #878787;
    margin: 0 0 20px;
}

/* Address / Contact grid */
.loc-details-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 0 24px;
    margin-bottom: 20px;
}

.loc-detail-label {
    font-size: 20px;
    font-weight: 600;
    color: #878787;
    margin: 0 0 4px;
}

.loc-detail-value {
    font-size: 13.5px;
    font-weight: 500;
    color: #878787;
    margin: 0;
    line-height: 1.6;
}

/* Hours row */
.loc-hours-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.loc-hours-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.loc-see-hours {
    font-size: 15px;
    font-weight: 500;
    color: #878787;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.loc-see-hours:hover {
    color: #e579ad;
}

/* Action buttons */
.loc-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.loc-btn {
    background: #e579ad;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.loc-btn:hover {
    background: #d66b9f;
}

.loc-btn i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .location-card-wrap {
        flex-direction: column;
    }

    .location-map-col {
        flex: 0 0 200px;
        height: 200px;
    }

    .location-info-col {
        padding: 20px;
    }

    .loc-get-directions {
        position: static;
        margin-bottom: 16px;
        width: fit-content;
    }

    .loc-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .locations-title-row h2 {
        font-size: 26px;
    }

    .loc-pill {
        font-size: 13px;
        padding: 7px 16px;
    }
}



/* ══════════════════════════════════════════
        FOOTER  (pixel-perfect)
        ══════════════════════════════════════════ */
.site-footer {
    background-color: #f6f6f6;
    border-radius: 30px 30px 0 0;
    /* margin-top: 60px; */
    font-family: 'Inter', sans-serif;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    -ms-border-radius: 30px 30px 0 0;
    -o-border-radius: 30px 30px 0 0;
}

/* TOP ROW */
.footer-top {
    padding: 44px 70px 32px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.footer-logo-wrap {
    flex: 0 0 auto;
    margin-right: 52px;
}

.footer-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-nav-cols {
    display: flex;
    align-items: flex-start;
    gap: 52px;
    flex: 0 0 auto;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-nav-head {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.footer-nav-head:hover {
    color: #e579ad;
}

.footer-nav-sub {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.footer-nav-sub:hover {
    color: #e579ad;
}

.footer-spacer {
    flex: 1 1 auto;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.footer-qr-img {
    width: 80px;
    height: 80px;
    display: block;
    object-fit: contain;
}

.footer-book-btn {
    background-color: #e579ad;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .25s, padding-right .25s;
    position: relative;
}

.footer-book-btn:hover {
    background-color: #d66b9f;
    padding-right: 28px;
}

.footer-book-btn .btn-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.footer-book-btn .btn-icon i {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: opacity .25s, transform .25s;
    line-height: 1;
}

.footer-book-btn .chevron-icon {
    opacity: 1;
    transform: translateX(0);
}

.footer-book-btn .arrow-icon {
    opacity: 0;
    transform: translateX(-6px);
}

.footer-book-btn:hover .chevron-icon {
    opacity: 0;
    transform: translateX(6px);
}

.footer-book-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* DIVIDER */
.footer-divider {
    border: none;
    border-top: 1px solid #d9d9d9;
    margin: 0 60px;
}

/* BOTTOM BAR */
.footer-bottom {
    padding: 18px 60px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-policy-links a {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.footer-policy-links a:hover {
    color: #e579ad;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
    cursor: pointer;
}

.footer-social-btn:hover {
    background: #e579ad;
}

.footer-social-btn i {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.footer-copy {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

.footer-made-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #d0d0d0;
    border-radius: 999px;
    padding: 5px 14px 5px 5px;
    background: #fff;
    text-decoration: none;
    transition: box-shadow .2s;
    white-space: nowrap;
}

.footer-made-badge:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}

.footer-made-badge-logo {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-made-badge span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1199.98px) {
    .footer-top {
        padding: 40px 40px 28px;
    }

    .footer-divider {
        margin: 0 40px;
    }

    .footer-bottom {
        padding: 16px 40px 22px;
    }

    .footer-logo-wrap {
        margin-right: 36px;
    }

    .footer-nav-cols {
        gap: 36px;
    }
}

@media (max-width: 991.98px) {
    .footer-top {
        flex-wrap: wrap;
        padding: 36px 32px 24px;
        gap: 20px;
    }

    .footer-logo-wrap {
        margin-right: 0;
    }

    .footer-spacer {
        display: none;
    }

    .footer-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-divider {
        margin: 0 32px;
    }

    .footer-bottom {
        padding: 16px 32px 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 28px 20px 20px;
    }

    .footer-nav-cols {
        flex-wrap: wrap;
        gap: 16px 28px;
    }

    .footer-divider {
        margin: 0 20px;
    }

    .footer-bottom {
        padding: 16px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-copy {
        text-align: left;
    }

    .footer-book-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

@media (max-width: 575.98px) {
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }

    .footer-qr-img {
        width: 68px;
        height: 68px;
    }

    .footer-nav-head {
        font-size: 14px;
    }

    .footer-nav-sub {
        font-size: 13px;
    }
}

/* Toggle panels */
.loc-panel {
    display: none;
}

.loc-panel.active {
    display: block;
}

/* Hours table */
.loc-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 16px;
}

.loc-hours-table td {
    padding: 5px 0;
    font-size: 13.5px;
    color: #000;
    vertical-align: top;
}

.loc-hours-table td:first-child {
    font-weight: 600;
    width: 150px;
    padding-right: 16px;
    letter-spacing: 0.06rem;
}

.loc-hours-table td:last-child {
    font-weight: 400;
    color: #444;
    letter-spacing: 0.06rem;
}


/* ══════════════════════════════════════
    FAQ SECTION
══════════════════════════════════════ */
.faq-section {
    padding: 30px 0;
    background: #fff;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.faq-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.faq-title span {
    color: var(--primary);
}

.faq-item {
    background: var(--bg-soft);
    border-radius: 14px;
    border: 1.5px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: var(--primary-mid);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-q-text {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s;
    color: var(--text-dark);
    font-size: 14px;
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-a-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.72;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ======================================== Footer ===================================================== */
/* ══════════════════════════
   FOOTER — Pixel Perfect
══════════════════════════ */
.sfc-wrap {
    width: 1600px;
    margin: 0 auto;
}

.sfc-card {
    background: #f5e0ec !important;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 0 165px;
}

/* ── TOP ROW ── */
.sfc-top {
    display: flex;
    align-items: center;
    min-height: 170px;
    padding: 28px 0 24px;
    gap: 0;
}

/* Logo column — fixed 84px so QR aligns below nav */
.sfc-logo-col {
    width: 236px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sfc-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sfc-nav {
    display: flex;
    gap: 56px;
    flex: 1;
    align-items: flex-start;
}

.sfc-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sfc-head {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    line-height: 1;
}

.sfc-head:hover {
    color: #e579ad;
}

.sfc-sub {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    line-height: 1;
}

.sfc-sub:hover {
    color: #e579ad;
}

.sfc-book-btn {
    margin-left: auto;
    flex-shrink: 0;
    background: #e579ad;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: background .2s, padding-right .25s;
    position: relative;
}

.sfc-book-btn:hover {
    background: #d66b9f;
    padding-right: 30px;
}

.sfc-book-btn .btn-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.sfc-book-btn .btn-icon i {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: opacity .25s, transform .25s;
}

.sfc-book-btn .chevron-icon {
    opacity: 1;
    transform: translateX(0);
}

.sfc-book-btn .arrow-icon {
    opacity: 0;
    transform: translateX(-6px);
}

.sfc-book-btn:hover .chevron-icon {
    opacity: 0;
    transform: translateX(6px);
}

.sfc-book-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ── DIVIDER ── */
.sfc-divider {
    border: none;
    border-top: 2px solid #8d8d8d;
    margin: auto;
    width: 81%;
    margin-left: 238px;
}

/* ── BOTTOM ROW ── */
.sfc-bottom {
    display: flex;
    align-items: center;
    min-height: 100px;
    padding: 24px 0 26px;
    gap: 0;
}

/* Same 84px spacer = QR aligns with nav links */
.sfc-logo-spacer {
    width: 236px;
    flex-shrink: 0;
}

.sfc-app-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.sfc-qr {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: contain;
    background: #000;
    padding: 5px;
    flex-shrink: 0;
}

.sfc-app-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sfc-app-label {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.sfc-app-desc {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.sfc-policy {
    margin-left: auto;
    display: flex;
    gap: 28px;
    align-items: center;
}

.sfc-policy a {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
}

.sfc-policy a:hover {
    color: #e579ad;
}

/* ── BELOW CARD ── */
.sfc-below {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.sfc-socials {
    display: flex;
    gap: 8px;
}

.sfc-soc-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
}

.sfc-soc-btn:hover {
    background: #e579ad;
}

.sfc-soc-btn i {
    color: #fff;
    font-size: 13px;
}

.sfc-copy {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.sfc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 5px 14px 5px 5px;
    background: #fff;
    text-decoration: none;
    transition: box-shadow .2s;
}

.sfc-badge:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}

.sfc-badge-logo {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

.sfc-badge span {
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

/* ── RESPONSIVE ── */
@media (max-width: 767.98px) {
    .sfc-card {
        padding: 0 20px;
    }

    .sfc-top {
        flex-wrap: wrap;
        min-height: auto;
        padding: 20px 0 18px;
        gap: 14px;
    }

    .sfc-logo-col {
        width: auto;
    }

    .sfc-nav {
        gap: 24px;
        order: 3;
        width: 100%;
    }

    .sfc-book-btn {
        margin-left: auto;
        font-size: 13px;
        padding: 10px 16px;
    }

    .sfc-logo-spacer {
        display: none;
    }

    .sfc-bottom {
        flex-wrap: wrap;
        min-height: auto;
        padding: 18px 0 20px;
        gap: 14px;
    }

    .sfc-policy {
        margin-left: 0;
        flex-wrap: wrap;
        gap: 14px;
    }

    .sfc-below {
        padding: 14px 0 16px;
    }

    .sfc-copy {
        font-size: 13px;
    }
}

@media (max-width: 430px) {
    .sfc-card {
        padding: 0 14px;
    }

    .sfc-nav {
        gap: 16px;
    }

    .sfc-head,
    .sfc-sub {
        font-size: 14px;
    }

    .sfc-book-btn {
        font-size: 12px;
        padding: 9px 14px;
    }

    .sfc-below {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ── Navbar ── */
.navbar {
    animation: none !important;
    background: transparent !important;
    box-shadow: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.logo-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-link-tt {
    font-size: 15px;
    font-weight: 500;
    color: #111 !important;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .2s;
    display: block;
}

.nav-link-tt:hover {
    color: #e579ad !important;
}

/* Sign in — outlined pill */
.tt-signin {
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s, background .2s;
    line-height: 1.4;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tt-signin:hover {
    border-color: #aaa;
    background: #f9f9f9;
    color: #111;
}

/* Book — filled rounded button */
.tt-book {
    background: #e579ad;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background .2s, padding-right .2s;
    line-height: 1.4;
}

.tt-book:hover {
    background: #d66b9f;
    padding-right: 24px;
}

.tt-chevron {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

.kalon-signin-btn {
    background: #d66b9f !important;
    color: #fff !important;

}

/* ══════════════════════════════════════
   KALON NAVBAR — Base styles
══════════════════════════════════════ */

.kalon-navbar {
    background: transparent !important;
    box-shadow: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.kalon-navbar.kalon-nav-scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Nest Hub + Nest Hub Max — solid white, blur not supported */
@media only screen and (min-width: 1024px) and (max-width: 1024px) and (max-height: 600px),
only screen and (min-width: 1280px) and (max-width: 1280px) and (max-height: 800px) {
    .kalon-navbar {
        background: #ffffff !important;
        border-bottom: 1px solid #e5e7eb !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
