/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo-bg {
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: preloaderRotate 1s ease-in-out infinite;
    position: relative;
    margin: auto;
    top: -80px;
}

@keyframes preloaderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-animate-delay-1 { transition-delay: 0.2s; }
.scroll-animate-delay-2 { transition-delay: 0.4s; }
.scroll-animate-delay-3 { transition-delay: 0.6s; }

/* Disable scroll animations on mobile devices */
@media (max-width: 768px) {
    .scroll-animate { opacity: 1; transform: none; transition: none; }
    .scroll-animate.animate { opacity: 1; transform: none; }
    .scroll-animate-delay-1,
    .scroll-animate-delay-2,
    .scroll-animate-delay-3 { transition-delay: 0s; }
}

/* Sticky Booking Bar */
.booking-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.booking-sticky-content {
    color: #ffffff;
    padding-right: 1rem;
}

.booking-sticky-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.booking-sticky-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.booking-sticky-form {
    /* background: rgba(255,255,255,0.98); */
    padding: 20px 6px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.booking-sticky-form .form-control,
.booking-sticky-form .form-select {
    height: 44px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 8px 12px;
    line-height: 1.25;
    background: rgba(255,255,255,0.95);
    color: #111;
    transition: all 0.3s ease;
}

.booking-sticky-form .form-control:focus,
.booking-sticky-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: #ffffff;
}

/* Custom dropdown icon for select fields */
.booking-sticky-form .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.9rem;
    background-color: rgba(255,255,255,0.98) !important;
    color: #111 !important;
}

.booking-sticky-form .btn-booking-submit {
    height: 44px;
    background-color: var(--secondary-color);
    border: none;
    color: #111111;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.booking-sticky-form .btn-booking-submit:hover {
    background-color: #B8941F;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mobile Close Button */
.mobile-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #6c757d;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.mobile-close-btn:hover {
    background: #ffffff;
    color: #343a40;
    transform: scale(1.1);
}

.booking-sticky-bar.visible { transform: translateY(0); opacity: 1; visibility: visible; }

/* Mobile Booking Strip */
.mobile-booking-strip {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2400;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-booking-strip.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-booking-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    max-width: 100%;
    overflow: hidden;
}

.mobile-booking-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    flex-shrink: 0;
}

.btn-mobile-booking {
    background-color: var(--secondary-color);
    color: #111111;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
}

.btn-mobile-booking:hover {
    background-color: #B8941F;
    color: #111111;
    transform: translateY(-1px);
}

.btn-mobile-booking i {
    font-size: 1rem;
}



/* Hide mobile strip on desktop */
@media (min-width: 769px) {
    .mobile-booking-strip {
        display: none;
    }
}

/* Show sticky booking bar on mobile only when toggled */
@media (max-width: 768px) {
    .booking-sticky-bar {
        display: block;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        /* Override scroll-based visibility on mobile */
        z-index: 2500;
        padding: 0;
    }
    
    .booking-sticky-bar.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Hide sticky bar on scroll for mobile */
    .booking-sticky-bar.visible {
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .booking-sticky-content {
        padding: 0.5rem 1rem;
    }
    
    .booking-sticky-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .booking-sticky-description {
        font-size: 0.8rem;
    }
    
    .booking-sticky-form {
        padding: 0.5rem 1rem 1rem 1rem;
        margin: 0;
    }
    
    .booking-sticky-form .form-control,
    .booking-sticky-form .form-select,
    .booking-sticky-form .btn-booking-submit {
        height: 44px;
    }
    
    .booking-sticky-form .row {
        margin: 0;
    }
    
    .booking-sticky-form .col-md-6,
    .booking-sticky-form .col-lg-3 {
        padding: 0.1rem;
    }
}

/* Reserve space so content isn't hidden behind sticky bar */
body { padding-bottom: 90px; }
/* Pages without mobile booking bar should not reserve bottom space */
body.page-about { padding-bottom: 0; }
/* Booking page should also not reserve bottom space */
body.page-booking { padding-bottom: 0; }
/* Contact page should also not reserve bottom space */
body.page-contact { padding-bottom: 0; }
/* Gallery page should also not reserve bottom space */
body.page-gallery { padding-bottom: 0; }
/* Rooms page should also not reserve bottom space */
body.page-rooms { padding-bottom: 0; }

@media (max-width: 768px) {
    .booking-sticky-bar { padding: 8px 0; }
    body { padding-bottom: 50px; }
    body.page-about { padding-bottom: 0; }
    body.page-booking { padding-bottom: 0; }
    body.page-contact { padding-bottom: 0; }
    body.page-gallery { padding-bottom: 0; }
    body.page-rooms { padding-bottom: 0; }
    
    .booking-sticky-content {
        padding-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .booking-sticky-title {
        font-size: 1.2rem;
    }
    
    .booking-sticky-form {
        padding: 0.5rem;
    }
    
    .booking-sticky-form .form-control,
    .booking-sticky-form .form-select,
    .booking-sticky-form .btn-booking-submit {
        height: 44px;
    }
}

/* About page */
.page-hero {
  position: relative;
  background: url('assets/hero-slide4.jpg') center/cover no-repeat;
  height: 75vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 20%, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 45%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-copy { text-align: center; width: 100%; padding: 0 16px 90px; }
.page-hero .title { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; }
.breadcrumb-nav { margin: 0; }
.breadcrumb { background: transparent; }
.breadcrumb-item a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--secondary-color); }
.breadcrumb-item.active { color: var(--secondary-color); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.7); content: ">"; }

