/* ================================================
   HOTEL PANCHVATI - Main Stylesheet
   File: assets/css/style.css
   ================================================ */

/* --- Google Fonts & Variables --- */
:root {
    --primary: #8B6914;
    --primary-dark: #6B4F0E;
    --primary-light: #C4972A;
    --accent: #D4AF37;
    --bg-cream: #FFFDF7;
    --bg-soft: #FDF6EC;
    --bg-light: #F9F3E8;
    --bg-section: #FFF8F0;
    --text-dark: #2C2416;
    --text-muted: #7A6A55;
    --text-light: #A89070;
    --border-light: #E8D9C0;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 24px rgba(139, 105, 20, 0.10);
    --shadow-card: 0 8px 32px rgba(139, 105, 20, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-bar span {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar i {
    color: white;
}

.top-social {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.top-social:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* ========================================
   NAVIGATION (Desktop + Mobile)
======================================== */
#mainNav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(139, 105, 20, 0.08);
    padding: 0;
    transition: var(--transition);
    z-index: 1040;
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(139, 105, 20, 0.15);
}

.navbar-brand {
    padding: 4px 0;
}

.brand-icon {
    width: 100px;
    height: 80px;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-light)); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--white); */
    font-size: 20px;
    /* box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3); */
}

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

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* Desktop Nav Links */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 28px 16px !important;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    padding: 8px;
    border-top: 3px solid var(--primary);
}

.dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.dropdown-item:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

/* Book Now Button */
.btn-book-now {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.35);
    transition: var(--transition);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
    color: var(--white) !important;
}

/* ========================================
   MOBILE OFF-CANVAS MENU STYLES
======================================== */
.offcanvas {
    background: var(--white);
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-light);
    padding: 1rem;
}

.offcanvas-brand .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.offcanvas-brand .brand-name {
    font-size: 18px;
}

.offcanvas-brand .brand-sub {
    font-size: 9px;
}

.offcanvas-body .navbar-nav {
    width: 100%;
}

.offcanvas-body .nav-link {
    padding: 12px 16px !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 8px;
    color: var(--text-dark) !important;
}

.offcanvas-body .nav-link.active {
    color: var(--primary) !important;
    background: var(--bg-soft);
}

.offcanvas-body .dropdown-menu {
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
    border: none;
}

.offcanvas-body .dropdown-item {
    padding: 8px 16px;
    color: var(--text-muted);
}

.mobile-contact-info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-contact-info p {
    margin-bottom: 10px;
}

.mobile-contact-info i {
    color: var(--primary);
    width: 24px;
}

.mobile-contact-info .social-links a {
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}

.mobile-contact-info .social-links a:hover {
    color: var(--primary);
}

/* Hide desktop nav on mobile, show offcanvas on desktop? Bootstrap handles toggling */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (min-width: 992px) {
    .offcanvas {
        display: none !important;
    }
}

/* ========================================
   SECTION COMMONS
======================================== */
section {
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-divider.start {
    margin-left: 0;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   HERO / BANNER CAROUSEL
======================================== */
#heroCarousel {
    position: relative;
}

.carousel-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.carousel-item.active .carousel-bg {
    transform: scale(1);
}

.carousel-bg-1 {
    background-image: linear-gradient(135deg, rgba(44, 36, 22, 0.55) 0%, rgba(139, 105, 20, 0.35) 100%),
        url('../img/banner/6.jpeg');
}

.carousel-bg-2 {
    background-image: linear-gradient(135deg, rgba(44, 36, 22, 0.50) 0%, rgba(100, 70, 20, 0.40) 100%),
        url('../img/banner/7.jpeg');
}

.carousel-bg-3 {
    background-image: linear-gradient(135deg, rgba(20, 30, 44, 0.55) 0%, rgba(139, 105, 20, 0.30) 100%),
        url('../img/banner/4.jpeg');
}

.carousel-bg-4 {
    background-image: linear-gradient(135deg, rgba(44, 36, 22, 0.52) 0%, rgba(80, 60, 20, 0.38) 100%),
        url('../img/banner/3.jpeg');
}

.carousel-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.carousel-text {
    color: var(--white);
    max-width: 750px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.carousel-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.carousel-subtext {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
}

.carousel-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(139, 105, 20, 0.45);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 105, 20, 0.5);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
    transition: var(--transition);
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* ========================================
   BOOKING QUICK FORM
======================================== */
.booking-quick {
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    padding: 28px 32px;
   
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--primary);
}

