 :root {
            --primary-dark: #4a0e2e;
            --primary: #6b1d4a;
            --primary-light: #8b2e60;
            --accent: #c4955a;
            --accent-light: #d4a96a;
            --gold: #c9a84c;
            --cream: #fdf5f0;
            --light-pink: #f9e8e0;
            --dark-text: #2c1018;
            --body-text: #555;
            --white: #ffffff;
        }

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

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

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 12px 0;
            transition: all 0.3s ease;
            z-index: 1050;
        }

        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand .logo-icon {
            width: 54px;
            height: 45px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }




.navbar-brand .logo-icon img {
    width: 125%;
    height: auto;
}





        .navbar-brand .brand-text {
            color: var(--white);
            font-size: 31px;
            font-weight: 700;
            line-height: 1.1;
            font-family: "Dancing Script", cursive;
            /* font-style: italic; */
        }

        .navbar-brand .brand-text small {
            font-family: 'Poppins', sans-serif;
            font-size: 0.6rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-size: 0.9rem;
            font-weight: 400;
            padding: 8px 10px !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--white) !important;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--accent);
            border-radius: 1px;
            display: none;
        }



        .btn-appointment {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: var(--white) !important;
            border: none;
            border-radius: 25px;
            /* padding: 10px 16px !important; */
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
        }




        .btn-appointment:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            background: linear-gradient(135deg, #128C7E, #25D366);
        }





        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.5);
            padding: 6px 10px;
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        /* ==================== HERO SLIDER ==================== */
        .hero-section {
            position: relative;
        }

        .hero-carousel .carousel-item {
            height: 85vh;
            min-height: 500px;
            max-height: 700px;
            position: relative;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(74, 14, 46, 0.85) 0%, rgba(74, 14, 46, 0.6) 40%, rgba(74, 14, 46, 0.2) 70%, transparent 100%);
            z-index: 1;
        }

        .hero-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            z-index: 2;
            padding: 0 5%;
            max-width: 600px;
        }

        .hero-ornament {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero-title {
            color: var(--white);
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .hero-title .italic-gold {
            font-style: italic;
            color: var(--accent);
        }

        .hero-desc {
            color: rgba(255,255,255,0.85);
            font-size: 1rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            border: 2px solid var(--accent);
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-hero:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 149, 90, 0.4);
        }

        .btn-hero .arrow-circle {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .btn-hero:hover .arrow-circle {
            background: var(--white);
            color: var(--primary);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 15px;
        }

        .carousel-control-next {
            right: 15px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--accent);
        }

        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 2px solid var(--white);
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .carousel-indicators [data-bs-target].active {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.2);
        }

        /* ==================== ABOUT SECTION ==================== */
     /* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 45px 0;
    background: #f8e6ec;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.about-image-shape {
    width: 100%;
    max-width: 500px;
    height: 450px;
    overflow: hidden;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 20px 50px rgba(74, 14, 46, 0.15);
    position: relative;
}

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

/* Circular Badge */
.about-badge {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #6b1d4a 0%, #4a0e2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 14, 46, 0.4);
    border: 2px solid rgba(212, 169, 74, 0.3);
}

