#gallery .carousel,
#therapist .carousel {
    padding-bottom: 50px;
}
/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #2d5a27;
    --primary-light: #4a7c59;
    --primary-dark: #1e3a1a;
    --secondary-color: #8fbc8f;
    --accent-gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-light: #666666;
    --text-dark: #2c2c2c;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.25);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.btn {
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-text .brand-main {
    font-size: 1.5rem;
    color: var(--white) !important;
}

.footer-brand-text .brand-sub {
    font-size: 0.8rem;
    color: #ccc !important;
    opacity: 0.9;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(45, 90, 39, 0.1);
}

.book-btn {
    font-size: 0.9rem !important;
    padding: 10px 25px !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(45, 90, 39, 0.4), rgba(30, 58, 26, 0.6)), 
                url('images/regularmassge.jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.8) 0%, rgba(143, 188, 143, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons .btn {
    margin: 0 10px 10px 0;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ===== ABOUT SECTION ===== */
#about {
    padding: 100px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    min-width: 120px;
}

.about-badge i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.about-badge span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-content {
    padding-left: 2rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-features .feature-item i {
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
#services {
    padding: 100px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.8), rgba(143, 188, 143, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: var(--white);
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== THERAPIST SECTION ===== */
#therapist {
    padding: 100px 0;
    background: var(--light-gray);
}

.therapist-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.therapist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.therapist-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: calc(var(--border-radius) - 2px);
    background: #f5f5f5;
}

.therapist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.therapist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.8), rgba(143, 188, 143, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapist-card:hover .therapist-overlay {
    opacity: 1;
}

.therapist-icon {
    color: var(--white);
    font-size: 3rem;
}

.therapist-content {
    padding: 2rem;
    text-align: center;
}

.therapist-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.therapist-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
/* Gallery Grid Styles */
.gallery-grid {
    margin: 0;
}

/* Reset gallery carousel to simple flat sliding (no 3D) */
#galleryCarousel .carousel-inner {
    overflow: hidden;
}

#galleryCarousel .carousel-item {
    transition: transform 0.6s ease;
}

#galleryCarousel .gallery-item {
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

#galleryCarousel .col-lg-4 {
    transition: all 0.5s ease;
}

/* Remove 3D/triangle effects from gallery items */
#galleryCarousel .col-lg-4:first-child .gallery-item,
#galleryCarousel .col-lg-4:last-child .gallery-item,
#galleryCarousel .col-lg-4:nth-child(2) .gallery-item {
    transform: none !important;
    filter: none !important;
    box-shadow: var(--shadow-light) !important;
}

#galleryCarousel .col-lg-4:nth-child(2) .gallery-item::before,
#galleryCarousel .col-lg-4:nth-child(2) .gallery-item::after {
    content: none !important;
    display: none !important;
}

#galleryCarousel .carousel-item.active {
    z-index: 2;
}

/* Use Bootstrap default horizontal sliding (no rotateY) */
#galleryCarousel .carousel-item-next.carousel-item-start,
#galleryCarousel .carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}

#galleryCarousel .active.carousel-item-start,
#galleryCarousel .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%) !important;
}

#galleryCarousel .active.carousel-item-end,
#galleryCarousel .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%) !important;
}

@media (hover: none) and (pointer: coarse) {
    #galleryCarousel {
        cursor: grab;
    }
    
    #galleryCarousel:active {
        cursor: grabbing;
    }
}

/* ===== CAROUSEL CONTROLS ===== */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next,
#therapistCarousel .carousel-control-prev,
#therapistCarousel .carousel-control-next {
    width: 46px;
    height: 46px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    z-index: 1000;
    position: absolute;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

#galleryCarousel .carousel-control-prev,
#therapistCarousel .carousel-control-prev {
    left: 20px;
}

#galleryCarousel .carousel-control-next,
#therapistCarousel .carousel-control-next {
    right: 20px;
}

#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover,
#therapistCarousel .carousel-control-prev:hover,
#therapistCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon,
#therapistCarousel .carousel-control-prev-icon,
#therapistCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}

/* Ensure carousel container has relative positioning */
#galleryCarousel,
#therapistCarousel {
    position: relative;
}