.booking-quick .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.booking-quick .form-control,
.booking-quick .form-select {
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    background: var(--bg-cream);
    color: var(--text-dark);
    transition: var(--transition);
}

.booking-quick .form-control:focus,
.booking-quick .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.12);
    background: var(--white);
}

.btn-check-avail {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
    margin-top: 26px;
}

.btn-check-avail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
    color: var(--white);
}

/* ========================================
   ABOUT STRIP / AMENITIES
======================================== */
.amenity-strip {
    background: var(--bg-section);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-right: 1px solid var(--border-light);
}

.amenity-item:last-child {
    border-right: none;
}

.amenity-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.amenity-text h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.amenity-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767px) {
    .amenity-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
}

/* ========================================
   ROOMS SECTION
======================================== */
.rooms-section {
    background: var(--bg-soft);
    padding: 90px 0;
}

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

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.room-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-img-wrap img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.room-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    backdrop-filter: blur(6px);
}

.room-price .price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.room-price .per {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.room-body {
    padding: 24px;
}

.room-body h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.room-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.room-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.room-features span i {
    color: var(--primary);
    font-size: 14px;
}

.btn-room {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

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

/* ========================================
   MULTI-ITEM ROOMS CAROUSEL STYLES
   Desktop: 3 rooms | Tablet: 2 rooms | Mobile: 1 room
   Moves 1 room at a time
======================================== */
.rooms-multi-carousel {
    position: relative;
    padding: 0 40px;
}

.rooms-carousel-container {
    overflow: hidden;
    position: relative;
}

.rooms-carousel-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rooms-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.rooms-carousel-slide {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
}

.rooms-carousel-slide .room-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

/* Navigation Buttons */
.rooms-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.9;
}

.rooms-nav-btn:hover {
    background: var(--primary-dark);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.rooms-prev {
    left: -10px;
}

.rooms-next {
    right: -10px;
}

/* Dots/Indicators */
.rooms-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.rooms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.rooms-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.rooms-dot:hover {
    background-color: var(--primary-light);
}

/* Tablet: 2 rooms */
@media (max-width: 991px) {
    .rooms-multi-carousel {
        padding: 0 30px;
    }
    
    .rooms-carousel-slide .room-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .rooms-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .rooms-prev {
        left: -5px;
    }
    
    .rooms-next {
        right: -5px;
    }
}

/* Mobile: 1 room */
@media (max-width: 767px) {
    .rooms-multi-carousel {
        padding: 0 20px;
    }
    
    .rooms-carousel-slide .room-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }
    
    .rooms-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .rooms-prev {
        left: -10px;
    }
    
    .rooms-next {
        right: -10px;
    }
}

/* Gap between rooms */
.rooms-carousel-slide {
    gap: 24px;
}

@media (max-width: 767px) {
    .rooms-carousel-slide {
        gap: 20px;
    }
}

/* ========================================
   NEARBY ATTRACTIONS SECTION
======================================== */
.nearby-section {
    background: var(--bg-light);
    padding: 90px 0;
}

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

.nearby-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.nearby-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.nearby-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nearby-card:hover .nearby-img img {
    transform: scale(1.08);
}

.nearby-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(44, 36, 22, 0.8));
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.nearby-distance {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nearby-distance i {
    font-size: 11px;
}

.nearby-info {
    padding: 20px;
}

.nearby-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.nearby-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.nearby-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nearby-btn i {
    transition: var(--transition);
}

.nearby-btn:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.nearby-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for nearby section */
@media (max-width: 991px) {
    .nearby-section {
        padding: 70px 0;
    }
    
    .nearby-img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .nearby-img {
        height: 180px;
    }
    
    .nearby-info h4 {
        font-size: 16px;
    }
    
    .nearby-info p {
        font-size: 12px;
    }
}

/* ========================================
   GALLERY MARQUEE SECTION
======================================== */
.gallery-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px 0;
}

.gallery-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-marquee-content {
    display: flex;
    gap: 20px;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: fit-content;
}

/* Right to Left Animation */
.marquee-right-to-left .gallery-marquee-content {
    animation-name: marqueeRightToLeft;
}

/* Left to Right Animation */
.marquee-left-to-right .gallery-marquee-content {
    animation-name: marqueeLeftToRight;
}

