  
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Prevent horizontal overflow on small screens and ensure media scale */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Make images and videos responsive */
        /* img, picture, video {
            max-width: 100%;
            height: auto;
            display: block;
        } */

        :root {
            --primary-red: #8B0000;
            --accent-red: #C41E3A;
            --light-red: #DC143C;
            --dark-grey: #1a1a1a;
            --medium-grey: #2d2d2d;
            --light-grey: #f5f5f5;
            --pure-white: #ffffff;
            --off-white: #fafafa;
              --gold: #DC143C; /* accent red */
        }




          /* Loader */
        #loader {
            position: fixed;
            inset: 0;
            background: #000;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.8s ease-out;
        }
        
        .loader-line {
            width: 0%;
            height: 2px;
            background: var(--accent-red);
            transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Loader heading to match hotel2 look */
        .loader-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.25rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            margin-bottom: 1rem;
            color: var(--accent-red);
            text-align: center;
        }



        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--off-white);
            color: var(--dark-grey);
            overflow-x: hidden;
        }






        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.4s ease;
            /* background: rgba(0,0,0,0.05);  */
            background: rgba(170, 53, 53, 0.05); 

        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 50px;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: var(--pure-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .navbar.scrolled .logo {
            color: var(--dark-grey);
        }

        .logo span {
            color: var(--accent-red);
            /* color: var(--off-white); */
            font-weight: 600;

        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--pure-white);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar.scrolled .nav-links a {
            color: var(--dark-grey);
        }

        .nav-links a::after,
        .nav-links-mobile a::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 2px;
            /* background: currentColor;  */
            background: var(--accent-red); /* match the link's color without recoloring text */
            border-radius: 3px;
            transition: width 220ms cubic-bezier(.2,.9,.2,1);
        }

        .nav-links a:hover::after,
        .nav-links-mobile a:hover::after {
            width: 100%;
        }

        /* Active link: show underline but do not change text color */
        .nav-links a.active::after,
        .nav-links-mobile a.active::after {
            width: 100%;
        }

        /* .nav-links a:hover {
            color: var(--accent-red);
        } */

        .nav-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-btn {
            background: transparent;
            border: 1px solid var(--pure-white);
            color: var(--pure-white);
            padding: 10px 25px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .navbar.scrolled .nav-btn {
            border-color: var(--dark-grey);
            color: var(--dark-grey);
        }

        .nav-btn:hover {
            background: var(--accent-red);
            border-color: var(--accent-red);
            color: var(--pure-white);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--pure-white);
        }

        .navbar.scrolled .mobile-menu {
            color: var(--dark-grey);
        }

/* Mobile navigation panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 82%;
    max-width: 360px;
    background: rgba(255,255,255,0.98);
    transform: translateX(100%);
    transition: transform 320ms ease;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
}

/* Notification emails chips */
.email-list { display: flex; gap: 8px; flex-wrap: wrap; }
.email-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.03);
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
    color: var(--dark-grey);
}
.email-chip .remove-email-btn {
    background: transparent;
    border: none;
    color: var(--accent-red);
    font-weight: 600;
    cursor: pointer;
    padding: 0 4px;
}

@media (max-width: 900px) {
    .email-chip { font-size: 0.85rem; padding: 6px 8px; }
}