/* Ensure section containers act as positioning context when controls are outside carousel markup */
#gallery .container,
#therapist .container {
    position: relative;
}

/* Style and position controls even if they are outside the carousel element */
.carousel-control-prev[data-bs-target="#galleryCarousel"],
.carousel-control-next[data-bs-target="#galleryCarousel"],
.carousel-control-prev[data-bs-target="#therapistCarousel"],
.carousel-control-next[data-bs-target="#therapistCarousel"] {
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.32);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 16px rgba(0,0,0,0.18);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.carousel-control-prev[data-bs-target="#galleryCarousel"],
.carousel-control-prev[data-bs-target="#therapistCarousel"] {
    left: 20px;
}

.carousel-control-next[data-bs-target="#galleryCarousel"],
.carousel-control-next[data-bs-target="#therapistCarousel"] {
    right: 20px;
}

.carousel-control-prev[data-bs-target="#galleryCarousel"]:hover,
.carousel-control-next[data-bs-target="#galleryCarousel"]:hover,
.carousel-control-prev[data-bs-target="#therapistCarousel"]:hover,
.carousel-control-next[data-bs-target="#therapistCarousel"]:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.26);
}

/* ===== CAROUSEL INDICATORS ===== */
#galleryCarousel .carousel-indicators,
#therapistCarousel .carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

#galleryCarousel .carousel-indicators button,
#therapistCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: none;
}

#galleryCarousel .carousel-indicators button.active,
#therapistCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--primary-dark);
}

#galleryCarousel .carousel-indicators button:hover,
#therapistCarousel .carousel-indicators button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* ===== RESPONSIVE CAROUSEL STYLES ===== */
@media (max-width: 768px) {
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next,
    #therapistCarousel .carousel-control-prev,
    #therapistCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
        background: rgba(0,0,0,0.28);
        border: 1px solid rgba(255,255,255,0.25);
    }
    
    #galleryCarousel .carousel-control-prev,
    #therapistCarousel .carousel-control-prev {
        left: 15px;
    }
    
    #galleryCarousel .carousel-control-next,
    #therapistCarousel .carousel-control-next {
        right: 15px;
    }
    
    #galleryCarousel .carousel-control-prev-icon,
    #galleryCarousel .carousel-control-next-icon,
    #therapistCarousel .carousel-control-prev-icon,
    #therapistCarousel .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    /* Mobile gallery items styling */
    #galleryCarousel .col-12 {
        padding: 0 15px;
    }

    #galleryCarousel .carousel-item .row {
        margin: 0;
    }

    .gallery-item {
        margin-bottom: 0;
        max-width: 100%;
        height: 300px;
        position: relative;
        z-index: 1;
    }

    .therapist-card {
        margin-bottom: 0;
        max-width: 100%;
    }

    /* Ensure carousel controls are above content */
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next,
    #therapistCarousel .carousel-control-prev,
    #therapistCarousel .carousel-control-next {
        z-index: 1001;
    }

    /* Ensure buttons are properly styled */
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next,
    #therapistCarousel .carousel-control-prev,
    #therapistCarousel .carousel-control-next {
        display: flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .therapist-content {
        padding: 1.5rem;
    }
    
    .therapist-content h4 {
        font-size: 1.2rem;
    }
    
    .therapist-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Fix carousel inner spacing on mobile */
    #galleryCarousel .carousel-inner,
    #therapistCarousel .carousel-inner {
        padding: 0;
        overflow: hidden;
    }
    
    /* Prevent horizontal scroll on mobile */
    #gallery,
    #therapist {
        overflow-x: hidden;
        padding: 50px 0;
    }
    
    /* Ensure proper container spacing */
    #galleryCarousel .container,
    #therapistCarousel .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix gallery item sizing on mobile */
    .gallery-item {
        height: 250px;
        width: 100%;
    }
    
    .mobile-gallery-item {
        height: 300px;
        width: 100%;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-medium);
    }
    
    .mobile-gallery-item .gallery-image {
        height: 100%;
    }
    
    .mobile-gallery-item .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .therapist-image {
        height: 250px;
    }
    
    /* Improve touch targets */
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next,
    #therapistCarousel .carousel-control-prev,
    #therapistCarousel .carousel-control-next {
        touch-action: manipulation;
    }
    
    /* Prevent text selection during swipe */
    #galleryCarousel,
    #therapistCarousel {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile carousel indicators styling */
    #galleryCarousel .carousel-indicators.d-flex.d-md-none {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 0 20px;
    }
    
    #galleryCarousel .carousel-indicators.d-flex.d-md-none button {
        width: 8px;
        height: 8px;
        margin: 2px;
    }
    
    /* Ensure proper slide transitions on mobile */
    .carousel-item.d-block.d-md-none {
        position: relative;
    }
    
    /* Mobile gallery hover effects */
    .mobile-gallery-item:hover .gallery-overlay {
        opacity: 0;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    /* Tablet: Show 2 images per slide */
    #galleryCarousel .col-lg-4,
    #therapistCarousel .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    /* Desktop: Show 3 images per slide */
    #galleryCarousel .col-lg-4,
    #therapistCarousel .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
#gallery {
    padding: 100px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    height: 300px;
    aspect-ratio: 4/3;
    background: var(--primary-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-light);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    height: 100%;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 39, 0.8);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Only apply hover effects to center images in carousel */
