/* =====================================
   CSS VARIABLES FOR COLORS
   ===================================== */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* =====================================
   GLOBAL STYLES
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* =====================================
   1️⃣ NAVIGATION BAR
   ===================================== */
.navbar {
    background-color: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.brand-name {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

/* .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
} */

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.btn-book-now {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Specific styling for #mainNav (menu page and consistent across site) */
#mainNav {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#mainNav .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

#mainNav .navbar-brand .brand-name {
    color: var(--primary-color);
}

#mainNav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#mainNav .nav-link:hover {
    color: var(--primary-color) !important;
}

#mainNav .btn-book-now {
    background: var(--primary-color) !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--white) !important;
}

#mainNav .btn-book-now:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* =====================================
   2️⃣ HERO SECTION
   ===================================== */
.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 62, 80, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   3️⃣ ABOUT SECTION
   ===================================== */
#about {
    padding: 5rem 0;
}

#about img {
    transition: transform 0.3s ease;
}

#about img:hover {
    transform: scale(1.05);
}

.about-features i {
    font-size: 1.2rem;
}

/* =====================================
   4️⃣ SERVICES SECTION
   ===================================== */
#services {
    padding: 5rem 0;
}

/* Services grid spacing */
#services .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

#services .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Disable hover effects on mobile for better touch experience */
@media (max-width: 768px) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .time-slot-btn:hover:not(:disabled) {
        transform: none;
    }
    
    .time-slot-btn:active:not(:disabled) {
        transform: scale(0.95);
    }
    
    .btn-primary:active,
    .btn-outline-primary:active,
    .btn-book-now:active {
        transform: scale(0.97);
    }
    
    .service-option:hover {
        transform: none;
        background-color: transparent;
    }
    
    .service-option:has(input[type="checkbox"]:checked):active {
        transform: scale(0.98);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card .card-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* =====================================
   5️⃣ STAFF SECTION
   ===================================== */
#staff {
    padding: 5rem 0;
}

.staff-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

/* =====================================
   6️⃣ GALLERY SECTION
   ===================================== */
#gallery {
    padding: 5rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* =====================================
   7️⃣ BOOKING SECTION
   ===================================== */
#booking {
    padding: 5rem 0;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Connecting line between steps - shows gray by default */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
    transition: background-color 0.3s ease;
}