@keyframes marqueeRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.gallery-marquee:hover .gallery-marquee-content {
    animation-play-state: paused;
}

.gallery-marquee-item {
    flex: 0 0 auto;
    width: 280px;
    height: 200px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-marquee-item:hover img {
    transform: scale(1.1);
}

.gallery-marquee-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 36, 22, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-marquee-item:hover .gallery-marquee-overlay {
    opacity: 1;
}

.gallery-marquee-overlay i {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 8px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-marquee-item:hover .gallery-marquee-overlay i {
    transform: scale(1);
}

.gallery-marquee-overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-marquee-item:hover .gallery-marquee-overlay span {
    transform: translateY(0);
}

/* Gradient fade effect on edges */
.gallery-marquee-wrapper::before,
.gallery-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-light), transparent);
}

.gallery-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-light), transparent);
}

/* Responsive adjustments for gallery marquee */
@media (max-width: 991px) {
    .gallery-marquee-item {
        width: 240px;
        height: 180px;
    }
    
    .gallery-marquee-content {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .gallery-marquee-item {
        width: 200px;
        height: 150px;
    }
    
    .gallery-marquee-content {
        gap: 12px;
    }
    
    .gallery-marquee-overlay span {
        font-size: 11px;
    }
    
    .gallery-marquee-overlay i {
        font-size: 22px;
    }
    
    .gallery-marquee-wrapper::before,
    .gallery-marquee-wrapper::after {
        width: 20px;
    }
}

@media (max-width: 575px) {
    .gallery-marquee-item {
        width: 160px;
        height: 120px;
    }
    
    .gallery-marquee-content {
        gap: 10px;
    }
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-section {
    background: var(--white);
    padding: 90px 0;
}

.why-card {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-light);
    background: var(--white);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-soft));
    border: 2px solid var(--border-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    transform: rotate(-5deg) scale(1.05);
}

.why-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    background: var(--bg-light);
    padding: 90px 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background: var(--bg-section);
    padding: 90px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent);
    opacity: 0.25;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.star-rating {
    color: #F4B942;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
}

.author-info h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   STATS / COUNTER SECTION
======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    margin: auto;
}

/* ========================================
   ENQUIRY FORM SECTION
======================================== */
.enquiry-section {
    background: var(--white);
    padding: 90px 0;
}

.enquiry-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-md);
    padding: 48px 36px;
    color: var(--white);
    height: 100%;
}

.enquiry-info h3 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 12px;
}

.enquiry-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.contact-info-list li i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-list li strong {
    color: var(--white);
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

/* Enquiry Form Card */
.enquiry-form-card {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    border: 1px solid var(--border-light);
    height: 100%;
}

.enquiry-form-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.enquiry-form-card>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.12);
}

textarea.form-control {
    resize: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 13px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
    color: var(--white);
}

@media (max-width: 767px) {
    .enquiry-form-card {
        padding: 32px 24px;
    }

    .enquiry-info {
        padding: 36px 24px;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer-newsletter {
    background: var(--primary-dark);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.newsletter-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    flex: 1;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: none;
}

.btn-newsletter {
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.footer-main {
    background: #1C1508;
    padding: 70px 0 50px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.footer-brand-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.brand-icon-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 11px;
    color: var(--accent);
    transition: var(--transition);
}

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

.footer-links a:hover i {
    color: var(--accent);
}

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

.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: #120E04;
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.footer-bottom p strong {
    color: var(--accent);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.4);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.5);
}

/* ========================================
   UTILITY / MISC
======================================== */
.text-gold {
    color: var(--primary);
}

/* Alert on form submission */
.alert-success {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    color: #166534;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-rows: repeat(2, 200px);
    }
}

@media (max-width: 991px) {
    .rooms-section,
    .why-section,
    .gallery-section,
    .nearby-section,
    .testimonials-section,
    .stats-section,
    .enquiry-section {
        padding: 70px 0;
    }

    .stat-divider {
        display: none;
    }

    .booking-quick {
        margin-top: -30px;
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .carousel-slide {
        height: 70vh;
        min-height: 500px;
    }

    .booking-quick {
        margin-top: 0;
        border-radius: 0;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .carousel-actions .btn {
        padding: 11px 22px;
        font-size: 12px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
        text-align: center;
    }
}