/* Simplified hover behavior */
.gallery-item:hover .gallery-overlay { opacity: 0; }
.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== PRICING SECTION ===== */
#pricing {
    padding: 100px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 100px 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* New styles for branch selector */
.dropdown-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.dropdown-toggle:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.dropdown-menu {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: none;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Styles for sections in book-now.html */
#booking-form-section,
#contact-info-section,
#map-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .dropdown-menu {
        width: 100% !important;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-dark) 100%);
    position: relative;
}

.footer-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact .contact-item {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact .contact-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

/* ===== BACK TO TOP BUTTON ===== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-main {
        font-size: 1.5rem;
    }
    
    .brand-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .brand-main {
        font-size: 1.3rem;
        line-height: 1;
    }
    
    .brand-sub {
        font-size: 0.7rem;
        margin-left: 0;
        line-height: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 15px !important;
        margin: 2px 0;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0;
    }
    
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 5px 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        max-width: 200px;
    }
    
    .brand-main {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .brand-sub {
        font-size: 0.6rem;
        opacity: 0.7;
    }
    
    .navbar-toggler {
        padding: 2px 6px;
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-content,
    .contact-form-wrapper,
    .contact-info,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .about-badge {
        position: static;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .gallery-item {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .footer-brand-text .brand-main {
        font-size: 1.2rem;
    }
    
    .footer-brand-text .brand-sub {
        font-size: 0.7rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .book-btn {
        font-size: 0.8rem !important;
        padding: 8px 15px !important;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
    .navbar-brand {
        max-width: 180px;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
}

/* ===== LANDSCAPE PHONES ===== */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 414px) {
    .navbar {
        padding: 3px 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.5rem;
    }
    
    .hero-section {
        height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ===== CUSTOM ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== ADDITIONAL SERVICES & PACKAGES ===== */
.additional-service-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-light);
}

.additional-service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.additional-service-info {
    flex-grow: 1;
}

.additional-service-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.additional-service-duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.additional-service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 1.5rem;
    border-left: 2px solid rgba(45, 90, 39, 0.1);
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.package-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

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

.package-features li {
    padding: 0.35rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    margin: 4rem 0;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-wheel {
        animation: none;
    }
    
    .scroll-mouse {
        animation: none;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --text-light: #333;
        --shadow-light: 0 2px 4px rgba(0,0,0,0.3);
        --shadow-medium: 0 4px 8px rgba(0,0,0,0.4);
    }
}

/* Enhanced Duration Text Visibility */
.package-duration {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #2d5a27 !important;
    background: rgba(45, 90, 39, 0.1) !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(45, 90, 39, 0.2) !important;
    display: inline-block !important;
    margin-top: 4px !important;
}

.additional-service-duration {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #2d5a27 !important;
    background: rgba(45, 90, 39, 0.1) !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(45, 90, 39, 0.2) !important;
    display: inline-block !important;
}
