/* ================================
   Sol Casa de Goa - Complete CSS
   ================================ */

/* Root Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================================
   Navigation Styles
   ================================ */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ================================
   Hero Section Styles
   ================================ */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    margin-top: 76px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: 1;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-up 15s infinite ease-in;
    z-index: 1;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 70%;
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 85%;
    animation-duration: 12s;
    animation-delay: 0.5s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Wave Animation */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out, pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    color: white;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25); /* Increased opacity */
    padding: 0.6rem 1.2rem; /* Slightly larger padding */
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Added border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow */
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 1.1rem;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
    color: white;
}

/* ================================
   Room Carousel Styles
   ================================ */
.room-carousel {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    animation: fadeInRight 1.2s ease-out;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   Booking Section Styles
   ================================ */
.booking-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.booking-card:hover::before {
    opacity: 1;
}

.booking-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 16px;
    z-index: -1;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Calendar Container */


.calendar-container::before {
    content: '📅';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ================================
   Room Cards Styles
   ================================ */
.room-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-image {
    height: 250px;
    object-fit: cover;
}

.badge-available {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.badge-unavailable {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* ================================
   Features Section Styles
   ================================ */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    background: var(--primary-color) !important;
    color: white;
}

/* ================================
   Amenities Section Styles
   ================================ */
.amenities-wrapper {
    position: relative;
    background: linear-gradient(to bottom, #87CEEB 0%, #98D8E8 50%, #B0E0E6 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.amenities-wrapper h2,
.amenities-wrapper h4,
.amenities-wrapper h5,
.amenities-wrapper h6 {
    color: #1f2937 !important;
}

.amenities-section {
    position: relative;
    margin-bottom: 3rem;
}

.amenities-section h4,
.attractions-section h4 {
    color: #1f2937 !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.amenities-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2563eb !important;
}

/* Ocean Animation */
.ocean-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%234A90E2"></path></svg>') repeat-x;
    animation: wave 10s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%235FA5E8" opacity="0.5"></path></svg>') repeat-x;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

.wave:nth-of-type(2) {
    top: -90px;
    animation: wave 10s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    top: -80px;
    animation: wave 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) 0.25s infinite, swell 7s ease 1.25s infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0, -10px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}

/* Palm Trees */
.palm-tree {
    position: absolute;
    bottom: 60px;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 200"><g fill="%23228B22"><path d="M75 200 Q70 150 75 100 Q80 150 75 200" fill="%238B4513"/><path d="M75 100 Q50 80 30 70 Q50 85 75 100 M75 100 Q100 80 120 70 Q100 85 75 100 M75 95 Q50 70 30 55 Q50 75 75 95 M75 95 Q100 70 120 55 Q100 75 75 95 M75 90 Q60 65 45 50 Q60 70 75 90 M75 90 Q90 65 105 50 Q90 70 75 90" fill="%23228B22"/></g></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    animation: palmSway 8s ease-in-out infinite;
}

.palm-tree-left {
    left: 5%;
    transform-origin: bottom center;
}

.palm-tree-right {
    right: 5%;
    transform-origin: bottom center;
    animation-delay: -2s;
}

@keyframes palmSway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Floating Elements */
.amenities-wrapper::before,
.amenities-wrapper::after {
    content: '🐚';
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.amenities-wrapper::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.amenities-wrapper::after {
    content: '🏝️';
    top: 30%;
    right: 10%;
    animation-delay: 5s;
}

/* Birds Animation */
.birds {
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 1.5rem;
    animation: fly 15s linear infinite;
    opacity: 0.4;
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-100px) translateY(-20px);
    }
    50% {
        transform: translateX(-200px) translateY(10px);
    }
    75% {
        transform: translateX(-300px) translateY(-15px);
    }
    100% {
        transform: translateX(-400px) translateY(0);
    }
}

/* Sun Animation */
.sun {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px #FFD700;
    animation: sunPulse 4s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes sunPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px #FFD700;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 70px #FFD700;
    }
}

/* Amenity Cards */
.amenity-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.amenity-card:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color) !important;
}

.amenity-card:hover::before {
    transform: scaleY(1);
}