.badge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text-top,
.badge-text-bottom {
    fill: #f5c9a5;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-lotus {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}



.badge-lotus img {
    width: 64px;
    height: 64px;
    }






/* About Content */
.about-content {
    padding-left: 20px;
    max-width: 650px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-label span:first-child {
    color: #6b1d4a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-label .label-line {
    width: 60px;
    height: 1.5px;
    background: #6b1d4a;
    display: inline-block;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c1018;
    letter-spacing: -0.5px;
}

.about-title .wellness-text {
    color: #a83060;
    font-style: italic;
    font-weight: 700;
}

.about-text {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-divider {
    width: 40px;
    height: 2px;
    background: #d4a94a;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-wrapper {
        margin-bottom: 40px;
    }
    
    .about-image-shape {
        max-width: 400px;
        height: 400px;
        border-top-left-radius: 200px;
        border-top-right-radius: 200px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-label {
        justify-content: center;
    }
    
    .about-divider {
        margin: 20px auto;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-image-shape {
        max-width: 320px;
        height: 340px;
        border-top-left-radius: 160px;
        border-top-right-radius: 160px;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-lotus {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .badge-text-top,
    .badge-text-bottom {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .about-title {
        font-size: 1.7rem;
    }
    
    .about-text {
        font-size: 0.88rem;
    }
}

@media (max-width: 575.98px) {
    .about-image-shape {
        max-width: 280px;
        height: 300px;
        border-top-left-radius: 140px;
        border-top-right-radius: 140px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
}





        /* ==================== SECTION TITLE ==================== */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .section-title .ornament {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .title-underline {
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--primary));
            margin: 0 auto;
            border-radius: 2px;
        }





     
/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    padding: 38px 0;
    background: #fcf3f6;
    position: relative;
    overflow: hidden;
}

/* Decorative Flowers */
.flower-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 1;
}

.flower-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.flower-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* Section Title */
.section-title-why {
    text-align: center;
    margin-bottom: 13px;
    position: relative;
    z-index: 2;
}

.section-title-why h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6b1d4a;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.title-ornament-why {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.title-ornament-why .ornament-line {
    width: 25px;
    height: 1px;
    background: #a83060;
    display: inline-block;
}

.title-ornament-why i {
    color: #a83060;
    font-size: 0.6rem;
}

/* Why Card */
.why-card-new {
    background: #f9eef1;
    border: 1px solid rgba(168, 48, 96, 0.2);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-card-new:hover {
    box-shadow: 0 10px 30px rgba(74, 14, 46, 0.1);
    transform: translateY(-3px);
    border-color: rgba(168, 48, 96, 0.4);
}

.why-icon-wrapper {
    flex-shrink: 0;
}

.why-icon-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #7a1f4a 0%, #5c1638 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c9d5;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(92, 22, 56, 0.3);
    position: relative;
}

.icon-plus {
    position: absolute;
    font-size: 0.9rem !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    color: #f5c9d5;
}

.why-content {
    flex: 1;
}

.why-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #a83060;
    margin-bottom: 10px;
}

.why-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    color: #6b6b6b;
}

/* Responsive */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .flower-decoration {
        width: 180px;
        height: 180px;
        opacity: 0.5;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .section-title-why h2 {
        font-size: 1.5rem;
    }
    
    .why-card-new {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 18px;
    }
    
    .why-icon-circle {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .flower-decoration {
        width: 120px;
        height: 120px;
        opacity: 0.3;
    }
    
    .flower-left {
        left: -30px;
    }
    
    .flower-right {
        right: -30px;
    }
}

@media (max-width: 575.98px) {
    .why-card-new {
        padding: 22px 18px;
    }
    
    .why-content h5 {
        font-size: 1.05rem;
    }
    
    .why-content p {
        font-size: 0.82rem;
    }
}
/* ==================== WHY CHOOSE US SECTION ==================== */








        /* ==================== TREATMENTS ==================== */


        .treatments-section {
            padding: 32px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        }

        .treatments-section .section-title h2 {
            color: var(--white);
        }

        .treatment-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .treatment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .treatment-card .card-img-wrapper {
            height: 170px;
            overflow: hidden;
            position: relative;
        }

        .treatment-card .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .treatment-card:hover .card-img-wrapper img {
            transform: scale(1.1);
        }

        .treatment-card .card-body {
            padding: 11px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .treatment-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .treatment-card .desc {
            font-size: 0.82rem;
            color: var(--body-text);
            line-height: 18px;
            flex: 1;
            margin-bottom: 6px;
        }

        .treatment-card .card-footer-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 6px;
            margin-top: auto;
            border-top: 1px solid rgba(0,0,0,0.08);
        }

        .treatment-card .price {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .treatment-card .duration {
            font-size: 0.8rem;
            color: var(--body-text);
        }

        .treatment-card .arrow-btn {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .treatment-card .arrow-btn:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .btn-view-all {
            background: linear-gradient(135deg, #952866, #9a296a);
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 8px 24px;
            font-weight: 600;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-view-all:hover {
            background: linear-gradient(135deg, #74204f, #4a012a);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgb(120 18 75);
        }



.card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
    margin-top: 0;
    font-size: 0.85rem;
    color: var(--body-text);
    line-height: 1.5;
}

.card-details.open {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.arrow-btn {
    border: none;
    cursor: pointer;
}

.arrow-btn i {
    transition: transform 0.3s ease;
}

.arrow-btn.rotated i {
    transform: rotate(90deg);
}










      /* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 30px 0;
    background: #f8e6ec;
    position: relative;
    overflow: hidden;
}

/* Section Title */
.section-title-testimonial {
    text-align: center;
    margin-bottom: 26px;
}

.section-title-testimonial h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b1d4a;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.title-ornament-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-ornament-testimonial .ornament-line-t {
    width: 30px;
    height: 1px;
    background: #a83060;
    display: inline-block;
}

.title-ornament-testimonial i {
    color: #a83060;
    font-size: 0.65rem;
    transform: rotate(45deg);
}

/* Testimonial Card */
.testimonial-card-new {
    background: #fff4f8b8;
    border: 1px solid rgba(168, 48, 96, 0.15);
    border-radius: 15px;
    padding: 13px 25px 15px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #ffc6d9;
}

.testimonial-card-new:hover {
    box-shadow: 0 15px 40px rgba(74, 14, 46, 0.12);
    transform: translateY(-5px);
    border-color: rgba(168, 48, 96, 0.3);
}

/* Quote Icon Background */
.quote-icon-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8b4c4, #f5c9d5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a83060;
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Stars */
.testimonial-stars-new {
    text-align: center;
    color: #a83060;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    padding-top: 5px;
    /* border: 1px solid; */
}

/* Heading */
.testimonial-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c1018;
    text-align: center;
    margin-bottom: 11px;
    font-style: italic;
}

/* Body */
.testimonial-body {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 7px;
}

.author-avatar-wrap {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-message {
    font-size: 0.82rem;
    line-height: 18px;
    color: #6b6b6b;
    margin: 0;
    flex: 1;
}

/* Author Name */
.testimonial-author-name {
    font-size: 0.82rem;
    color: #6b6b6b;
    font-weight: 500;
    padding-left: 80px;
    margin-top: 5px;
}

/* Dots Indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 48, 96, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dots button.active {
    background: #a83060;
    width: 28px;
    border-radius: 5px;
}

.testimonial-dots button:hover {
    background: rgba(168, 48, 96, 0.5);
}

/* Carousel Transitions */
.testimonial-carousel .carousel-item {
    transition: transform 0.7s ease-in-out;
}

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

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-title-testimonial h2 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .testimonial-card-new {
        padding: 25px 20px 20px;
    }
    
    .testimonial-heading {
        font-size: 1.05rem;
    }
    
    .testimonial-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-message {
        text-align: center;
    }
    
    .testimonial-author-name {
        padding-left: 0;
        text-align: center;
    }
    
    .author-avatar-wrap {
        width: 60px;
        height: 60px;
    }
    
    .quote-icon-bg {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card-new {
        padding: 22px 18px 18px;
    }
    
    .testimonial-message {
        font-size: 0.8rem;
    }
    
    .testimonial-dots button.active {
        width: 22px;
    }
}

/* ==================== TESTIMONIALS SECTION ==================== */






    

        /* ==================== BOOKING SECTION ==================== */
/* ==================== BOOKING SECTION - COMPACT ==================== */
.booking-section {
    padding: 0px 0;
    background: linear-gradient(135deg, #5c1638 0%, #4a0e2e 100%);
    position: relative;
    overflow: hidden;
}

/* Section Title - Compact */
.section-title-booking {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-booking h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.title-ornament-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-ornament-booking .ornament-line-b {
    width: 25px;
    height: 1px;
    background: #f5c9d5;
    display: inline-block;
}

.title-ornament-booking i {
    color: #f5c9d5;
    font-size: 0.65rem;
}

/* Left Image Column - Reduced Height */
.booking-image-col {
    padding: 0 !important;
    position: relative;
}

.booking-image-side {
    height: 100%;
    min-height: 265px;
    max-height: 320px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

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

.image-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(92, 22, 56, 0.15) 0%,
        rgba(92, 22, 56, 0.3) 50%,
        rgba(74, 14, 46, 0.7) 100%
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
}

/* Center Form Column - Compact */
.booking-form-col {
    padding: 25px 30px !important;
    display: flex;
    align-items: center;
}

.booking-content {
    width: 100%;
}

/* Form Fields - Compact */
.booking-form-new .form-field {
    position: relative;
    width: 100%;
}

.booking-form-new .form-input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(245, 201, 213, 0.35);
    border-radius: 25px;
    padding: 9px 40px 9px 38px;
    font-size: 0.82rem;
    color: #ffffff;
    height: 40px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.booking-form-new .form-input.pl-15 {
    padding-left: 18px;
}

.booking-form-new .form-input::placeholder {
    color: rgba(245, 201, 213, 0.75);
    font-weight: 400;
}

.booking-form-new .form-input:focus {
    outline: none;
    border-color: #f06292;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(240, 98, 146, 0.15);
}

.booking-form-new .form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-left: 18px;
    padding-right: 40px;
}

.booking-form-new .form-select-custom option {
    background: #4a0e2e;
    color: #ffffff;
}

/* Field Icons - Compact */
.field-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(245, 201, 213, 0.8);
    font-size: 0.8rem;
    z-index: 5;
    pointer-events: none;
}

.field-icon-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f06292;
    font-size: 0.8rem;
    z-index: 5;
    pointer-events: none;
}

.select-arrow {
    color: rgba(245, 201, 213, 0.8);
    font-size: 0.7rem;
}

/* Row spacing tighter */
.booking-form-new .row.g-3 {
    --bs-gutter-y: 0.75rem;
}

/* Book Now Button - Compact */
.btn-book-appointment {
    background: linear-gradient(135deg, #f06292 0%, #e91e63 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 32px;
    font-weight: 500;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.35);
    min-width: 190px;
    justify-content: center;
    cursor: pointer;
}

.btn-book-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    color: #ffffff;
}

.btn-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: all 0.3s ease;
}

.btn-book-appointment:hover .btn-arrow {
    background: #ffffff;
    color: #e91e63;
}

/* Button margin tighter */
.booking-form-new .mt-4 {
    margin-top: 1rem !important;
}

/* Right Features Column - Compact */
.booking-features-col {
    padding: 25px 25px !important;
    display: flex;
    align-items: center;
    border-left: 1px dashed rgba(245, 201, 213, 0.25);
}

.booking-features-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.feature-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(240, 98, 146, 0.2);
    border: 1px solid rgba(240, 98, 146, 0.35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f06292;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background: rgba(240, 98, 146, 0.35);
    transform: scale(1.05);
}

.feature-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .booking-section {
        padding: 35px 0;
    }
    
    .booking-image-col {
        min-height: 160px;
        max-height: 180px;
    }
    
    .booking-image-side {
        min-height: 160px;
        max-height: 180px;
        -webkit-mask-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0.4) 90%,
            rgba(0, 0, 0, 0) 100%
        );
        mask-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0.4) 90%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    
    .booking-form-col {
        padding: 25px 20px !important;
    }
    
    .booking-features-col {
        padding: 20px 20px !important;
        border-left: none;
        border-top: 1px dashed rgba(245, 201, 213, 0.25);
    }
    
    .booking-features-list {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .booking-section {
        padding: 30px 0;
    }
    
    .section-title-booking {
        margin-bottom: 15px;
    }
    
    .section-title-booking h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .booking-form-col {
        padding: 20px 18px !important;
    }
    
    .booking-form-new .form-input {
        font-size: 0.8rem;
        height: 38px;
        padding: 8px 38px 8px 36px;
    }
    
    .btn-book-appointment {
        padding: 9px 26px;
        font-size: 0.85rem;
        min-width: 170px;
    }
    
    .booking-features-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .feature-label {
        font-size: 0.88rem;
    }
    
    .feature-icon-box {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .booking-image-col {
        min-height: 130px;
        max-height: 150px;
    }
    
    .booking-image-side {
        min-height: 130px;
        max-height: 150px;
    }
}

@media (max-width: 575.98px) {
    .booking-section {
        padding: 25px 0;
    }
    
    .booking-image-col {
        min-height: 110px;
        max-height: 130px;
    }
    
    .booking-image-side {
        min-height: 110px;
        max-height: 130px;
    }
    
    .section-title-booking h2 {
        font-size: 1.2rem;
    }
    
    .booking-form-new .row.g-3 {
        --bs-gutter-y: 0.5rem;
    }
}


/* ==================== BOOKING SECTION ==================== */









        /* ==================== FOOTER ==================== */
        .footer {
            background: linear-gradient(135deg, #1a0511 0%, var(--primary-dark) 100%);
            padding: 60px 0 0;
            color: rgba(255,255,255,0.7);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
        }


.footer-logo .logo-icon img {
    width: 125%;
    height: auto;
}



        .footer-logo .brand-text {
            color: var(--white);
            font-family: "Dancing Script", cursive;
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .footer-logo .brand-text small {
            font-family: 'Poppins', sans-serif;
            font-size: 0.55rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            color: var(--accent);
        }

        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer h6 {
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            text-align: left;
        }

        .footer h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

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

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-gallery {
            /* display: grid; */
            grid-template-columns: repeat(3, 1fr);
            /* gap: 8px; */
        }

        .footer-gallery img {
            width: 100%;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .footer-gallery img:hover {
            transform: scale(1.05);
            opacity: 0.8;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.85rem;
        }

        .footer-contact-item i {
            color: var(--accent);
            margin-top: 3px;
            min-width: 16px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 15px 0;
            margin-top: 40px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.8rem;
            text-align: center;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ==================== SCROLL TO TOP ==================== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            text-decoration: none;
            z-index: 1000;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 4px 15px rgba(74, 14, 46, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(74, 14, 46, 0.4);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991.98px) {
            .hero-carousel .carousel-item {
                height: 70vh;
                min-height: 450px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-content {
                max-width: 500px;
            }

            .navbar-collapse {
                background: var(--primary-dark);
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }

            .about-image-wrapper {
                margin-bottom: 40px;
            }

            .booking-image {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .hero-carousel .carousel-item {
                height: 60vh;
                min-height: 400px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .hero-desc {
                font-size: 0.9rem;
            }

            .hero-content {
                max-width: 85%;
            }

            .about-title {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            .about-badge {
                width: 100px;
                height: 100px;
                right: 0;
                bottom: -15px;
            }

            .about-badge span {
                font-size: 0.5rem;
            }

            .why-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .hero-carousel .carousel-item {
                height: 29vh;
                min-height: 376px;
                margin-top: 28px;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .hero-content {
                max-width: 90%;
            }

            .btn-hero {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        /* ==================== ANIMATIONS ==================== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

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

        /* Testimonials carousel mobile */
        @media (max-width: 767.98px) {
            .testimonials-carousel .testimonial-slide {
                flex: 0 0 100%;
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .testimonials-carousel .testimonial-slide {
                flex: 0 0 50%;
            }
        }







/* ==================== PAGE BANNER ==================== */
        .page-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 20 Q60 40 50 50 Q40 40 50 20' fill='%23e91e63' opacity='0.05'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .banner-title {
            color: var(--white);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        .breadcrumb-custom a {
            color: var(--accent-pink-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--white);
        }

        .breadcrumb-custom .separator {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
        }

        /* ==================== TREATMENT DETAILS ==================== */
        .treatment-details-section {
            padding: 60px 0;
            background: var(--white);
        }

        /* Left Column - Image Gallery */
        .treatment-gallery {
            position: sticky;
            top: 90px;
        }

        .main-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(74, 14, 46, 0.15);
            margin-bottom: 15px;
        }

        .main-image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .image-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
        }

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

        .thumbnail {
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnail img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .thumbnail:hover img {
            transform: scale(1.1);
        }

        .thumbnail.active {
            border-color: var(--accent-pink);
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        }

        /* Right Column - Content */
        .treatment-info {
            padding-left: 20px;
        }

        .treatment-category {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-pink);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .treatment-category::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--accent-pink);
            display: inline-block;
        }

        .treatment-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--dark-text);
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .treatment-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f0e0e6;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--body-text);
        }

        .meta-item i {
            color: var(--accent-pink);
            font-size: 0.95rem;
        }

        .meta-item strong {
            color: var(--dark-text);
        }

        .rating-stars {
            color: var(--gold);
            letter-spacing: 2px;
        }

        /* Price Card */
        .price-card {
            background: linear-gradient(135deg, var(--cream), var(--light-pink));
            padding: 25px 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-left: 5px solid var(--accent-pink);
            flex-wrap: wrap;
            gap: 15px;
        }

        .price-info .price-label {
            font-size: 0.8rem;
            color: var(--body-text);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .price-info .price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-info .original-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 10px;
            font-weight: 400;
        }

        .price-info .discount-badge {
            background: var(--accent-pink);
            color: var(--white);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }

        /* Section Headings */
        .section-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-heading::before {
            content: '';
            width: 4px;
            height: 22px;
            background: linear-gradient(to bottom, var(--accent-pink), var(--accent-pink-light));
            border-radius: 2px;
        }

        /* Description */
        .treatment-description {
            margin-bottom: 30px;
        }

        .treatment-description p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--body-text);
            margin-bottom: 12px;
        }

        /* Benefits */
        .benefits-section {
            margin-bottom: 30px;
        }

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

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 15px;
            background: var(--light-pink);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: var(--cream);
            transform: translateX(5px);
        }

        .benefit-item .check-icon {
            width: 24px;
            height: 24px;
            background: var(--accent-pink);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .benefit-item span {
            font-size: 0.85rem;
            color: var(--dark-text);
            font-weight: 500;
        }

        /* What's Included */
        .includes-section {
            margin-bottom: 30px;
        }

        .includes-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .include-tag {
            background: var(--white);
            border: 1.5px solid rgba(233, 30, 99, 0.2);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .include-tag:hover {
            background: var(--accent-pink);
            color: var(--white);
            border-color: var(--accent-pink);
            transform: translateY(-2px);
        }

        .include-tag i {
            font-size: 0.8rem;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .btn-book {
            flex: 1;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 14px 30px;
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.35);
            text-decoration: none;
            cursor: pointer;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
            color: var(--white);
        }

        .btn-book .arrow {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .btn-wishlist {
            width: 52px;
            height: 52px;
            background: var(--white);
            border: 1.5px solid #e0d0d6;
            color: var(--accent-pink);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-wishlist:hover {
            background: var(--light-pink);
            border-color: var(--accent-pink);
            transform: scale(1.05);
        }

        .btn-share {
            width: 52px;
            height: 52px;
            background: var(--white);
            border: 1.5px solid #e0d0d6;
            color: var(--primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-share:hover {
            background: var(--light-pink);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        /* ==================== INFO TABS SECTION ==================== */
        .info-tabs-section {
            padding: 50px 0;
            background: var(--light-pink);
        }

        .info-tabs {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(74, 14, 46, 0.08);
            overflow: hidden;
        }

        .nav-tabs-custom {
            border-bottom: 1px solid #f0e0e6;
            padding: 0 30px;
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .nav-tabs-custom .nav-link {
            border: none;
            background: transparent;
            color: var(--body-text);
            padding: 18px 22px;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-tabs-custom .nav-link:hover {
            color: var(--accent-pink);
        }

        .nav-tabs-custom .nav-link.active {
            color: var(--accent-pink);
            border-bottom-color: var(--accent-pink);
            background: transparent;
        }

        .tab-content-custom {
            padding: 35px 30px;
        }

        .tab-pane h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .tab-pane p {
            font-size: 0.88rem;
            line-height: 1.8;
            color: var(--body-text);
            margin-bottom: 12px;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .process-step {
            padding: 20px;
            background: var(--light-pink);
            border-radius: 12px;
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.1);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 12px;
        }

        .process-step h6 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 0.8rem;
            line-height: 1.6;
            color: var(--body-text);
            margin: 0;
        }

        /* Reviews */
        .review-summary {
            display: flex;
            gap: 30px;
            padding: 25px;
            background: var(--light-pink);
            border-radius: 12px;
            margin-bottom: 25px;
            align-items: center;
            flex-wrap: wrap;
        }

        .rating-big {
            text-align: center;
            padding-right: 30px;
            border-right: 1px solid #e0d0d6;
        }

        .rating-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .rating-big .rating-stars {
            font-size: 1rem;
            margin: 8px 0;
            display: block;
        }

        .rating-count {
            font-size: 0.8rem;
            color: var(--body-text);
        }

        .rating-bars {
            flex: 1;
            min-width: 200px;
        }

        .rating-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .rating-bar-label {
            font-size: 0.8rem;
            color: var(--body-text);
            width: 60px;
        }

        .rating-bar-track {
            flex: 1;
            height: 8px;
            background: #f0e0e6;
            border-radius: 4px;
            overflow: hidden;
        }

        .rating-bar-fill {
            height: 100%;
            background: linear-gradient(to right, var(--accent-pink), var(--accent-pink-light));
            border-radius: 4px;
        }

        .rating-bar-count {
            font-size: 0.78rem;
            color: var(--body-text);
            width: 30px;
            text-align: right;
        }

        .review-item {
            padding: 20px 0;
            border-bottom: 1px solid #f0e0e6;
        }

        .review-item:last-child {
            border-bottom: none;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--accent-pink);
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reviewer-info h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-text);
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--body-text);
        }

        .review-item .rating-stars {
            font-size: 0.8rem;
            margin-bottom: 8px;
        }

        .review-text {
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--body-text);
            margin: 0;
        }

        /* ==================== RELATED TREATMENTS ==================== */
        .related-section {
            padding: 60px 0;
            background: var(--white);
        }

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

        .section-title-related h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: var(--body-text);
            font-size: 0.9rem;
        }

        .related-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(74, 14, 46, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0e0e6;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(74, 14, 46, 0.15);
        }

        .related-card .card-img {
            height: 180px;
            overflow: hidden;
        }

        .related-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .card-img img {
            transform: scale(1.1);
        }

        .related-card .card-body {
            padding: 20px;
        }

        .related-card h5 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 8px;
        }

        .related-card .desc {
            font-size: 0.8rem;
            color: var(--body-text);
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .related-card .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid #f0e0e6;
        }

        .related-card .price {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-pink);
        }

        .related-card .view-btn {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.7rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .related-card .view-btn:hover {
            transform: scale(1.15) rotate(-15deg);
            color: var(--white);
        }







     /* ==================== PAGE BANNER ==================== */
        .page-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 70px 0 50px;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .banner-title {
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif;
        }

        .banner-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            margin-bottom: 18px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        .breadcrumb-custom a {
            color: var(--accent-pink-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--white);
        }

        .breadcrumb-custom .separator {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
        }

        /* ==================== FILTER TABS ==================== */
        .filter-section {
            padding: 30px 0;
            background: var(--white);
            border-bottom: 1px solid #f0e0e6;
            position: sticky;
            top: 70px;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-tab {
            padding: 8px 22px;
            background: var(--white);
            border: 1.5px solid #f0e0e6;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--body-text);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover {
            border-color: var(--accent-pink);
            color: var(--accent-pink);
        }

        .filter-tab.active {
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            border-color: transparent;
            color: #121212;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        }

        /* ==================== TREATMENTS GRID ==================== */
        .treatments-grid-section {
            padding: 50px 0 70px;
            background: var(--light-pink);
        }

        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .results-count {
            font-size: 0.9rem;
            color: var(--body-text);
        }

        .results-count strong {
            color: var(--primary);
            font-weight: 600;
        }

        .sort-dropdown {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sort-dropdown label {
            font-size: 0.85rem;
            color: var(--body-text);
            font-weight: 500;
        }

        .sort-dropdown select {
            padding: 8px 15px;
            border: 1.5px solid #f0e0e6;
            border-radius: 20px;
            background: var(--white);
            font-size: 0.82rem;
            color: var(--dark-text);
            cursor: pointer;
            outline: none;
        }

        .sort-dropdown select:focus {
            border-color: var(--accent-pink);
        }

        /* Treatment Card */
        .treatment-card-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(74, 14, 46, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(233, 30, 99, 0.08);
        }

        .treatment-card-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(74, 14, 46, 0.15);
        }

        .card-image-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .treatment-card-item:hover .card-image-wrapper img {
            transform: scale(1.1);
        }

        .card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 3px 10px rgba(233, 30, 99, 0.35);
        }

        .card-badge.bestseller { background: linear-gradient(135deg, #d4a94a, #e6bc5f); }
        .card-badge.premium { background: linear-gradient(135deg, #6b1d4a, #8b2e60); }
        .card-badge.popular { background: linear-gradient(135deg, #e91e63, #f06292); }

        .card-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-pink);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }

        .card-wishlist:hover {
            background: var(--accent-pink);
            color: var(--white);
            transform: scale(1.1);
        }

        .card-wishlist.active {
            background: var(--accent-pink);
            color: var(--white);
        }

        .card-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-category {
            font-size: 0.7rem;
            color: var(--accent-pink);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .card-description {
            font-size: 0.82rem;
            color: var(--body-text);
            line-height: 1.6;
            margin-bottom: 12px;
            flex: 1;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0e0e6;
        }

        .meta-tag {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: var(--body-text);
        }

        .meta-tag i {
            color: var(--accent-pink);
            font-size: 0.8rem;
        }

        .card-rating {
            color: var(--gold);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .card-rating span {
            color: var(--body-text);
            margin-left: 5px;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-price {
            display: flex;
            flex-direction: column;
        }

        .card-price .amount {
            font-family: 'Poppins', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--accent-pink);
            line-height: 1;
        }

        .card-price .original {
            font-size: 0.75rem;
            color: #999;
            text-decoration: line-through;
            margin-top: 2px;
        }

        .card-book-btn {
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            border: none;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .card-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
            color: var(--white);
        }

        .card-book-btn i {
            font-size: 0.7rem;
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .pagination-custom {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .page-item {
            width: 40px;
            height: 40px;
            background: var(--white);
            border: 1.5px solid #f0e0e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--body-text);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .page-item:hover {
            border-color: var(--accent-pink);
            color: var(--accent-pink);
        }

        .page-item.active {
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            border-color: transparent;
            color: var(--white);
        }

        .page-item.arrow {
            font-size: 0.75rem;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            text-align: center;
        }

        .cta-title {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 12px 32px;
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.35);
            text-decoration: none;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
            color: var(--white);
        }

        .btn-cta .arrow {
            width: 26px;
            height: 26px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #3a0a24 100%);
            padding: 40px 0 0px;
            color: rgba(255,255,255,0.75);
            text-align: center;
        }

        .footer p {
            margin: 0;
            font-size: 0.85rem;
            text-align: left;
            line-height: 19px;
            margin-bottom: 0px;
        }

        .footer a {
            color: var(--accent-pink-light);
            text-decoration: none;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991.98px) {
            .banner-title { font-size: 2rem; }
            .filter-section { position: relative; top: 0; }
        }

        @media (max-width: 767.98px) {
            .page-banner { padding: 50px 0 40px; }
            .banner-title { font-size: 1.6rem; }
            .banner-subtitle { font-size: 0.85rem; }
            .card-image-wrapper { height: 190px; }
            .card-title { font-size: 1.05rem; }
            .cta-title { font-size: 1.4rem; }
            .filter-tab { padding: 7px 16px; font-size: 0.78rem; }
            .results-info { flex-direction: column; align-items: flex-start; }
            .page-item { width: 36px; height: 36px; font-size: 0.8rem; }
        }

        @media (max-width: 575.98px) {
            .banner-title { font-size: 1.4rem; }
            .navbar-brand .brand-text { font-size: 1.1rem; }
            .navbar-brand .logo-icon { width: 38px; height: 38px; font-size: 26px; }
            .card-content { padding: 18px 15px; }
            .card-footer { flex-direction: column; gap: 12px; align-items: stretch; }
            .card-book-btn { justify-content: center; }
        }






.btn-location{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:8px 12px;   /* Reduced width */
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
    display: inline-flex;
    width: 80px;
    x;       /* Change to 90px, 100px, 110px as needed */
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
}



.btn-location img{width: 26%;height:auto;}







.btn-appointment{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    /* padding:8px 12px; */   /* Reduced width */
    border-radius:30px;
    text-decoration:none;
    font-size: 12px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
    display: inline-flex;
    width: 110px;       /* Change to 90px, 100px, 110px as needed */
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 17px 32px;
}










.navbar-nav .ms-lg-1,
.navbar-nav .ms-lg-2{
    margin-left: 4px !important; /* or 0 */
}

/* Location */
.btn-location{
    background: #1b0479;
    color:#fff !important;
}

.btn-location:hover{
    background:#1b0479;
    color:#fff;
}

/* WhatsApp */
.btn-appointment{
    background:#25D366;
    color:#fff !important;
}

.btn-appointment:hover{
    background:#1da851;
    color:#fff;
}

.btn-location i,
.btn-appointment i{
    font-size:17px;
}

/* Mobile */
@media (max-width:991.98px){

    .navbar-nav{
        padding-top:15px;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .btn-location,
    .btn-appointment{
        width:100%;
        margin-top:10px;
    }

.btn-location img {
    width: 8%;
    height: auto;
}
    
}






.mobile-whatsapp{
    width:42px;
    height:42px;
    background:#25D366;
    color:#fff !important;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    margin-right:12px;
    transition:.3s;
}

.mobile-whatsapp:hover{
    background:#1da851;
    color:#fff;
    transform:scale(1.05);
}










/* Benefits Toggle Button & Label */
.benefits-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.benefits-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #f9f9f9;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.2px;
    background: #5f1740;
    padding: 2px 7px;
    border-radius: 21px;
}

.treatment-card:hover .benefits-label {
    color: #fff;
}

/* Treatment Carousel Indicators */
.treatment-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.treatment-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.treatment-dots button.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.treatment-dots button:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* De-carousel Treatments & Packages on Mobile */
@media (max-width: 767.98px) {
    .treatments-carousel .carousel-inner {
        display: block !important;
        overflow: visible !important;
    }
    .treatments-carousel .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        float: none !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .treatments-carousel .duplicate-card {
        display: none !important;
    }
    .treatments-carousel .carousel-item + .carousel-item {
        margin-top: 1.5rem !important;
    }
    .treatments-carousel .treatment-dots {
        display: none !important;
    }
}






.brand-text{
    display: inline-block;
    line-height: 9px;
    padding-top: 3px;
}

.brand-main{
    line-height: 0px;
    display: block;
    font-size: 14px;   /* Bigger */
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-sub{
    display: block;
    font-size: 8px;   /* Smaller */
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