.mobile-nav.open { transform: translateX(0); box-shadow: -20px 0 40px rgba(0,0,0,0.12); }
.mobile-nav-inner { width:100%; padding: 84px 22px 22px 22px; }
.mobile-close { position:absolute; top:18px; right:18px; background:none; border:0; font-size:32px; cursor:pointer; }
.nav-links-mobile { list-style:none; display:flex; flex-direction:column; gap:18px; padding:0; margin:0 0 18px 0; }
.nav-links-mobile a { color: var(--dark-grey); text-decoration:none; font-size:1rem; letter-spacing:1px; text-transform:uppercase; font-weight:500; padding:10px 4px; display:block; position:relative; }
.mobile-cta { margin-top: 12px; background-color: var(--accent-red); color: #fff; }
.mobile-cta .nav-btn { width:100%; padding:12px 18px; font-size:0.95rem }

/* prevent background scroll when mobile nav open */
body.mobile-nav-open { overflow: hidden; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu { display: inline-flex; }
    .nav-actions { gap: 12px; }
    .navbar { padding: 12px 20px; }
    .navbar.scrolled { padding: 10px 20px; }
    .logo { font-size: 1.6rem; }
    .nav-btn { padding: 8px 14px; font-size: 0.75rem; }
    .hero-title { font-size: 3rem; }
    .booking-widget { left: 50%; transform: translateX(-50%); bottom: 60px; padding: 18px; }
}

@media (max-width: 750px) {
    .mobile-nav { width: 92%; }
    .hero-title { font-size: 2.4rem; }
    .hero-title .hero-country { display: none; }
}

/* Hide desktop 'Book Now' button on very small screens (mobile uses mobile-cta) */
@media (max-width: 430px) {
    #booknow { display: none !important; }

     .navbar {
        
            padding: 0px 0px;
           
        }
}

        /* Hero Section with Video */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            letter-spacing: 3px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 30px;
            line-height: 1.1;
            text-align: center;
            justify-content: center;
        }

        .hero-title span {
            display: block;
            font-size: 1.2rem;
            letter-spacing: 12px;
            margin-top: 20px;
            font-weight: 400;
        }

        .hero-description {
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background-color: transparent;
            color: transparent;
            /* background: var(--accent-red);
            color: var(--pure-white); */
            padding: 18px 40px;
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            /* border: 2px solid var(--accent-red); */
        }

        .hero-cta:hover {
            background: transparent;
            /* color: var(--pure-white); */
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .scroll-indicator i {
            color: var(--pure-white);
            font-size: 2rem;
        }

        /* Booking Widget */
        .booking-widget {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 30px 50px;
            display: flex;
            gap: 30px;
            align-items: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            max-width: 1000px;
            width: 90%;
            animation: slideUp 1s ease 0.5s both;
        }

        /* Keep booking widget on a single row at desktop sizes */
        .booking-widget {
            flex-wrap: nowrap;
        }

        /* Make check-in/check-out span take double the space so each inner field equals the guest field */
        .booking-widget > span {
            display: flex;
            gap: 12px;
            align-items: center;
            flex: 2 1 0; /* span occupies two fraction units */
            min-width: 0;
        }

        .booking-widget > span .booking-field {
            flex: 1 1 0; /* each inner field takes half of the span */
            min-width: 0;
        }

        /* ensure the guest booking-field takes one fraction unit (same size as each inner field) */
        .booking-widget > .booking-field {
            flex: 1 1 0;
            min-width: 0;
        }

        /* keep button size intrinsic and prevent it from stretching */
        .booking-widget .booking-btn {
            flex: 0 0 auto;
            white-space: nowrap;
        }
      
                    /* .checkinOut span {
                        display: flex;
                        gap: 12px;
                        width: 100%;
                    }
                     */

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .booking-field {
            flex: 1;
        }

        .booking-label {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--medium-grey);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .booking-input {
            width: 100%;
            border: none;
            border-bottom: 2px solid #ddd;
            padding: 8px 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--dark-grey);
            background: transparent;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .booking-input:focus {
            border-bottom-color: var(--accent-red);
        }

        .booking-btn {
            /* background: var(--dark-grey); */
                        background: var(--accent-red);

            color: var(--pure-white);
            border: none;
            padding: 15px 40px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            white-space: nowrap;
        }

        .booking-btn:hover {
            /* background: var(--accent-red); */
                        background: var(--dark-grey);

            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
        }

        /* Section Styles */
        section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--accent-red);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: var(--dark-grey);
            margin-bottom: 20px;
        }

        .section-line {
            width: 60px;
            height: 2px;
            background: var(--accent-red);
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--pure-white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            padding-right: 50px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--medium-grey);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .about-signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-style: italic;
            color: var(--accent-red);
            margin-top: 40px;
        }

        /* Stats block styled to match hotel2 look */
        .about-stats {
            display: flex;
            gap: 3rem;
            margin-top: 24px;
            align-items: center;
        }

        .about-stats .stat .value {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.875rem; /* approx text-3xl */
            font-weight: 300;
            color: var(--accent-red);
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }

        .about-stats .stat .label {
            display: block;
            font-size: 0.75rem;
            color: #6b7280; /* gray-500 */
            text-transform: uppercase;
            letter-spacing: 0.18em; /* tracking-widest */
        }

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

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-red);
            z-index: -1;
            transition: all 0.4s ease;
        }

        .about-image:hover::before {
            top: -10px;
            left: -10px;
        }



        /* dining label visible over images */