/* Wave divider */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; }
.hero-wave svg { display: block; width: 100%; height: 160px; }

/* About Story (Our History & Commitment) */
.about-story { padding-top: 4rem; padding-bottom: 4rem; }
.about-story .eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase; color: #b06300; margin-bottom: 1rem; font-weight: 700; }
.about-story .story-title { font-size: 3.2rem; line-height: 1.1; margin-bottom: 1.5rem; word-wrap: break-word; overflow-wrap: break-word; }
.about-story .story-title .story-italic { font-style: italic; font-weight: 700; }
.about-story .story-text p { color: #475569; margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
.about-story .story-media { display: grid; grid-template-columns: 1fr; align-items: stretch; height: 100%; position: relative; overflow: visible; }
.about-story .story-media .media-back,
.about-story .story-media .media-front { grid-area: 1 / 1; }
.about-story .story-media .media-back { justify-self: end; align-self: start; width: 62%; height: 80%; object-fit: cover; border-radius: 12px;  z-index: 1; }
.about-story .story-media .media-front { justify-self: start; align-self: end; width: 78%; height: 80%; object-fit: cover; border-radius: 12px;  z-index: 2; }

@media (max-width: 992px) {
  .about-story .story-title { font-size: 2.4rem; }
  .about-story .story-media { min-height: 0; height: auto; }
  .about-story .story-media .media-back,
  .about-story .story-media .media-front { grid-area: auto; justify-self: stretch; align-self: stretch; width: 100%; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,.15); border-radius: 12px; }
}