/* Make connecting line gold when step is completed or active (line to the next step) */
.step.completed:not(:last-child)::after,
.step.active:not(:last-child)::after {
    background-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Completed steps - keep gold color (#d4af37) for previous steps */
.step.completed .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step.completed .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-step-content {
    min-height: 400px;
}

@media (max-width: 768px) {
    .booking-step-content {
        min-height: 350px;
    }
}

.service-option {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
    user-select: none; /* Prevent text selection when clicking */
}

.service-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Make entire card clickable */
.service-option label {
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding-left: 0.5rem;
}

.service-option input[type="checkbox"] {
    cursor: pointer;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-option input[type="checkbox"]:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Selected service option styling */
.service-option input[type="checkbox"]:checked ~ label,
.service-option:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
}

.service-option:has(input[type="checkbox"]:checked) {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Fallback for browsers without :has() support */
.service-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.time-slot-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    min-height: 44px; /* Touch-friendly minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.time-slot-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.time-slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.booking-summary {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.btn-next-step,
.btn-prev-step {
    min-width: 150px;
}

/* Button container for booking steps */
.booking-step-content .d-flex.justify-content-between {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.booking-step-content .d-flex.justify-content-between > * {
    flex: 1;
    min-width: 120px;
}

/* =====================================
   8️⃣ PRICING SECTION
   ===================================== */
#pricing {
    padding: 5rem 0;
}

.pricing-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.border-primary {
    border-width: 3px !important;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* =====================================
   9️⃣ TESTIMONIALS SECTION
   ===================================== */
#testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.testimonial-card {
    max-width: 800px;
    padding: 3rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.stars {
    font-size: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* =====================================
   🔟 CONTACT SECTION
   ===================================== */
#contact {
    padding: 5rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* =====================================
   11️⃣ FOOTER
   ===================================== */
footer {
    background-color: var(--bg-dark) !important;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-dark) !important;
    transform: translateY(-3px);
}

footer .list-unstyled a:hover {
    color: var(--primary-color) !important;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
        gap: 0.75rem;
        justify-content: flex-start;
        /* Hide scrollbar for cleaner look */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .booking-steps::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .booking-steps::before {
        display: none;
    }

    .step {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.75rem;
        text-align: center;
        white-space: nowrap;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .staff-image {
        width: 120px;
        height: 120px;
    }

    .gallery-item img {
        height: 250px;
    }
    
    /* Services Section Mobile Styles */
    #services {
        padding: 3rem 0;
    }
    
    .category-section {
        margin-bottom: 2.5rem;
    }
    
    .category-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .service-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.75rem !important;
    }
    
    .service-card .card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card .card-text {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .service-card .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 8px;
        min-height: 44px; /* Touch-friendly minimum */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card .text-primary {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card .small {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .btn-book-now {
        padding: 0.4rem 1rem !important;
        font-size: 0.875rem;
    }

    .booking-steps {
        gap: 0.5rem;
        padding-bottom: 0.75rem;
    }
    
    .step {
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .step-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .booking-step-content {
        min-height: 300px;
    }
    
    .time-slot-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        min-height: 42px;
        min-width: 80px;
    }
    
    .btn-next-step,
    .btn-prev-step {
        min-height: 44px;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Service options in booking form */
    .service-option {
        padding: 1rem 0.875rem;
        margin-bottom: 0.875rem;
        border-radius: 10px;
        min-height: 75px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-option:active {
        transform: scale(0.98);
        background-color: rgba(212, 175, 55, 0.08);
    }
    
    .service-option label {
        font-size: 0.95rem;
        cursor: pointer;
        padding-left: 0.75rem;
        line-height: 1.4;
    }
    
    .service-option label strong {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 1rem;
    }
    
    .service-option label .small {
        font-size: 0.85rem;
    }
    
    .service-option input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    /* Button layout on mobile - stack vertically */
    .booking-step-content .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem;
    }
    
    .booking-step-content .d-flex.justify-content-between > button {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .booking-step-content .d-flex.justify-content-between > div {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .booking-step-content .d-flex.justify-content-between > div .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Ensure buttons are properly sized on mobile */
    #viewMoreServicesBtn,
    #viewAllServicesBtn,
    #viewLessServicesBtn {
        width: 100% !important;
    }
    
    .service-option {
        padding: 0.75rem;
    }
    
    /* Services Section Mobile Styles - Small Screens */
    #services {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .category-section {
        margin-bottom: 2rem;
    }
    
    .category-section h3 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
    }
    
    .service-card {
        margin-bottom: 1.25rem;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .service-card .card-body {
        padding: 1.25rem 0.875rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
    
    .service-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .service-card .card-text {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    .service-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 42px;
        border-radius: 6px;
        width: 100%;
    }
    
    .service-card .text-primary {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }
    
    .service-card .small {
        font-size: 0.75rem;
    }
    
    /* Button improvements for mobile */
    .btn-primary,
    .btn-outline-primary,
    .btn-book-now {
        min-height: 44px;
        font-weight: 600;
        border-radius: 8px;
        padding: 0.625rem 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Category filter buttons in booking section */
    .filter-by-category-btn {
        transition: all 0.3s ease;
    }
    
    .filter-by-category-btn:active {
        transform: scale(0.95);
    }
}

/* =====================================
   UTILITY CLASSES
   ===================================== */
.shadow-sm {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Category Section Styles */
.category-section {
    margin-bottom: 4rem;
}

.category-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 2rem;
    text-transform: capitalize;
}

/* =====================================
   MENU PAGE SPECIFIC STYLES
   ===================================== */

/* Utility Classes */
.font-display {
    font-family: 'Playfair Display', serif;
}

.text-primary-gold {
    color: var(--primary-color) !important;
}

.bg-primary-gold {
    background-color: var(--primary-color) !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Menu Header */
.menu-header {
    background: #2a2a2a;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 0, 0, 0.3) 35px,
        rgba(0, 0, 0, 0.3) 70px
    );
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

.menu-header h1 {
    color: #ffffff;
}

.menu-header p {
    color: #e0e0e0;
}

.badge-custom {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.badge-best-deals {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.5rem 1.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.badge-best-deals:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.badge-best-deals i {
    font-size: 1rem;
}

/* Price Package Card Styling (Menu Page) */
.price-package-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Package Header with Illustration */
.package-header {
    background: #3a3a3a;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 0, 0, 0.2) 35px,
        rgba(0, 0, 0, 0.2) 70px
    );
    padding: 2.5rem 2rem;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.package-illustration {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.package-icon {
    font-size: 3.5rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Package Title inside Header */
.package-header .package-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    flex: 1;
}

/* Package Body */
.package-body {
    padding: 2rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Services List */
.services-list {
    flex: 1;
    margin-bottom: 1.5rem;
}

/* Service Item */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-details {
    flex: 1;
    padding-right: 1rem;
}

.service-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.service-duration {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
    line-height: 1.3;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #8b1538;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Package Footer with Booking Button */
.package-footer {
    padding-top: 1rem;
    margin-top: auto;
}

.btn-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #8b1538;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-booking:hover {
    background: #6d0f2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.btn-booking i {
    font-size: 0.9rem;
}

/* Responsive adjustments for Price Packages */
@media (max-width: 991px) {
    .price-package-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .package-header {
        padding: 1.75rem 1.25rem;
        min-height: 100px;
        gap: 1rem;
    }
    
    .package-icon {
        font-size: 2.5rem;
    }
    
    .package-header .package-title {
        font-size: 1.3rem;
    }
    
    .package-body {
        padding: 1.5rem 1.25rem;
    }
    
    .service-name {
        font-size: 0.95rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
}

/* Service Row Styling */
.service-row {
    position: relative;
    transition: all 0.2s ease;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background: linear-gradient(90deg, #fff9e6 0%, transparent 100%);
}


/* Price Tag */
.price-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.duration-badge {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Category Icon Wrapper */
.category-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.5) 10px, rgba(212, 175, 55, 0.5) 20px);
}

/* QR Section */
.qr-section-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.qr-code-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: transform 0.3s ease;
}

.qr-code-wrapper:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Service Row Book Button */
.service-row .btn-outline-primary {
    white-space: nowrap;
    min-width: 120px;
}

@media (max-width: 767px) {
    .service-row .col-md-4 {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

/* Print Media */
@media print {
    nav, .sticky-top, button {
        display: none !important;
    }
}

/* Menu Page Layout */
.menu-page-content {
    padding-top: 82px;
    min-height: 100vh;
    background: #fafafa;
}

.menu-page-content .position-relative-z2 {
    position: relative;
    z-index: 2;
}

.max-w-700 {
    max-width: 700px;
}

.qr-code-img {
    width: 250px;
    height: 250px;
}

.print-button {
    width: 60px;
    height: 60px;
    z-index: 1030;
}

/* QR Code Generator Styling */
.qr-code-container {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}

.qr-code-with-logo {
    position: relative;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block;
}

.qr-code-base {
    display: block;
    border-radius: 0.5rem;
}

.qr-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.qr-code-text {
    text-align: center;
    margin-top: 1.5rem;
}

@media print {
    nav, .btn, .border-top {
        display: none !important;
    }
    
    .qr-code-container {
        background: white;
        padding: 1rem;
    }
    
    .qr-code-with-logo {
        box-shadow: none;
        border: 2px solid #000;
    }
}