#dining .card-label,
#dining p[style*="--light-red"],
#dining .text-gold-400 {
  color: #FF4D4F; /* or #FF6B6B / #D4AF37 */
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  display: inline-block;
  background: rgba(0,0,0,0.32);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
}

        /* Rooms Section */
        .rooms {
            background: var(--light-grey);
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .room-card {
            background: var(--pure-white);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .room-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

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

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

        .room-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-red);
            color: var(--pure-white);
            padding: 8px 20px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            /* Make long status/text friendly: allow wrapping and limit width on small screens */
            max-width: 48%;
            white-space: normal;
            word-break: break-word;
            hyphens: auto;
        }

        /* Fallback: ensure very long single-word statuses don't overflow card on extremely narrow viewports */
        @media (max-width: 640px) {
            .room-badge { max-width: 70%; font-size: 0.65rem; padding: 6px 12px; }
        }

        .room-info {
            padding: 40px;
        }

        .room-type {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 10px;
            color: var(--dark-grey);
        }

        .room-price {
            font-size: 1.2rem;
            color: var(--accent-red);
            font-weight: 500;
            margin-bottom: 20px;
        }

        .room-price span {
            font-size: 0.8rem;
            color: var(--medium-grey);
            font-weight: 300;
        }

        .room-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .room-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
            color: var(--medium-grey);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .room-features li:last-child {
            border-bottom: none;
        }

        .room-features i {
            color: var(--accent-red);
            width: 20px;
        }

        .room-btn {
            display: block;
            text-align: center;
            padding: 15px;
            border: 1px solid var(--dark-grey);
            color: var(--dark-grey);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .room-btn:hover {
            background: var(--accent-red);
            border-color: var(--accent-red);
            color: var(--pure-white);
        }

        .rooms-cta {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 24px 0;
        }

        .rooms-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--dark-grey);
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            padding-bottom: 6px;
            transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        .rooms-cta-link i {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .rooms-cta-link:hover {
            color: var(--accent-red);
            border-color: var(--accent-red);
        }

        .rooms-cta-link:hover i {
            transform: translateX(4px);
        }

        /* Amenities Section */
        .amenities {
            background: var(--dark-grey);
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
        }

        .amenities::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(196,30,58,0.03) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .amenities .section-title {
            color: var(--pure-white);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .amenity-item {
            text-align: center;
            padding: 40px 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            background: rgba(255,255,255,0.02);
        }

        .amenity-item:hover {
            border-color: var(--accent-red);
            transform: translateY(-5px);
            background: rgba(196,30,58,0.1);
        }

        .amenity-icon {
            font-size: 3rem;
            color: var(--accent-red);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .amenity-item:hover .amenity-icon {
            transform: scale(1.2);
        }

        .amenity-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .amenity-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            font-weight: 300;
        }

        /* Gallery Section */
        .gallery {
            background: var(--pure-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

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

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .gallery-overlay i {
            color: var(--pure-white);
            font-size: 2rem;
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 10000;
            padding: 30px;
        }

        .gallery-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .gallery-lightbox img {
            max-width: min(1100px, 90vw);
            max-height: 80vh;
            object-fit: contain;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
            border-radius: 8px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .lightbox-close,
        .lightbox-nav {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--pure-white);
            width: 44px;
            height: 44px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .lightbox-close:hover,
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .lightbox-close {
            top: 24px;
            right: 24px;
        }

        .lightbox-prev {
            left: 24px;
        }

        .lightbox-next {
            right: 24px;
        }

        body.lightbox-open {
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .lightbox-caption {
                font-size: 0.75rem;
                letter-spacing: 1.5px;
                text-align: center;
                padding: 0 16px;
            }

            .lightbox-prev,
            .lightbox-next {
                bottom: 24px;
                top: auto;
            }

            .lightbox-prev {
                left: 20px;
            }

            .lightbox-next {
                right: 20px;
            }
        }

        /* Testimonials */
        .testimonials {
            background: var(--light-grey);
            text-align: center;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-item.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.8;
            color: var(--dark-grey);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .testimonial-author {
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-red);
            font-weight: 500;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--accent-red);
            transform: scale(1.3);
        }

        /* Contact Section */
        .contact {
            background: var(--dark-grey);
            color: var(--pure-white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 0;
            max-width: 100%;
        }

        .contact-info {
            padding: 100px 80px;
        }

        .contact-info .section-title {
            color: var(--pure-white);
            text-align: left;
        }

        .contact-info .section-title::after {
            margin: 20px 0;
        }

        .contact-details {
            margin-top: 50px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item i {
            color: var(--accent-red);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .contact-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 5px;
            font-weight: 300;
        }

        .contact-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .contact-form-wrapper {
            background: var(--pure-white);
            padding: 100px 80px;
            color: var(--dark-grey);
        }

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

        .form-group label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: var(--medium-grey);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            border: none;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-bottom-color: var(--accent-red);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: var(--accent-red);
            color: var(--pure-white);
            border: none;
            padding: 18px 50px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: var(--dark-grey);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #111;
            color: var(--pure-white);
            padding: 80px 50px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            color: var(--pure-white);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .footer-links h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 25px;
            font-weight: 300;
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            font-weight: 300;
        }

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

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-red);
            border-color: var(--accent-red);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        /* Chat Widget */
        /* .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-red);
            color: var(--pure-white);
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
        }

        .chat-container {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 450px;
            background: var(--pure-white);
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideUpChat 0.3s ease;
        }

        @keyframes slideUpChat {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-container.active {
            display: flex;
        }

        .chat-header {
            background: var(--dark-grey);
            color: var(--pure-white);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 300;
        }

        .chat-close {
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f9f9f9;
        }

        .chat-message {
            margin-bottom: 15px;
            max-width: 80%;
        }

        .chat-message.rep {
            background: var(--pure-white);
            padding: 12px 15px;
            border-radius: 0 15px 15px 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .chat-message.user {
            background: var(--accent-red);
            color: var(--pure-white);
            padding: 12px 15px;
            border-radius: 15px 0 15px 15px;
            margin-left: auto;
            font-size: 0.9rem;
        }

        .chat-input-area {
            padding: 15px;
            background: var(--pure-white);
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 20px;
            outline: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
        }

        .chat-send {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-red);
            color: var(--pure-white);
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .chat-send:hover {
            background: var(--dark-grey);
        } */

        /* Responsive Design */
        @media (max-width: 1200px) {
            .rooms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            .about-text {
                padding-right: 0;
                order: 2;
            }
            .about-image {
                order: 1;
            }
            .contact {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .booking-widget {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                bottom: 50px;
            }

                    /* At small screens: keep check-in and check-out side-by-side, stack guests and action */
                    .booking-widget {
                        display: flex;
                        flex-wrap: wrap;
                        align-items: stretch;
                    }

                    .booking-widget .booking-field {
                        flex: 1 1 100%;
                        min-width: 100%;
                    }

                    /* first two fields sit side-by-side */
                    .booking-widget > .booking-field:nth-child(1),
                    .booking-widget > .booking-field:nth-child(2) {
                        flex: 1 1 calc(50% - 10px);
                        min-width: 140px;
                    }

                    /* Support markup where first two fields are wrapped in a span */
                    .booking-widget > span {
                        display: flex;
                        gap: 12px;
                        width: 100%;
                    }

                    .booking-widget > span .booking-field {
                        flex: 1 1 calc(50% - 10px);
                        min-width: 140px;
                    }

                    /* When fields are wrapped, the guests field sits after the span */
                    .booking-widget > span + .booking-field {
                        order: 3;
                        flex: 1 1 100%;
                        min-width: 100%;
                    }

                    .booking-widget > button.booking-btn {
                        order: 4;
                        width: 100%;
                        margin-top: 6px;
                        flex: 1 1 100%;
                    }

                    /* guests field and button take full width and stack */
                    .booking-widget > .booking-field:nth-child(3) {
                        order: 3;
                        flex: 1 1 100%;
                        min-width: 100%;
                    }

                    .booking-widget > .booking-btn {
                        order: 4;
                        width: 100%;
                        margin-top: 6px;
                        flex: 1 1 100%;
                    }

                 
            .rooms-grid {
                grid-template-columns: 1fr;
            }
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: 200px;
            }
            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
            }
            section {
                padding: 60px 20px;
            }
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .chat-container {
                width: 300px;
                right: -10px;
            }
        }

        /* Animations on Scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }




                /* Gallery marquee animation and pause-on-hover */
        .animate-marquee {
            display: flex;
            gap: 1.5rem;
            will-change: transform;
            animation: marquee 28s linear infinite;
        }
        .animate-marquee:hover {
            animation-play-state: paused;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
    


        
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-grey);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-red);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-red);
        }



           /* Responsive Design */
        @media (max-width: 460px) {

             .contact-info {
            padding: 50px 40px;
        }

         .contact-form-wrapper {
            padding: 50px 40px;
        }


              /* Footer */
        footer {
            background: #111;
            color: var(--pure-white);
            padding: 40px 30px 20px;
        }
        
        }

        /* Tweak about image for narrow mobile viewports (~460px and below) */
        @media (max-width: 480px) {
            .about-content { gap: 24px; }
            .about-image img {
                height: 320px; /* reduce height for small screens */
                object-position: center 35%; /* focus slightly higher on subject */
            }
            .about-image::before {
                top: -8px;
                left: -8px;
                width: calc(100% + 16px);
                height: calc(100% + 16px);
            }
            .about-image:hover img { transform: none; }
            /* .about-text p { font-size: 1rem; line-height: 1.6; } */
            .about-stats { gap: 1.2rem; }
        }

        /* Extra small phones: tighten further at 360px */
        @media (max-width: 360px) {
            .about-image img { height: 260px; object-position: center 30%; }
            /* .about-text p { font-size: 0.95rem; } */
        }

        