@media (max-width: 768px) {
  .about-story { padding-top: 2rem; padding-bottom: 2rem; }
  .about-story .story-title { font-size: 2rem; line-height: 1.2; margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
  .about-story .story-text p { font-size: 0.95rem; line-height: 1.6; word-wrap: break-word; overflow-wrap: break-word; }
  .about-story .story-media { margin-top: 2rem; }
  .about-story .story-media .media-back,
  .about-story .story-media .media-front { margin-bottom: 1rem; }
  
  .page-hero { height: 50vh; min-height: 300px; }
  .page-hero .title { font-size: 2.5rem; word-wrap: break-word; overflow-wrap: break-word; }
  .page-hero .hero-copy { padding: 0 16px 60px; }
  
  .facilities-section { padding: 2rem 0; }
  .facilities-title { font-size: 2rem; margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
  .facility-item { margin-bottom: 1.5rem; min-width: 0; }
  .facility-icon { width: 36px; height: 36px; font-size: 1rem; flex: 0 0 36px; }
  .facility-heading { font-size: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
  .facility-item p { font-size: 0.9rem; word-wrap: break-word; overflow-wrap: break-word; }
  
  .about-stats { padding: 1.5rem 0; }
  .about-stats .stats-grid { gap: 1.5rem; }
  .about-stats .stat-item { min-width: 0; }
  .about-stats .stat-label { min-width: 0; }
  .about-stats .stat-label span,
  .about-stats .stat-label strong { word-wrap: break-word; overflow-wrap: break-word; }
}

@media (max-width: 576px) {
  .about-story { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .about-story .story-title { font-size: 1.8rem; word-wrap: break-word; overflow-wrap: break-word; }
  .about-story .eyebrow { font-size: 0.8rem; word-wrap: break-word; overflow-wrap: break-word; }
  .about-story .story-text p { font-size: 0.9rem; word-wrap: break-word; overflow-wrap: break-word; }
  
  .page-hero { height: 40vh; min-height: 250px; }
  .page-hero .title { font-size: 2rem; word-wrap: break-word; overflow-wrap: break-word; }
  .page-hero .hero-copy { padding: 0 12px 50px; }
  
  .facilities-section { padding: 1.5rem 0; }
  .facilities-title { font-size: 1.8rem; word-wrap: break-word; overflow-wrap: break-word; }
  .facility-item { flex-direction: column; text-align: center; gap: 0.5rem; min-width: 0; }
  .facility-icon { margin: 0 auto; }
  .facility-heading { word-wrap: break-word; overflow-wrap: break-word; }
  .facility-item p { word-wrap: break-word; overflow-wrap: break-word; }
  
  .about-stats { padding: 1rem 0; }
  .about-stats .stats-grid { padding: 1rem 0; gap: 1rem; }
  .about-stats .stat-item { justify-content: center; min-width: 0; }
  .about-stats .stat-number { font-size: 5rem; }
  .about-stats .stat-label { left: 2.5rem; min-width: 0; }
  .about-stats .stat-label span { font-size: 1rem; word-wrap: break-word; overflow-wrap: break-word; }
  .about-stats .stat-label strong { font-size: 1.3rem; word-wrap: break-word; overflow-wrap: break-word; }
}

/* About Stats Section */
/* .about-stats { padding: 2.5rem 0 0.5rem; } */
.about-stats .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 2rem; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 1.5rem 0; }
.about-stats .stat-item { position: relative; display: flex; align-items: center; gap: 1rem; min-width: 0; }
.about-stats .stat-item:not(:last-child)::after { content: ""; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); width: 1px; height: 60%; background: #eae6e1; }
.about-stats .stat-number { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 10rem; line-height: 1; color: rgb(212 175 55 / 34%); letter-spacing: -2px; flex-shrink: 0; }
.about-stats .stat-label { position: absolute; left: 5.5rem; display: flex; flex-direction: column; gap: 0.25rem; color: #111; min-width: 0; }
.about-stats .stat-label span { font-size: 1.5rem; color: #333; word-wrap: break-word; overflow-wrap: break-word; }
.about-stats .stat-label strong { font-size: 2rem; font-weight: 600; word-wrap: break-word; overflow-wrap: break-word; }

@media (max-width: 1200px) {
  .about-stats .stat-number { font-size: 8rem; }
  .about-stats .stat-label { left: 4.5rem; }
}

@media (max-width: 992px) {
  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .about-stats .stat-item:nth-child(2n)::after { display: none; }
}

@media (max-width: 576px) {
  .about-stats .stats-grid { grid-template-columns: 1fr; }
  .about-stats .stat-item::after { display: none; }
  .about-stats .stat-number { font-size: 6.5rem; }
  .about-stats .stat-label { left: 3.25rem; }
  .about-stats .stat-label span { font-size: 1.25rem; }
  .about-stats .stat-label strong { font-size: 1.6rem; }
}

/* Facilities Section */
.facilities-section { padding: 4rem 0; position: relative; }
.facilities-section::before { content: ""; position: absolute; left: 0; top: 18px; width: 70%; height: calc(100% - 36px); background: #f7f5f2; z-index: -1; border-radius: 6px; }
.facilities-title { font-size: 3rem; margin: 0.25rem 0 1.25rem; word-wrap: break-word; overflow-wrap: break-word; }
.facility-item { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.facility-icon { width: 42px; height: 42px; border-radius: 50%; background: #fbf6ed; display: inline-flex; align-items: center; justify-content: center; color: #B27B2A; font-size: 1.25rem; flex: 0 0 42px; }
.facility-heading { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.25rem; word-wrap: break-word; overflow-wrap: break-word; }
.facility-item p { margin: 0; color: #606b75; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
.facilities-media { position: relative; }
.facilities-media img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.12); }

@media (max-width: 992px) {
  .facilities-section .container::before { width: 100%; }
  .facilities-title { font-size: 2.2rem; }
}

/* Removed Tajness/cards, collection and press grids per request */

@media (max-width: 992px) {
  .page-hero { height: 45vh; min-height: 320px; }
  .page-hero .title { font-size: 2.4rem; }
  .page-hero .hero-copy { padding-bottom: 60px; }
}

@keyframes preloaderPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #D4AF37;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
}

body { font-family: 'Inter', sans-serif; line-height: 1.6; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: rgba(26, 26, 26, 0.1); }
::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #B8941F; }

/* Firefox Scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--secondary-color) rgba(26, 26, 26, 0.1); }

.serif-font { font-family: 'Playfair Display', serif; }

/* Hero Slider Styles */
.hero-slider { /* height: 450px; min-height: 450px; */ position: relative; overflow: hidden; }

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    height: 100vh;
}

.swiper-slide::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(3, 10, 0, 0.75) 10%, rgba(0, 0, 0, 0.05) 40%);
    z-index: 1;
}

.slide-content { position: relative; z-index: 2; text-align: center; }
.slide-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.slide-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.2s; }
.slide-button { opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.4s; }
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-button { opacity: 1; transform: translateY(0); }

/* Navigation Buttons */
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.3); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.hero-nav:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--secondary-color); color: var(--secondary-color); }
.hero-nav.prev { left: 30px; }
.hero-nav.next { right: 30px; }