.amenity-card i {
    font-size: 1.4rem;
    color: var(--primary-color);
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-card:hover i {
    animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.amenity-card span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.amenity-card.premium {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--text-dark) !important; /* Change text to dark */
}

.amenity-card.premium i {
    color: var(--primary-color) !important; /* Keep icon blue */
}

.amenity-card.premium span {
    color: var(--text-dark) !important; /* Dark text */
}

.amenity-card.premium small {
    color: var(--text-light) !important; /* Light gray for secondary text */
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}



/* Ensure all cards have consistent hover effect */
.amenity-card:hover,
.amenity-card.premium:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color) !important;
}


/* Make the +more tag look clickable like the details button */
.amenity-tag.clickable-more {
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amenity-tag.clickable-more:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Add a small icon to indicate it's clickable */
.amenity-tag.clickable-more::after {
    content: ' →';
    font-size: 0.9em;
    margin-left: 0.2rem;
}

/* Attraction Cards */
.attractions-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.attraction-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.attraction-card:hover::before {
    opacity: 0.1;
}

.attraction-card:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.attraction-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.attraction-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.attraction-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.attraction-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ================================
   Gallery Section Styles
   ================================ */
.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-btn {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.category-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    height: 300px;
}

.gallery-item-large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay span {
    font-weight: 600;
}

/* ================================
   Lightbox Styles
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 1rem;
}

.lightbox-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 2rem;
    overflow-x: auto;
    max-width: 100%;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: white;
}

/* ================================
   Contact Section Styles
   ================================ */
.contact-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

/* ================================
   Footer Styles
   ================================ */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ================================
   Modal Styles
   ================================ */
.modal-content {
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

#roomCarousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Room Thumbnails */
.room-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.room-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.room-thumbnail:hover,
.room-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.amenity-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Booking Summary Card */
.booking-summary-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.booking-summary-row:last-child {
    border-bottom: none;
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ================================
   Utility Classes
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
}

/* ================================
   Flatpickr Customization
   ================================ */
.flatpickr-calendar {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: none !important;
    border-radius: 12px !important;
}

/* ================================
   Responsive Styles
   ================================ */
@media (max-width: 768px) {
    /* Hero Adjustments */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .room-carousel {
        height: 300px;
        margin-top: 2rem;
    }
    
    .booking-card {
        margin-top: 0;
        padding: 1.5rem;
    }
    
    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        height: 300px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-thumbnails {
        padding: 0 1rem;
    }
    
    /* Amenities Responsive */
    .amenity-card {
        padding: 0.8rem 0.5rem; /* Reduce horizontal padding */
        font-size: 0.85rem;
        min-height: 60px; /* Ensure minimum height */
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .amenity-card i {
        font-size: 1.5rem; /* Slightly larger icon */
        width: auto;
        margin-bottom: 0.25rem;
    }
    .amenity-card span {
        font-size: 0.85rem;
        line-height: 1.2;
        display: block;
    }
        .amenity-card small {
        font-size: 0.7rem;
        line-height: 1.1;
        display: block;
        margin-top: 0.2rem;
        opacity: 0.8;
    }
    .attraction-card {
        padding: 1.5rem 1rem;
    }
    
    .attraction-card i {
        font-size: 2.5rem;
    }
    
    /* Modal Responsive */
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Navigation Responsive */
    .nav-link {
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .room-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-wave,
    .carousel-nav,
    .toast-container,
    footer {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .room-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
/* ================================
   Enhanced Footer Styles
   ================================ */
.enhanced-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.enhanced-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Top Section */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-brand h3 i {
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--secondary-color);
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.footer-links a:hover i {
    color: var(--secondary-color);
}

/* Contact Items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-section h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-links a:hover i {
    animation: socialBounce 0.6s;
}

@keyframes socialBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Social Media Specific Colors */
.social-links a:nth-child(1):hover { background: #1877f2; } /* Facebook */
.social-links a:nth-child(2):hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); } /* Instagram */
.social-links a:nth-child(3):hover { background: #25d366; } /* WhatsApp */
.social-links a:nth-child(4):hover { background: #1da1f2; } /* Twitter */
.social-links a:nth-child(5):hover { background: #ff0000; } /* YouTube */

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-section h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: #b0b0b0;
    margin-bottom: 0;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: white;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
}

.copyright {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.copyright .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.copyright i {
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    margin: 0;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-heading {
        margin-top: 2rem;
    }
    
    .newsletter-section {
        text-align: center;
    }
    
    .newsletter-form {
        margin-top: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ================================
   Clean Animated Header Styles
   ================================ */

/* Main Navbar */
.clean-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Background */
.navbar-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.wave {
    position: absolute;
    top: -50%;
    left: -5%;
    width: 110%;
    height: 200%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: 40%;
    animation: waveRotate 20s linear infinite;
    opacity: 0.5;
}

.wave-2 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(252, 211, 77, 0.05) 100%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.wave-3 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
    animation-duration: 30s;
}

@keyframes waveRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animated Brand */
.animated-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.animated-brand:hover {
    transform: translateX(5px);
}

/* Brand Icon with Pulse */
.brand-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    opacity: 0.8;
    font-style: italic;
}

/* Animated Navigation Links */
.animated-link {
    position: relative;
    color: #1f2937 !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.animated-link:hover .link-underline,
.animated-link.active .link-underline {
    width: calc(100% - 2.5rem);
}

.animated-link:hover,
.animated-link.active {
    color: #2563eb !important;
}

/* Animated CTA Button */
.btn-cta {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    border-radius: 50px;
    transition: transform 0.3s ease;
    margin-left: 2rem;
}

.btn-text {
    position: relative;
    z-index: 3;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    border-radius: 50px;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-cta:hover .btn-glow {
    opacity: 0.8;
}

.btn-cta:hover .btn-bg {
    transform: scale(1.05);
}

/* Custom Toggler */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 4px 8px;
    position: relative;
    width: 35px;
    height: 35px;
}

.toggler-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1f2937;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.custom-toggler:hover .toggler-bar {
    background: #2563eb;
}

/* Toggler Animation */
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Bottom Line Animation */
.navbar-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #667eea, #f59e0b, #667eea, #2563eb);
    background-size: 200% 100%;
    animation: lineFlow 3s linear infinite;
    width: 100%;
}

@keyframes lineFlow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Scrolled State */
.clean-navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.clean-navbar.scrolled .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.clean-navbar.scrolled .brand-name {
    font-size: 1.2rem;
}

.clean-navbar.scrolled .brand-tagline {
    font-size: 0.7rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .animated-link {
        display: block;
        text-align: center;
        margin: 0.25rem 0;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.02);
    }
    
    .animated-link:hover {
        background: rgba(37, 99, 235, 0.1);
    }
    
    .navbar-cta {
        text-align: center;
        margin: 1rem 0 0 0;
    }
    
    .btn-cta {
        margin-left: 0;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    /* .brand-tagline {
        display: none;
    } */

    .brand-tagline {
        display: block; /* Change from 'none' to 'block' */
        font-size: 0.65rem; /* Make it slightly smaller on mobile */
    }
    
    .animated-brand {
        gap: 0.5rem;
    }

    
    .brand-icon {
        width: 35px; /* Make icon slightly smaller */
        height: 35px;
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1rem; /* Adjust brand name size */
    }
}

/* Cancellation Policy Link Styles */
.cancellation-policy-section {
    padding: 0.75rem 0;
    border-top: 1px solid #e0e0e0;
}

.cancellation-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cancellation-policy-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.cancellation-policy-link i {
    font-size: 0.85rem;
}

/* Alternative styled version */
.cancellation-policy-notice {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.cancellation-policy-notice a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.cancellation-policy-notice a:hover {
    text-decoration: underline;
}

/* Page Load Animation */
@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.clean-navbar {
    animation: navbarSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Link Hover Ripple Effect */
.animated-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.animated-link:hover::before {
    width: 100%;
    height: 100%;
}

/* ================================
   Production Additional Styles
   ================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    text-align: center;
    color: white;
}

.loader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.loader-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.loader-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 80%; }
    100% { width: 100%; }
}

/* Error Pages */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
}

.error-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.error-title {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.error-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Offline Notification */
.offline-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    z-index: 1050;
    transition: transform 0.3s ease;
    display: none !important; /* Force hide by default */
    opacity: 0;
}

.offline-notification.show {
        display: block !important;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
    z-index: 1100;
}

.skip-link:focus {
    top: 0;
    color: white;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.1s ease;
}

/* Mobile Contact Bar */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 998;
}

.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
    transition: all 0.3s;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-right: none;
}

.contact-item.primary {
    background: var(--primary-color);
    color: white;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.contact-item.primary:hover {
    background: #1d4ed8;
}

.contact-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Emergency Banner */
.emergency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ef4444;
    color: white;
    padding: 0.75rem 0;
    z-index: 1100;
    font-size: 0.9rem;
    text-align: center;
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Performance - Lazy Load Images */
img[data-src] {
    filter: blur(5px);
    transition: filter 0.3s;
}

img.lazyloaded {
    filter: blur(0);
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .cookie-banner,
    .mobile-contact-bar,
    .scroll-progress,
    .offline-notification,
    .emergency-banner {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .form-control {
        border-width: 2px;
    }
}

/* ================================
   Testimonials Section Styles
   ================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 30s linear infinite;
}

/* Rating Summary */
.rating-badge {
    display: inline-block;
    background: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.rating-badge i.fa-airbnb {
    font-size: 3rem;
    color: #FF5A5F;
    display: block;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #FFB400;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Guest Info */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guest-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.guest-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.guest-info .stay-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.guest-rating {
    color: #FFB400;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Review Content */
.testimonial-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-highlight {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-weight: 500;
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Dots Indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .rating-badge {
        padding: 1.5rem 2rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
}

/* Auto-play Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    animation: slideIn 0.6s ease-out;
}


/* Instagram Link Styling */
.instagram-link {
    color: #100d0e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #C13584;
    text-decoration: underline;
}

/* Instagram Button Styling */
.btn-instagram {
    /* Remove the white background and add Instagram gradient by default */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    backdrop-filter: none;
    border: 2px solid transparent;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-instagram:hover {
    /* Change to blue on hover */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Instagram gradient effect on hover */
.btn-instagram::before {
    display: none;
}

.btn-instagram:hover::before {
    left: 0;
}

.btn-instagram:hover {
    border-color: transparent;
}

/* Icon styling */
.btn-instagram i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-instagram:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* 
Video background playing */

/* Video Background Styles - ADD THIS TO YOUR CSS */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.85) 0%, 
        rgba(118, 75, 162, 0.85) 100%);
    z-index: 1;
}

/* Make sure existing content appears above video */
.hero .container {
    position: relative;
    z-index: 3;
}

.hero .bubble {
    z-index: 2;
}

.hero-wave {
    z-index: 2;
}

/* Hide video on mobile to save bandwidth */

/* @media (max-width: 768px) {
    .hero-video-container {
        display: none;
    } */
    /* Show original gradient background on mobile */
    /* .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
} */

/* Guests Counter Styles */
.guests-counter {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    height: 48px; /* Match form-control height */
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.counter-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.counter-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-btn.minus {
    margin-right: 1rem;
}

.counter-btn.plus {
    margin-left: 1rem;
}

.counter-display {
    flex: 1;
    text-align: center;
    user-select: none;
}

#guestCount {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.guest-label {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

/* Focus state for accessibility */
.guests-counter:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .guests-counter {
        padding: 0.375rem;
    }
    
    .counter-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    #guestCount {
        font-size: 1.125rem;
    }
}

/* Amenities Grid in Modal */
#roomAmenities {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

#roomAmenities::-webkit-scrollbar {
    width: 6px;
}

#roomAmenities::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#roomAmenities::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#roomAmenities::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.amenity-item span {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Modal Guest Counter - reuse existing styles */
.modal-guests-counter {
    /* Same styles as main guest counter */
}

/* ================================
   Modern Rooms Section Styles
   ================================ */
.rooms-section {
    background: #f8f9fa;
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Modern Room Card */
.room-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Room Image Wrapper */
.room-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card-modern:hover .room-image {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card-modern:hover .room-overlay {
    opacity: 1;
}

.btn-view-gallery {
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-gallery:hover {
    transform: scale(1.05);
}

/* Room Badges */
.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

.room-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.availability-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.availability-badge.unavailable {
    background: rgba(239, 68, 68, 0.9);
}

/* Room Content */
.room-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
}

.room-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Room Features */
.room-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Amenities Preview */
.room-amenities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.amenity-tag {
    background: #e9ecef;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.amenity-tag:last-child {
    background: var(--primary-color);
    color: white;
}

/* Room Footer */
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.2rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.3rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-details {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--primary-color);
    color: white;
}

.btn-book-now {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

/* Full Villa Section */
.full-villa-section {
    margin-top: 5rem;
}

.villa-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.villa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B6B);
}

.villa-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.villa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-gallery-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.villa-content {
    padding: 3rem;
}

.villa-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.villa-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.villa-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Villa Highlights */
.villa-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Villa Features Grid */
.villa-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.villa-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
}

.villa-feature i {
    color: var(--primary-color);
}

/* Villa Footer */
.villa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.villa-price .label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.villa-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.villa-price .currency {
    color: var(--primary-color);
}

.villa-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.villa-actions {
    display: flex;
    gap: 1rem;
}

.btn-villa-details {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-villa-details:hover {
    background: var(--primary-color);
    color: white;
}

.btn-villa-book {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-villa-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .villa-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .villa-content {
        padding: 2rem;
    }
    
    .villa-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .room-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .villa-highlights {
        grid-template-columns: 1fr;
    }
    
    .villa-features-grid {
        grid-template-columns: 1fr;
    }
    
    .villa-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}


/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* Calendar Styles */
#calendar {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fc-event.booked-event {
    background-color: #ef4444 !important;
    border-color: #dc2626 !important;
    cursor: not-allowed;
}

.fc-daygrid-event {
    font-size: 0.85rem;
    padding: 2px 4px;
}

/* Availability Indicator */
.availability-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.availability-indicator.available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.availability-indicator.unavailable {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Enhanced Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.form-control.is-valid {
    border-color: #10b981;
}

/* Payment Method Icons */
.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.payment-method {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    opacity: 0.7;
}

.payment-method i {
    font-size: 2rem;
}

/* Real-time Validation */
.validation-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.validation-feedback.valid {
    color: #10b981;
}

.validation-feedback.invalid {
    color: #ef4444;
}

/* Booking Summary Enhanced */
.booking-summary-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.price-breakdown {
    margin: 1rem 0;
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.price-breakdown-item.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Secure Payment Badge */
.secure-payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    color: #10b981;
    font-size: 0.9rem;
}

.secure-payment-badge i {
    font-size: 1.2rem;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.pending {
    background: #fbbf24;
    color: #78350f;
}

.status-badge.confirmed {
    background: #10b981;
    color: white;
}

.status-badge.cancelled {
    background: #ef4444;
    color: white;
}

/* Mobile Responsive Calendar */
@media (max-width: 768px) {
    .fc-toolbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fc-toolbar-title {
        font-size: 1.2rem;
    }
    
    .fc-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Print Styles for Receipt */
@media print {
    .success-container {
        background: white;
        min-height: auto;
    }
    
    .success-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn,
    .alert {
        display: none !important;
    }
}

/* Search Results Section */
.search-results-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 400px;
}

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Results Header */
.results-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.success-header {
    border-left: 5px solid #28a745;
}

.error-header {
    border-left: 5px solid #dc3545;
}

.success-icon, .error-icon {
    font-size: 48px;
    margin-right: 25px;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.header-content h3 {
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.header-content p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Room Result Card */
.room-result-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.room-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.room-image-container {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.room-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.availability-badge {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-details-content {
    padding: 30px;
}

.room-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.room-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.feature-item i {
    color: #2563eb;
    font-size: 16px;
}

.booking-details-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row i {
    color: #2563eb;
    width: 20px;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sticky-pricing {
    position: sticky;
    top: 20px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.price-breakdown {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.price-value {
    font-weight: 500;
    color: #333;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.total-row {
    font-size: 18px;
    margin-bottom: 0;
}

.total-label {
    font-weight: 600;
    color: #333;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-book-now {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-view-details {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #2563eb;
    color: white;
}

.pricing-notice {
    background: #e3f2fd;
    color: #1976d2;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
}

/* Alternative Dates */
.alternatives-section {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.alternatives-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alternatives-title i {
    color: #ffc107;
}

.alternative-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alternative-card:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.2);
}

.alternative-header {
    margin-bottom: 15px;
}

.alternative-number {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.alternative-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.date-block {
    text-align: center;
}

.date-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.date-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.date-separator {
    color: #999;
}

.alternative-nights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-select-alternative {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-select-alternative:hover {
    background: #1d4ed8;
}

/* Other Options */
.other-options-section {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.other-options-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.option-button {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-button:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.option-button i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .success-icon, .error-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .room-features-list {
        grid-template-columns: 1fr;
    }
    
    .sticky-pricing {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
    
    .alternative-dates {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-separator {
        transform: rotate(90deg);
    }
}

/* Remove the calendar section */
.calendar-container {
    display: none;
}

/* Price Loading States */
.price-skeleton {
    display: inline-block;
    color: #ccc;
    animation: pulse 1.5s ease-in-out infinite;
}

.price-loading {
    color: #2563eb;
    font-size: 20px;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

/* Custom Price Badge */
.custom-price-badge {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.custom-price-badge i {
    margin-right: 4px;
}

/* Unavailable Badge */
.availability-badge.unavailable {
    background: #dc3545;
}

/* Responsive price display */
@media (max-width: 768px) {
    .price-amount {
        font-size: 20px;
    }
    
    .custom-price-badge {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        width: fit-content;
    }
}

/* Payment Confirmation Modal Styles */
.payment-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    text-align: center;
}

.payment-method-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.qr-code-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.upi-id-text {
    font-size: 14px;
    word-break: break-all;
}

.phone-number-display {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
    margin: 30px 0;
}

.payment-apps {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-badge {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.amount-to-pay-section {
    text-align: center;
}

.amount-card {
    background: #2563eb;
    color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.amount-display {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
}

.currency-symbol {
    font-size: 28px;
}

.amount-note {
    font-size: 14px;
    opacity: 0.9;
}

/* Upload Area */
.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-placeholder {
    cursor: pointer;
    padding: 20px;
}

.upload-placeholder:hover {
    background: #f8f9fa;
}

.upload-placeholder i {
    font-size: 48px;
    color: #999;
    margin-bottom: 10px;
}

.file-preview {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-confirmation-form {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    margin-top: 30px;
}

/* Success Animation */
.success-animation {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-reference {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-info-card {
        margin-bottom: 20px;
    }
    
    .amount-display {
        font-size: 28px;
    }
}


/* ================================
   Lazy Loading Gallery Styles
   ================================ */
/* ================================
   Fixed Lightbox Styles
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex !important; /* Force flex display */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 1rem;
    padding: 0 2rem;
}

.lightbox-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.lightbox-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    #lightbox-image {
        max-height: 60vh;
    }
}


/* Bank Payment Section */
.bank-payment-section {
    padding: 10px 0;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: #666;
    min-width: 120px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    flex: 1;
}

.bank-detail-item .btn-sm {
    padding: 2px 8px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-label {
        min-width: auto;
    }
}


/* Print Styles */
@media print {
    .navbar,
    .hero-wave,
    .carousel-nav,
    .toast-container,
    footer {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .room-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Ensure Airbnb button is clickable */
.testimonials-section .btn-outline-primary {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10;
    position: relative;
}

.testimonials-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Add to your CSS file */
.special-price-indicator {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #28a745;
    margin-top: 0.5rem;
    font-weight: 500;
}

#roomPrice {
    transition: all 0.3s ease;
}

#roomPrice .fa-spinner {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Optional: Add animation for price update */
@keyframes priceUpdate {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-updated {
    animation: priceUpdate 0.5s ease-out;
}

.form-label .text-muted {
    font-size: 0.85em;
    font-weight: normal;
}

.text-muted {
    color: #6c757d !important;
}

/* Coupon/Promo Code Styles */
.coupon-section {
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.coupon-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-apply-coupon {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-apply-coupon:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Coupon Status Messages */
.coupon-status {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.coupon-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.coupon-status i {
    font-size: 0.9rem;
}

/* Applied Coupon Display */
.applied-coupon {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.applied-coupon-code {
    font-weight: 600;
    color: var(--primary-color);
}

.remove-coupon {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
}

.remove-coupon:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coupon-input-group {
        flex-direction: column;
    }
    
    .btn-apply-coupon {
        width: 100%;
    }
}