:root {
    --primary-gold: #d4a574;
    --secondary-peach: #ff9a9e;
    --dark-brown: #2c1810;
    --light-bg: #f8f7f5;
    --gradient-hero: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-gold) !important;
    font-size: 1.5rem;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-wellness {
    background: linear-gradient(45deg, var(--primary-gold), #e6b800);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-wellness:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.6);
}

.gallery-img {
    transition: transform 0.4s;
    border-radius: 15px;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Mobile Responsive Contact Form + WhatsApp Icon */
.form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
}

.form-input {
    border: 2px solid #e1e5e9 !important;
    border-radius: 12px !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    height: auto !important;
    background: #f8f9fa !important;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-2px);
}

.btn-callback {
    background: linear-gradient(135deg, #24b3c6 0%, #24b3c6 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.btn-callback:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-section {
        padding: 2rem 1.5rem !important;
        margin: 1rem 0 !important;
    }

    .d-flex.gap-3 {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .form-input {
        min-width: 100% !important;
        margin-bottom: 1rem !important;
    }

    .btn-callback {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 1.5rem 1rem !important;
    }

    .form-input {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
    }
}

/* services section */
.services-section {
    padding: 5rem 0;
}

.services-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-color: none;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.service-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    min-width: max-content;
}

.service-card {
    flex: 0 0 380px;
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.service-card .card-body {
    padding: 2rem;
}

.btn-wellness {
    background: linear-gradient(135deg, #24b3c6 0%, #24b3c6 100%);
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-wellness:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 320px;
    }

    .scroll-btn {
        display: none;
    }
}


/* Testimonial */
.testimonials-section .testimonial-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonials-section .stars {
    color: #ffc107;
    font-size: 1.5rem;
}

/* Responsive Container */
.testimonials-container {
    overflow-x: auto;
    scrollbar-color: #ddd transparent;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonials-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.testimonials-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive Track */
.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0 1rem;
    min-height: 220px;
}

/* Desktop: Horizontal scroll, 3+ cards */
@media (min-width: 992px) {
    .testimonial-track {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 0 0 33.333%;
        /* ~3 cards visible */
        max-width: 360px;
        margin-bottom: 0;
    }
}

/* Tablet: 2 cards per row */
@media (max-width: 991px) and (min-width: 768px) {
    .testimonial-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: none;
    }
}

/* Mobile: 1 card per row, vertical scroll */
@media (max-width: 767px) {
    .testimonial-track {
        flex-direction: column;
        flex-wrap: wrap;
        overflow-x: auto;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
        max-height: 600px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: none;
        margin-bottom: 1.5rem;
    }
}

/* WhatsApp Icon - Bottom Left Corner */
.whatsapp-icon {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon i {
    color: white;
    font-size: 1.8rem;
}

/* WhatsApp Icon - Bottom Left Corner */
.telephone-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.telephone-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.telephone-icon i {
    color: white;
    font-size: 1.8rem;
}

/* FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-item {
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: #212529 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.transition-icon {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .transition-icon {
    transform: rotate(180deg);
}

/* Custom scrollbar for accordion body */
.accordion-body {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #dee2e6 transparent;
}

.accordion-body::-webkit-scrollbar {
    width: 6px;
}

.accordion-body::-webkit-scrollbar-track {
    background: transparent;
}

.accordion-body::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

/* Review */
.expertise{
    background: #24b3c633;
    border-radius: 10px;
}
.expertise .year-exp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px;
    margin-bottom: 50px;
}

.expertise .year-exp .icon-bx {
    border-right: 1px solid #d5d5d5;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.expertise .year-exp .icon-bx:last-child {
    border-right: none;
}

.expertise .year-exp .icon-bx img {
    object-fit: contain;
}

.expertise .year-exp .icon-bx .head-txt {
    font-size: 17px;
    text-align: left;
}

.expertise .year-exp .icon-bx .head-txt h5 {
    font-size: 18px;
    padding-bottom: 3px;
    margin: 0;
}
@media (max-width: 768px) {
    .expertise .year-exp {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .expertise .year-exp {
        grid-template-columns: 1fr;
    }
    .expertise .year-exp .icon-bx {
        border-right: none;
        border-bottom: 1px solid #d5d5d5;
    }
}

