body {
    font-family: Arial;
}

#navbar {
    background: transparent;
    transition: 0.3s;
    z-index: 1000;
}

#navbar.scrolled {
    /* Background color controlled via admin panel - inline style with !important */
}

/* Mobile navbar hamburger button visibility */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: 0.3rem 0.6rem !important;
    width: auto !important;
    height: auto !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    display: inline-block !important;
    width: 1.5em !important;
    height: 1.5em !important;
    vertical-align: middle !important;
    content: "" !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

/* Ensure navbar collapses properly on mobile */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
}

/* Hero Slider */
.hero-slider-section {
    position: relative;
    min-height: 740px;
    margin-bottom: 88px;
    background: #203f42;
    overflow: visible;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #203f42;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-item.active {
    opacity: 1;
    z-index: 1;
}

/* Video background for hero slides */
.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-copy {
    max-width: 980px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.hero-copy h5 {
    margin: 0 0 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-copy h2 {
    margin: 0;
    font-size: 3.9rem;
    line-height: 1.05;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 58px;
    padding: 16px 28px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-action-outline {
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.15);
}

.hero-action-fill {
    border: 2px solid #294a4e;
    background: #294a4e;
}

.hero-action:hover {
    color: #fff;
    filter: brightness(1.08);
}

.hero-nav-btn {
    position: absolute;
    top: 52%;
    z-index: 4;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(173, 134, 54, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    padding: 0;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-nav-prev {
    left: 18px;
}

.hero-nav-next {
    right: 18px;
}

.hero-nav-btn:hover {
    background: rgba(190, 148, 63, 1);
    transform: scale(1.08);
}

.hero-availability-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 5;
    transform: translate(-50%, 50%);
}

.hero-availability {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr 1.2fr 1.2fr 1fr;
    align-items: stretch;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    border: 10px solid rgba(255,255,255,0.92);
}

.hero-field {
    padding: 22px 14px 18px;
}

.hero-field label {
    display: block;
    margin-bottom: 16px;
    color: #9a9a9a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-field input {
    width: 100%;
    min-height: 58px;
    border: 1px solid #ddd;
    background: #f6f6f6;
    padding: 0 16px;
    color: #333;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-field input:focus {
    border-color: #294a4e;
    background: #fff;
}

.hero-field-small input {
    padding-right: 6px;
}

.hero-check-btn {
    border: none;
    background: #294a4e;
    color: #fff;
    padding: 0 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.78rem;
}

.hero-check-btn:hover {
    background: #203f42;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 145px 0 90px;
}

.about-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.about-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #e9eef0, #cfd8dc);
    color: #294a4e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.about-copy {
    color: #294a4e;
}

.about-eyebrow {
    margin: 0 0 12px;
    color: #6f7477;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.about-copy h2 {
    margin: 0 0 28px;
    color: #294a4e;
    font-size: 3.1rem;
    line-height: 1.22;
    font-weight: 700;
}

.about-copy h2 em {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    white-space: nowrap;
}

.about-description {
    color: #72777b;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.about-points {
    list-style: none;
    margin: 0 0 38px;
    padding: 0;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #31494d;
    margin-bottom: 16px;
    line-height: 1.55;
}

.about-points i {
    color: #c89439;
    font-size: 0.95rem;
    margin-top: 3px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 34px;
    background: #294a4e;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.78rem;
    font-weight: 800;
}

.about-btn:hover {
    background: #203f42;
    color: #fff;
}

/* Booking Form Section */
.booking-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(20px) translateX(-10px); }
    66% { transform: translateY(-20px) translateX(10px); }
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-section .row {
    position: relative;
    z-index: 2;
}

/* ===== MODERN BOOKING FORM STYLES ===== */
.booking-card {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95) !important;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.booking-card h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-card .form-control {
    margin-bottom: 15px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-card .form-control:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.booking-card .form-control::placeholder {
    color: #999;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f7f7f7;
    padding: 85px 0 90px;
}

.why-choose-header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.why-choose-eyebrow {
    margin: 0 0 14px;
    color: #294a4e;
    font-size: 0.82rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.why-choose-header h2 {
    margin: 0 0 18px;
    color: #294a4e;
    font-size: 3.15rem;
    line-height: 1.12;
    font-weight: 700;
}

.why-choose-header h2 em {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
}

.why-choose-header > p:last-child {
    color: #6b7074;
    line-height: 1.7;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.why-choose-card {
    min-height: 244px;
    background: #fff;
    border-radius: 10px;
    padding: 42px 34px 34px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(0,0,0,0.06);
}

.why-choose-icon {
    color: #c89439;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 18px;
}

.why-choose-card h3 {
    color: #294a4e;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 16px;
}

.why-choose-card p {
    color: #6b7074;
    line-height: 1.7;
    margin: 0;
}

/* Stats Counter Section */
.stats-counter-section {
    background: #fff;
    padding: 72px 0 76px;
}

.stats-counter-inner {
    border-top: 1px solid #294a4e;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding-top: 58px;
}

.stats-counter-card {
    text-align: center;
}

.stats-number-wrap {
    color: transparent;
    -webkit-text-stroke: 1.4px #5b6f73;
    text-stroke: 1.4px #5b6f73;
    font-size: clamp(4rem, 9vw, 7.4rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stats-suffix {
    display: inline-block;
}

.stats-counter-card p {
    color: #777;
    font-size: 1.1rem;
    margin: 0;
}

.booking-card .input-group {
    margin-bottom: 15px;
}

.booking-card .input-group .form-control {
    margin-bottom: 0;
    border-radius: 10px 0 0 10px;
}

.booking-card .input-group .btn {
    border-radius: 0 10px 10px 0;
    border: 2px solid #e0e0e0;
    background: white;
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 20px;
}

.booking-card .input-group .btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.booking-card .input-group .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-card select.form-control,
.booking-card input[type="date"].form-control {
    cursor: pointer;
}

.booking-card .btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#bookBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    margin-top: 10px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#bookBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#bookBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

#bookBtn:hover::before {
    width: 300px;
    height: 300px;
}

#bookBtn:active {
    transform: translateY(-1px);
}

/* OTP Get Button */
.btn-otp {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
    border-radius: 0 10px 10px 0 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    padding: 12px 20px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-otp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
    transition: left 0.6s;
}

.btn-otp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-otp:hover::before {
    left: 130%;
}

.btn-otp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-otp i {
    margin-right: 6px;
}

/* OTP Verification Section */
/* OTP Verification Section */
#otpVerificationSection {
    animation: slideInUp 0.4s ease-out;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#otpVerificationSection .form-control {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 5px;
    background: white;
}

.btn-verify-otp,
.btn-resend-otp {
    border: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 16px !important;
    color: white !important;
}

.btn-verify-otp {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 0 10px 10px 0 !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-verify-otp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-resend-otp {
    background: #e8e8e8 !important;
    color: #333 !important;
    border-radius: 0 10px 10px 0 !important;
    margin-left: -5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-resend-otp:hover {
    background: #d0d0d0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-verify-otp:disabled,
.btn-resend-otp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-verify-otp i,
.btn-resend-otp i {
    margin-right: 6px;
}

/* Status messages */
#otpStatus {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#otpTimer {
    color: #764ba2;
    font-weight: 700;
    display: inline-block;
}

/* Form animations for individual fields */
.booking-card .form-control {
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-card .form-control:nth-child(2) { animation-delay: 0.1s; }
.booking-card .form-control:nth-child(3) { animation-delay: 0.2s; }
.booking-card .form-control:nth-child(4) { animation-delay: 0.3s; }
.booking-card .form-control:nth-child(5) { animation-delay: 0.4s; }
.booking-card .form-control:nth-child(6) { animation-delay: 0.5s; }
.booking-card select { animation-delay: 0.6s; }

.map-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-controls {
    background: white;
    border-bottom: 1px solid #eee;
}

.map-controls .direction-btn {
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.map-controls .direction-btn:hover {
    transform: translateY(-2px);
}

.map-controls .direction-btn.btn-dark {
    background-color: #2d5016;
    border-color: #2d5016;
}

#directionsMap {
    flex-grow: 1;
    border-radius: 0 0 12px 12px;
}

.map-card {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .map-card {
        min-height: 350px;
    }
}
  
.room-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.room-card .card-img-top {
    height: 250px;
    object-fit: cover;
    aspect-ratio: 500 / 350;
}

.room-card:not(.glass-card):hover {
    transform: scale(1.05);
}

/* Glass Morphism Room Cards */
.room-card.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.room-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card.glass-card:hover .room-card-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card.glass-card:hover .room-card-overlay {
    opacity: 1;
}

.room-card-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--card-accent), rgba(0, 126, 212, 0.8));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.room-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.room-card-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 !important;
}

.room-amenity-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--card-accent, #007bff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.room-amenity-badge:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

.room-amenity-badge.more {
    font-weight: 600;
    font-size: 0.8rem;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.room-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--card-accent, #007bff);
    margin: 0;
}

.btn-glass {
    background: linear-gradient(135deg, var(--card-accent, #007bff), rgba(0, 126, 212, 0.8));
    border: none;
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 126, 212, 0.3);
    color: white;
    background: linear-gradient(135deg, rgba(0, 126, 212, 0.9), #004fa3);
}

.btn-glass:active {
    transform: translateY(0);
}

/* Rooms Marquee */
.rooms-marquee {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    background: #f8f9fa;
}

.rooms-marquee::before,
.rooms-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.rooms-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, rgba(248, 249, 250, 0));
}

.rooms-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, rgba(248, 249, 250, 0));
}

.rooms-track {
    display: flex;
    gap: 25px;
    -webkit-animation: scrollRooms 30s linear infinite;
    animation: scrollRooms 30s linear infinite;
    width: max-content;
}

/* Pause/resume controlled by JS with 3s delay */

.room-card-wrapper {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.room-card-wrapper:hover {
    transform: translateY(-10px);
}

@keyframes scrollRooms {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRoomsRtl {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.room-card-wrapper .card {
    height: 100%;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.room-filter-btn {
    transition: 0.2s;
}

.room-filter-btn.active,
.room-filter-btn:hover {
    background-color: #000 !important;
    color: white !important;
}

.badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    background: #f1f1f1;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    overflow: hidden;
}

.gallery-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.gallery-slide {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide-inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-slide-inner:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-slide-inner .gallery-img {
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: #007bff;
    color: #fff;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-filter-btn.active {
    background: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

@media (max-width: 768px) {
    .hero-slider-section {
        min-height: 790px;
        margin-bottom: 0;
    }

    .hero-slide-inner {
        padding-top: 92px;
        padding-bottom: 300px;
    }

    .hero-copy h5 {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-copy h2 {
        font-size: 2.45rem;
    }

    .hero-action {
        min-width: 145px;
        min-height: 52px;
        padding: 13px 18px;
        letter-spacing: 2px;
    }

    .hero-nav-btn {
        top: 45%;
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .hero-availability-wrap {
        position: absolute;
        bottom: 18px;
        transform: translateX(-50%);
        width: calc(100% - 24px);
    }

    .hero-availability {
        grid-template-columns: 1fr 1fr;
    }

    .hero-check-btn {
        grid-column: 1 / -1;
        min-height: 58px;
    }

    .about-section {
        padding: 95px 0 70px;
    }

    .about-copy h2 {
        font-size: 2.45rem;
    }

    .about-copy h2 em {
        white-space: normal;
    }

    .why-choose-section {
        padding: 70px 0;
    }

    .why-choose-header {
        margin-bottom: 42px;
    }

    .why-choose-header h2 {
        font-size: 2.25rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        min-height: auto;
        padding: 34px 22px;
    }

    .stats-counter-section {
        padding: 54px 0 60px;
    }

    .stats-counter-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 42px;
    }

    .stats-number-wrap {
        margin-bottom: 12px;
    }

    .gallery-slide {
        min-width: calc(50% - 10px);
    }
    .room-card-wrapper {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        min-height: 860px;
    }

    .hero-slide-inner {
        padding-bottom: 390px;
    }

    .hero-copy h2 {
        font-size: 2rem;
    }

    .hero-actions {
        margin-top: 30px;
    }

    .hero-availability {
        grid-template-columns: 1fr;
    }

    .hero-field {
        padding: 14px;
    }

    .hero-field label {
        margin-bottom: 8px;
    }

    .about-section {
        padding: 70px 0 60px;
    }

    .about-copy h2 {
        font-size: 2.1rem;
    }

    .about-copy h2 em {
        white-space: normal;
    }

    .about-eyebrow {
        letter-spacing: 3px;
    }

    .why-choose-eyebrow {
        letter-spacing: 3px;
    }

    .why-choose-header h2 {
        font-size: 2rem;
    }

    .gallery-slide {
        min-width: 100%;
    }
    .room-card-wrapper {
        min-width: 280px;
        max-width: 280px;
    }
}

/* Booking Preview Modal Styling */
#bookingPreviewModal .modal-content {
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-preview-container {
    padding: 10px;
}

.room-preview-images {
    position: relative;
}

.booking-details {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
}

.booking-success-badge {
    animation: scaleIn 0.5s ease-out;
}

.booking-confirmation {
    animation: fadeInUp 0.5s ease-out;
}

.payment-methods {
    background: rgba(0, 123, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.amenities-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.amenities-marquee::before,
.amenities-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.amenities-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.amenities-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.amenities-track {
    display: flex;
    gap: 25px;
    animation: scrollAmenities 30s linear infinite;
    width: max-content;
}

.amenities-track:hover {
    animation-play-state: paused;
}

.amenity-card {
    min-width: 200px;
    max-width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.amenity-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e2a3a;
}

.amenity-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

@keyframes scrollAmenities {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.footer-section {
    background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
}

.footer-section h4, .footer-section h5 {
    color: #ffffff;
    font-weight: 600;
}

.footer-section .text-light {
    color: #e9ecef !important;
}

.footer-section a.text-light:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer-section .list-unstyled li {
    margin-bottom: 8px;
}

/* Footer Styling */
.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-desc {
    color: #b8c5d6;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: rgba(0, 123, 255, 0.8);
    transform: translateY(-3px);
}

.footer-copyright {
    color: #b8c5d6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-link {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0 8px;
}

.footer-legal-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal-separator {
    color: #b8c5d6;
    margin: 0 8px;
}

.booking-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card {
    background: rgba(30,42,58,0.9);
    color: white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn-gradient {
    background: linear-gradient(45deg,#007bff,#00c6ff);
    color: white;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.whatsapp:hover {
    background: #1ebc61;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

#booking {
    transition: 0.3s;
}

    #booking.active {
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    animation: slideLeft 40s linear infinite;
}

.review-card {
    min-width: 300px;
    margin-right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