/* Side Menu Styles */
.side-menu { position: fixed; top: 0; height: 100vh; width: 330px; background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); z-index: 3000; transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto; }
.side-menu.right { right: 0; transform: translateX(100%); }
.side-menu.active { transform: translateX(0); }
.side-menu-header { padding: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.side-menu-logo { font-size: 1.5rem; font-weight: 700; color: white; text-decoration: none; }
.side-menu-logo i { color: var(--secondary-color); margin-right: 10px; }
.side-menu-logo img { height: 36px; width: auto; display: inline-block; vertical-align: middle; }
.side-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.side-menu-content { padding: 1rem 2rem; }
.side-menu-section { margin-bottom: 2rem; }
.side-menu-title { color: var(--secondary-color); font-size: 18px; font-weight: 600; margin-bottom: 1rem; }
.side-menu-links a { display: block; color: white; text-decoration: none; padding: 0.5rem 0; transition: color 0.3s ease; border-bottom: 1px solid rgba(255,255,255,0.1); }
.side-menu-links a:hover { color: var(--secondary-color); }
.side-menu-contact { color: white; }
.side-menu-contact p { margin-bottom: 0.5rem; }
.side-menu-contact i { color: var(--secondary-color); margin-right: 10px; width: 20px; }

/* Sidebar social icons */
.side-menu-social { display: flex; gap: 12px; margin-top: 0.5rem; }
.side-menu-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: inline-flex; align-items: center; justify-content: center; color: #ffffff; text-decoration: none; transition: all 0.2s ease; }
.side-menu-social a:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: #111111; }

/* Sidebar CTA */
.side-menu-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--secondary-color); color: #111111; text-decoration: none; padding: 12px 16px; border-radius: 9999px; font-weight: 700; letter-spacing: 0.5px; margin-top: 0.75rem; transition: background 0.2s ease, transform 0.2s ease; }
.side-menu-cta i { font-size: 1rem; }
.side-menu-cta:hover { background: #B8941F; color: #111111; transform: translateY(-1px); }

/* Menu Toggle Buttons */
.menu-toggle { position: fixed; top: 20px; left: 20px; z-index: 1001; background: rgba(51,51,51,0.8); border: none; color: white; padding: 12px 20px; border-radius: 25px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.menu-toggle:hover { background: rgba(51,51,51,0.9); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.menu-toggle i { font-size: 1.1rem; }
.menu-toggle .menu-icon { width: 28px; height: 18px; display: inline-block; }
.menu-toggle .menu-icon rect { fill: #ffffff; }
.menu-toggle.hidden { opacity: 0; pointer-events: none; transform: translateX(-100%); }

/* Book Now Button */
.book-now-btn { position: fixed; top: 20px; right: 20px; z-index: 1001; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; padding: 12px 25px; border-radius: 25px; font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.9rem; }
.book-now-btn:hover { background: white; border-color: white; color: black; transform: translateY(-1px); }
.book-now-btn:hover i { color: black; }
.book-now-btn i { font-size: 1.1rem; }

/* Header Logo */
.header-logo { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1001; font-size: 1.8rem; font-weight: 700; color: white; text-decoration: none; transition: all 0.3s ease; }
.header-logo i { color: var(--secondary-color); margin-right: 10px; }
.header-logo img { height: 40px; width: auto; display: inline-block; vertical-align: middle; }

/* Sticky Header Elements */
body.scrolled .menu-toggle { background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); }
body.scrolled .header-logo { background: transparent; backdrop-filter: none; padding: 0; border-radius: 0; border: none; }
body.scrolled .book-now-btn { background: transparent; border: 1px solid rgba(255,255,255,0.3); }

/* Swiper Pagination - Numbered Style */
.swiper-pagination { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 10; padding-right: 10px; }
.swiper-pagination-bullet { background: transparent; border: none; color: rgba(255,255,255,0.7); font-size: 1.2rem; font-weight: 300; padding: 0; width: auto; height: auto; opacity: 1; position: relative; cursor: pointer; transition: all 0.3s ease; text-align: right; }
.swiper-pagination-bullet::before { content: ''; position: absolute; right: -30px; top: 50%; transform: translateY(-50%); width: 20px; height: 1px; background: rgba(255,255,255,0.3); transition: all 0.3s ease; }
.swiper-pagination-bullet-active { color: white; font-weight: 600; }
.swiper-pagination-bullet-active::before { background: white; width: 30px; }

.logo { font-size: 1.8rem; font-weight: 700; color: white; text-decoration: none; }
.logo i { color: var(--secondary-color); margin-right: 10px; }

/* Booking Page Styles */
.booking-hero {
    background: url('assets/hero-slide4.jpg') center/cover no-repeat;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.booking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 10, 0, 0.75) 10%, rgba(0, 0, 0, 0.05) 40%);
}

.booking-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Booking Page Section */
.booking-page-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.booking-form {
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    /* border-bottom: 2px solid var(--secondary-color); */
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: #7a0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

/* Hotel Info Container */
.hotel-info-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hotel-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hotel-image {
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-image:hover img {
    transform: scale(1.08);
}

.hotel-features {
    padding: 2rem;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #d4af37);
    border-radius: 2px;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.bottom-features {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.bottom-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    flex: 1;
}

.bottom-feature:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.bottom-feature:hover i {
    color: white;
}

.bottom-feature i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.bottom-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

.bottom-feature:hover span {
    color: white;
}

.bottom-feature i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.bottom-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .booking-page-section {
        padding: 60px 0;
    }
    
    .booking-form-container {
        margin-bottom: 30px;
        padding: 30px;
    }
    
    .hotel-info-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .booking-page-section {
        padding: 40px 0;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .hotel-features {
        padding: 1.5rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .features-title::after {
        width: 50px;
        height: 2px;
    }
    
    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .bottom-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .bottom-feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .booking-form-container {
        padding: 20px;
    }
    
    .hotel-features {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}


.btn-primary-custom { background-color: var(--primary-color); border: none; color: white; padding: 12px 30px; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; }
.btn-primary-custom:hover { background-color: #6B0000; color: white; transform: translateY(-2px); }
.btn-outline-custom { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; padding: 12px 30px; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; width: fit-content; }
.btn-outline-custom:hover { background-color: var(--primary-color); color: white; }

.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.comfort-text { display: block; margin-top: 0.5rem; }
.title-decoration { display: flex; align-items: center; gap: 8px; position: absolute; bottom: 50px; right: 50px; z-index: 2; }
.decoration-line { width: 60px; height: 2px; background-color: var(--primary-color); }
.decoration-dot { width: 8px; height: 8px; background-color: var(--primary-color); border-radius: 50%; }
.section-subtitle { color: #666; font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }

/* About section */
.about-section { padding: 3rem 0 3rem; }
.about-star { text-align: center; color: var(--primary-color); font-size: 2rem; margin-bottom: 0.75rem; }
.about-meta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 1.25rem; }
.about-meta .line { width: 140px; height: 2px; background: rgba(43, 2, 2, 0.35); }
.about-meta .dot { width: 10px; height: 10px; background: var(--primary-color); border-radius: 50%; }
.about-meta .label { color: rgba(0, 0, 0, 0.6); font-weight: 600; }
.about-title { text-align: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 3rem; margin-bottom: 1.25rem; }
.about-desc { text-align: center; color: #4b5563; max-width: 1050px; margin: 0 auto; font-size: 1.05rem; }
@media (max-width: 768px) {
    .about-title { font-size: 1.6rem; }
    .about-meta .line { width: 30px; }
}

.star-divider { display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.star-divider::before, .star-divider::after { content: ''; height: 2px; width: 50px; background-color: var(--primary-color); margin: 0 15px; }
.star-divider i { color: var(--primary-color); font-size: 1.2rem; }

.booking-section { padding: 3rem 0; background-image: url('assets/strip.svg'); background-repeat: no-repeat; background-position: center; }
.booking-card { position: relative; background: url('assets/hero-slide1.jpg') center center / cover no-repeat; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); display: grid; grid-template-columns: 1fr; min-height: 340px; }
.booking-card::before { content: ''; position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(to left, rgb(0 0 0 / 0%) 20%, #2B0202 50%, #2B0202 100%); pointer-events: none; }
.booking-left { position: relative; color: #ffffff; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.booking-left>* { position: relative; z-index: 1; }
.booking-subtitle { opacity: 0.85; }
.booking-right { position: relative; display: none; }
.booking-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-booking { border: 1px solid #ffffff; color: #ffffff; background: transparent; padding: 14px 30px; border-radius: 9999px; font-weight: 700; letter-spacing: 0.5px; width: fit-content; transition: all 0.25s ease; }
.btn-booking:hover { background: #ffffff; color: #111111; }
@media (max-width: 991.98px) {
    .booking-section { background-size: 140% auto; background-position: center; }
    .booking-card { grid-template-columns: 1fr; }
    .booking-right { height: 240px; }
}

.room-card { background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); position: relative; }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.room-card img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.3s ease; }
.room-card:hover img { transform: scale(1.02); }
.room-card-body { position: absolute; bottom: -40px; left: 20px; right: 20px; background: white; padding: 1.5rem; border-radius: 8px 8px 0 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); text-align: center; }
.room-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; color: #1a1a1a; line-height: 1.2; text-align: center; }
.room-card-link { color: var(--primary-color); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.3s ease; display: block; }
.room-card-link:hover { color: #6B0000; }

/* Room Card Price and Facilities */
.room-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.room-card-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.9);
    color: #495057;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.facility-tag:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.facility-tag i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.facility-tag:hover i {
    color: white;
}

/* Rooms Swiper Styles */
.rooms-swiper-container { position: relative; }
.roomsSwiper { padding: 20px 0 60px 0; }
.roomsSwiper .swiper-slide { height: auto; display: flex; }
.roomsSwiper .room-card { width: 100%; height: 100%; margin: 0; }
.roomsSwiper .swiper-slide::before { background: none; }
.rooms-swiper-button-next, .rooms-swiper-button-prev { color: var(--primary-color); background: white; width: 50px; height: 50px; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.rooms-swiper-button-next:hover, .rooms-swiper-button-prev:hover { background: var(--primary-color); color: white; transform: scale(1.1); }
.rooms-swiper-button-next::after, .rooms-swiper-button-prev::after { font-size: 18px; font-weight: bold; }
.rooms-swiper-pagination { bottom: 0; }
.rooms-swiper-pagination .swiper-pagination-bullet { background: var(--secondary-color); opacity: 0.5; width: 10px; height: 10px; }
.rooms-swiper-pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--primary-color); }
.room-card-description { color: #666; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.4; }
@media (max-width: 768px) {
    .rooms-swiper-container { padding: 0 10px; }
    .roomsSwiper { padding: 0px 0 50px 0; }
    .rooms-swiper-button-next, .rooms-swiper-button-prev { width: 40px; height: 40px; }
    .rooms-swiper-button-next::after, .rooms-swiper-button-prev::after { font-size: 16px; }
    
    .room-card-price {
        font-size: 1.1rem;
        padding: 0.375rem;
        margin-bottom: 0.5rem;
    }
    
    .room-card-facilities {
        gap: 0.375rem;
        margin-bottom: 0.75rem;
    }
    
    .facility-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
}

.video-section { padding: 4rem 0; }
.video-section .row { align-items: stretch; }
.video-text-content { background-color: #f0f0f0; padding: 3rem; height: 100%; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.video-thumbnail { position: relative; overflow: hidden; cursor: pointer; }
.video-thumbnail img { width: 100%; height: 400px; object-fit: cover; }
@media (min-width: 992px) { .video-text-content { min-height: 400px; } }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background-color: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary-color); cursor: pointer; transition: all 0.3s ease; }
.play-button:hover { background-color: rgba(255,255,255,1); transform: translate(-50%, -50%) scale(1.1); }
.video-container { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.modal-content { border-radius: 12px; overflow: hidden; }
.modal-header { border-bottom: none; padding: 1.5rem 1.5rem 0.5rem; }
.modal-title { font-family: 'Playfair Display', serif; color: var(--primary-color); }

.footer { background-color: var(--dark-color); color: white; padding: 4.5rem 0 1.5rem; }
.footer-logo { font-size: 1.5rem; font-weight: 700; color: white; text-decoration: none; margin-bottom: 1rem; display: inline-block; }
.footer-logo img { width: auto; display: inline-block; vertical-align: middle; }
.footer-heading { font-size: 4rem; line-height: 1; margin-bottom: 2rem; letter-spacing: 0.5px; }
.social-grid { border-left: 1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.15); padding: 0; margin: 0; height: fit-content; }
.social-tile { display: flex; align-items: center; justify-content: center; color: #ffffff; text-decoration: none; padding: 1.5rem 1rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.03em; border-top: 1px solid rgba(255,255,255,0.15); transition: background-color 0.25s ease, color 0.25s ease; text-align: center; margin: 0; line-height: 1; min-height: 60px; box-sizing: border-box; }
.social-tile:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.social-tile:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.social-tile:hover { background-color: rgba(255,255,255,0.06); color: var(--secondary-color); }
.footer-contact { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.25rem; }
.footer-contact-item { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; }
.footer-contact-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: inline-flex; align-items: center; justify-content: center; color: #ffffff; flex: 0 0 48px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1rem; margin-top: 2rem; }

/* Contact page tweaks: make icons visible on light cards */
.contact-section .footer-contact-icon {
    border: 1px solid #e9ecef;
    color: var(--secondary-color);
    background: #fbf6ed;
}
.contact-section .footer-contact-item span:last-child {
    color: #111;
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card { position: relative; display: block; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.06); }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s ease; display: block; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,.0) 20%, rgba(0,0,0,.55) 100%); opacity: 0; transition: opacity .25s ease; }
.gallery-overlay span { font-weight: 700; letter-spacing: .3px; background: rgba(0,0,0,.4); padding: 6px 12px; border-radius: 9999px; }
.gallery-overlay i { font-size: 1.25rem; color: var(--secondary-color); }
.gallery-card:hover .gallery-overlay { opacity: 1; }

@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-card img { height: 220px; } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-card img { height: 220px; } }
.footer-nav { display: flex; flex-wrap: nowrap; justify-content: flex-end; align-items: center; gap: 1rem; }
.footer-nav a { color: white; text-decoration: none; transition: color 0.3s ease; white-space: nowrap; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-nav a:hover { color: var(--secondary-color); }
.gold-line { height: 3px; background-color: var(--secondary-color); width: 100%; margin: 2rem 0; }

/* Site Header containerized layout */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 2000; padding: 20px 0; transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease; will-change: background, padding, backdrop-filter, border-color; }
.header-container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
.site-header .menu-toggle, .site-header .book-now-btn, .site-header .header-logo { position: static; top: auto; right: auto; left: auto; transform: none; }
.site-header .menu-toggle, .site-header .book-now-btn { width: auto; }
.header-container .book-now-btn { justify-self: end; }
.header-container .menu-toggle { justify-self: start; }
.header-container .header-logo { justify-self: center; }
body.scrolled .site-header { background: rgba(26,26,26,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); }
body.scrolled .site-header { padding: 10px 0; }
.site-header .menu-toggle, .site-header .book-now-btn, .site-header .header-logo img { transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.site-header .book-now-btn, body.scrolled .site-header .book-now-btn { background: #ffffff; color: #111111; border: 1px solid transparent; border-radius: 9999px; backdrop-filter: none; box-sizing: border-box; }
.site-header .book-now-btn i { color: inherit; }
.site-header .book-now-btn:hover, body.scrolled .site-header .book-now-btn:hover { background: transparent; color: #ffffff; border: 1px solid #ffffff; }
.site-header .book-now-btn:hover i { color: #ffffff; }

@media (max-width: 768px) {
    .footer-heading { font-size: 2.6rem; }
    .section-title { font-size: 1.6rem; }
    .footer-nav { text-align: center !important; }
    .footer-nav a { margin: 0 0.5rem; font-size: 0.85rem; }
    .hero-slider { height: 450px; min-height: 450px; }
    .hero-slider .swiper, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide { height: 450px !important; }
    .slide-title { font-size: 2.5rem; }
    .hero-nav { width: 40px; height: 40px; }
    .hero-nav.prev { left: 15px; }
    .hero-nav.next { right: 15px; }
    .site-header { padding: 12px 0; }
    .header-container { grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; }
    .menu-toggle { padding: 8px 10px; font-size: 0.8rem; left: 15px; gap: 0; border-radius: 16px; }
    .menu-toggle .menu-icon { width: 22px; height: 14px; }
    .menu-toggle span { display: none; }
    .header-logo img { height: 25px; }
    .book-now-btn { right: 15px; padding: 0px 12px; width: 44px; height: 35px; border-radius: 50%; overflow: hidden; white-space: nowrap; display: flex; align-items: center; justify-content: center; font-size: 12px; }
    .book-now-btn i { font-size: 1rem; display: none; }
    .swiper-pagination { right: 0; gap: 12px; padding-right: 8px; }
    .swiper-pagination-bullet { font-size: 0.9rem; }
    .side-menu { width: 330px; }
    .footer-nav { text-align: center; margin-top: 1rem; }
    .footer-nav a { margin: 0 0.5rem; }
    /* Mobile-specific section spacings */
    .about-section { padding: 2rem 0 2rem; }
    .booking-section { padding: 1rem 0; }
    .title-decoration { display: none; }
    .video-section { padding: 2rem 0; }
    .about-star { display: none; }
    .footer { padding: 2.5rem 0 1.5rem; }
    .social-grid { margin-bottom: 40px; }
    .footer-nav { flex-wrap: wrap; justify-content: start; }
}

/* Rooms Page */
.room-page-card { 
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 8px 25px rgba(0,0,0,0.05); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.room-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #d4af37, var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.room-page-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 15px 35px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.room-page-image { 
    position: relative; 
    overflow: hidden; 
    flex-shrink: 0; 
}

.room-page-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    pointer-events: none;
}

.room-page-image img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

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

.room-page-content { 
    padding: 2.5rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    position: relative;
}

.room-page-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    font-weight: 700; 
    color: var(--dark-color); 
    margin-bottom: 2rem; 
    text-align: center;
    position: relative;
}

.room-page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #d4af37);
    border-radius: 2px;
}

.room-description { 
    color: #6c757d; 
    font-size: 0.95rem; 
    line-height: 1.5; 
    margin-bottom: 1.5rem; 
}

.room-details { 
    margin-bottom: 2rem; 
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.room-detail-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 1rem; 
    padding: 1rem; 
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 12px; 
    border-left: 4px solid var(--secondary-color); 
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.room-detail-item:last-child {
    margin-bottom: 0;
}

.room-detail-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.room-detail-item i { 
    color: var(--secondary-color); 
    font-size: 1.2rem; 
    flex-shrink: 0; 
    background: rgba(212, 175, 55, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-detail-item span { 
    color: #495057; 
    font-size: 1rem; 
    line-height: 1.4; 
}

.room-detail-item strong { 
    color: #212529; 
    font-weight: 600; 
}

/* Special highlighting for pricing */
.room-detail-item.price-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.room-detail-item.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    opacity: 0.8;
}

.room-detail-item.price-highlight i {
    background: linear-gradient(135deg, var(--secondary-color), #d4af37);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.room-detail-item.price-highlight span {
    color: #212529;
    font-weight: 500;
}

.room-detail-item.price-highlight strong {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.room-amenities { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; flex-grow: 1; }
.amenity-item { display: flex; align-items: center; gap: 6px; background: #f8f9fa; padding: 8px 12px; border-radius: 20px; font-size: 0.9rem; color: #495057; }
.amenity-item i { color: var(--secondary-color); font-size: 1rem; }

@media (max-width: 768px) {
    .room-page-card {
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    
    .room-page-content { 
        padding: 1.75rem; 
    }
    
    .room-page-title { 
        font-size: 1.6rem; 
        margin-bottom: 1.5rem;
    }
    
    .room-page-title::after {
        width: 60px;
        height: 2px;
    }
    
    .room-details { 
        margin-bottom: 1.5rem; 
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .room-detail-item { 
        padding: 0.875rem; 
        margin-bottom: 0.75rem; 
        gap: 12px;
    }
    
    .room-detail-item i { 
        font-size: 1rem; 
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .room-detail-item span { 
        font-size: 0.9rem; 
    }
    
    .room-detail-item.price-highlight::before {
        border-width: 0 25px 25px 0;
    }
    
    .room-amenities { 
        gap: 8px; 
        margin-bottom: 1.5rem;
    }
    
    .amenity-item { 
        font-size: 0.8rem; 
        padding: 6px 10px; 
    }
    
    .room-page-image img {
        height: 250px;
    }
}

/* Notes Section Styles */
.notes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.notes-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.notes-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    padding: 1.5rem 2rem;
    text-align: center;
}

.notes-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notes-content {
    padding: 2rem;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notes-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.notes-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.notes-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.notes-item span {
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.notes-item strong {
    color: #212529;
    font-weight: 600;
}

/* Mobile Responsive Styles for Notes Section */
@media (max-width: 768px) {
    .notes-container {
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .notes-header {
        padding: 1.25rem 1.5rem;
    }
    
    .notes-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .notes-content {
        padding: 1.5rem;
    }
    
    .notes-list {
        gap: 0.75rem;
    }
    
    .notes-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .notes-item i {
        font-size: 1.1rem;
    }
    
    .notes-item span {
        font-size: 0.95rem;
    }
}

