 :root {
            --royal-blue: #1a365d;
            --deep-blue: #0d1b2a;
            --navy-blue: #1b3a5f;
            --light-blue: #2c5282;
            --gold: #d4af37;
            --gold-light: #f4d03f;
            --gold-dark: #b8860b;
            --cream: #faf8f5;
            --ivory: #fffff0;
            --warm-white: #fefdfb;
            --charcoal: #2d2d2d;
            --success-green: #22c55e;
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
            --blue-gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            --luxury-gradient: linear-gradient(135deg, #0d1b2a 0%, #1a365d 50%, #0d1b2a 100%);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        .elegant-text {
            font-family: 'Cormorant Garamond', serif;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--deep-blue);
        }

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

       /* ========== NAVBAR ========== */
        .navbar {
            background: rgba(13, 27, 42, 0.95) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            padding: 1rem 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(13, 27, 42, 0.98) !important;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold) !important;
            letter-spacing: 3px;
        }

        .navbar-brand span {
            color: white;
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9) !important;
            padding: 0.5rem 1.2rem !important;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .btn-book-nav {
            background: var(--gold-gradient);
            color: var(--deep-blue) !important;
            font-weight: 700;
            padding: 0.7rem 1.8rem !important;
            border-radius: 50px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
            text-decoration: none;
        }

        .btn-book-nav:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
            color: var(--deep-blue) !important;
            text-decoration: none;
        }


        /* ========== HERO SECTION ========== */
        .rooms-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(13, 27, 42, 0.6) 0%,
                rgba(13, 27, 42, 0.4) 50%,
                rgba(13, 27, 42, 0.7) 100%
            );
            z-index: 2;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 3;
            pointer-events: none;
        }

        /* Floating decorative elements */
        .hero-decor {
            position: absolute;
            z-index: 3;
            opacity: 0.1;
        }

        .decor-circle-1 {
            width: 400px;
            height: 400px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: rotate 30s linear infinite;
        }

        .decor-circle-2 {
            width: 300px;
            height: 300px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: rotate 25s linear infinite reverse;
        }

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

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .hero-icon {
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 8px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease 0.3s both;
        }

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

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-divider {
            width: 150px;
            height: 2px;
            background: var(--gold-gradient);
            margin: 2rem auto;
            position: relative;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-divider::before {
            content: '★';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--gold);
            font-size: 1rem;
            background: transparent;
            padding: 0 1rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .btn-hero {
            padding: 1.1rem 2.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 0;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-hero-primary {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: 2px solid var(--gold);
        }

        .btn-hero-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            color: var(--deep-blue);
        }

        .btn-hero-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-hero-secondary:hover {
            background: white;
            color: var(--deep-blue);
            border-color: white;
            transform: translateY(-5px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: var(--gold);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            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); }
        }

        /* ========== QUICK BOOKING BAR ========== */
        .quick-booking-bar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: -80px;
            position: relative;
            z-index: 20;
        }

        .quick-booking-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold-gradient);
            border-radius: 20px 20px 0 0;
        }

        .booking-input-group {
            position: relative;
        }

        .booking-input-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--royal-blue);
            margin-bottom: 0.5rem;
            display: block;
        }

        .booking-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .booking-input:focus {
            border-color: var(--gold);
            background: white;
            outline: none;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
        }

        .booking-input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 1rem;
        }

        .guest-selector {
            position: relative;
        }

        .guest-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 100;
            display: none;
        }

        .guest-dropdown.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .guest-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
        }

        .guest-row:last-child {
            border-bottom: none;
        }

        .guest-info h6 {
            margin: 0;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--deep-blue);
        }

        .guest-info p {
            margin: 0;
            font-size: 0.75rem;
            color: #888;
        }

        .guest-counter {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .guest-counter button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--deep-blue);
            background: white;
            color: var(--deep-blue);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .guest-counter button:hover {
            background: var(--deep-blue);
            color: white;
        }

        .guest-counter span {
            font-weight: 700;
            min-width: 25px;
            text-align: center;
        }

        .btn-check-availability {
            width: 100%;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: none;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-check-availability:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 7rem 0;
            position: relative;
        }

        .section-dark {
            background: var(--luxury-gradient);
            color: white;
        }

        .section-cream {
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
            display: block;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: var(--gold);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-title-dark {
            color: var(--deep-blue);
        }

        .section-title-light {
            color: white;
        }

        .section-title-gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 1rem auto;
        }

        .section-description {
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.8;
        }

        /* ========== ROOM CARDS ========== */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .room-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }

        .room-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 25px;
            padding: 3px;
            background: var(--gold-gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .room-card:hover::before {
            opacity: 1;
        }

        .room-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

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

        .room-swiper {
            width: 100%;
            height: 100%;
        }

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

        .room-card:hover .swiper-slide-active img {
            transform: scale(1.1);
        }

        .room-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: white;
            opacity: 0.5;
        }

        .room-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--gold);
        }

        .room-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
        }

        .badge-bestseller {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .badge-luxury {
            background: var(--gold-gradient);
            color: var(--deep-blue);
        }

        .badge-popular {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
        }

        .room-price-tag {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            background: rgba(13, 27, 42, 0.9);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 15px;
            z-index: 5;
        }

        .room-price-tag .from {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .room-price-tag .price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
        }

        .room-price-tag .per-night {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .room-content {
            padding: 2rem;
        }

        .room-category {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold-dark);
            margin-bottom: 0.5rem;
        }

        .room-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.75rem;
        }

        .room-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .room-rating .stars {
            color: var(--gold);
            font-size: 0.9rem;
        }

        .room-rating .rating-text {
            font-size: 0.85rem;
            color: #666;
        }

        .room-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #e5e5e5;
        }

        .room-spec {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #666;
        }

        .room-spec i {
            color: var(--gold-dark);
            font-size: 1rem;
        }

        .room-amenities-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .amenity-tag {
            background: #f5f5f5;
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .amenity-tag i {
            color: var(--gold-dark);
            font-size: 0.7rem;
        }

        .room-actions {
            display: flex;
            gap: 1rem;
        }

        .btn-view-room {
            flex: 1;
            background: white;
            border: 2px solid var(--deep-blue);
            color: var(--deep-blue);
            padding: 0.9rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-view-room:hover {
            background: var(--deep-blue);
            color: white;
        }

        .btn-book-room {
            flex: 1;
            background: var(--gold-gradient);
            border: none;
            color: var(--deep-blue);
            padding: 0.9rem 1.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-book-room:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* ========== ROOM DETAIL MODAL ========== */
        .modal-backdrop-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .modal-backdrop-custom.show {
            opacity: 1;
            visibility: visible;
        }

        .room-detail-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 95%;
            max-width: 1100px;
            max-height: 90vh;
            background: white;
            border-radius: 25px;
            z-index: 1051;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .room-detail-modal.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            color: var(--deep-blue);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close-btn:hover {
            background: var(--gold);
            color: var(--deep-blue);
            transform: rotate(90deg);
        }

        .modal-body-scroll {
            overflow-y: auto;
            max-height: 90vh;
        }

        .room-gallery-section {
            position: relative;
            height: 400px;
        }

        .room-gallery-swiper {
            width: 100%;
            height: 100%;
        }

        .room-gallery-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumbs-wrapper {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .gallery-thumbs {
            display: flex;
            gap: 0.5rem;
        }

        .gallery-thumb {
            width: 70px;
            height: 50px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .gallery-thumb.active {
            opacity: 1;
            border-color: var(--gold);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .room-detail-content {
            padding: 2.5rem;
        }

        .room-detail-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .room-detail-info h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .room-detail-info .room-type {
            color: var(--gold-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
        }

        .room-detail-price {
            text-align: right;
        }

        .room-detail-price .price-label {
            font-size: 0.8rem;
            color: #888;
        }

        .room-detail-price .price-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold-dark);
        }

        .room-detail-price .price-period {
            font-size: 0.9rem;
            color: #666;
        }

        .room-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .room-detail-section {
            margin-bottom: 2rem;
        }

        .room-detail-section-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .room-detail-section-title i {
            color: var(--gold);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: #f9f9f9;
            border-radius: 10px;
            font-size: 0.9rem;
            color: #555;
        }

        .amenity-item i {
            color: var(--gold-dark);
            font-size: 1rem;
            width: 20px;
        }

        .policies-list {
            list-style: none;
            padding: 0;
        }

        .policies-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
            color: #555;
        }

        .policies-list li:last-child {
            border-bottom: none;
        }

        .policies-list li i {
            color: var(--gold-dark);
            margin-top: 0.25rem;
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .review-item {
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 15px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-info h6 {
            margin: 0;
            font-weight: 700;
            color: var(--deep-blue);
        }

        .review-info .review-date {
            font-size: 0.8rem;
            color: #888;
        }

        .review-rating {
            margin-left: auto;
            color: var(--gold);
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555;
            margin: 0;
        }

        .modal-book-footer {
            padding: 1.5rem 2.5rem;
            background: #f5f5f5;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .modal-price-summary {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-price-summary .total-label {
            color: #666;
        }

        .modal-price-summary .total-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold-dark);
        }

        .btn-book-now-large {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: none;
            padding: 1rem 3rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-book-now-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* ========== BOOKING MODAL ========== */
        .booking-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 95%;
            max-width: 700px;
            max-height: 90vh;
            background: white;
            border-radius: 25px;
            z-index: 1052;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
        }

        .booking-modal.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .booking-modal-header {
            background: var(--deep-blue);
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .booking-modal-header h3 {
            margin: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .booking-modal-header h3 i {
            color: var(--gold);
        }

        .booking-modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .booking-modal-close:hover {
            color: var(--gold);
        }

        .booking-modal-body {
            padding: 2rem;
            max-height: 60vh;
            overflow-y: auto;
        }

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

        .booking-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .booking-section-title i {
            color: var(--gold);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

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

        .form-label {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control-custom {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 3px 15px rgba(212, 175, 55, 0.15);
        }

        .price-breakdown {
            background: #f9f9f9;
            border-radius: 15px;
            padding: 1.5rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .price-row .label {
            color: #666;
        }

        .price-row .value {
            font-weight: 600;
            color: var(--deep-blue);
        }

        .price-row.total {
            border-top: 2px dashed #ddd;
            padding-top: 1rem;
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        .price-row.total .label {
            font-weight: 700;
            color: var(--deep-blue);
        }

        .price-row.total .value {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gold-dark);
        }

        .promo-code-wrapper {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .promo-code-wrapper input {
            flex: 1;
        }

        .btn-apply-promo {
            background: var(--deep-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-apply-promo:hover {
            background: var(--gold);
            color: var(--deep-blue);
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .payment-method {
            padding: 1rem 1.25rem;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .payment-method:hover,
        .payment-method.selected {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.05);
        }

        .payment-method i {
            font-size: 1.5rem;
            color: var(--deep-blue);
            width: 30px;
        }

        .payment-method-info h6 {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--deep-blue);
        }

        .payment-method-info p {
            margin: 0;
            font-size: 0.8rem;
            color: #666;
        }

        .payment-method .radio-circle {
            margin-left: auto;
            width: 22px;
            height: 22px;
            border: 2px solid #ddd;
            border-radius: 50%;
            position: relative;
        }

        .payment-method.selected .radio-circle {
            border-color: var(--gold);
        }

        .payment-method.selected .radio-circle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
        }

        .booking-modal-footer {
            padding: 1.5rem 2rem;
            background: #f5f5f5;
            border-top: 1px solid #eee;
        }

        .btn-confirm-booking {
            width: 100%;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: none;
            padding: 1.1rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-confirm-booking:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* ========== CONFIRMATION MODAL ========== */
        .confirmation-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 95%;
            max-width: 500px;
            background: white;
            border-radius: 25px;
            z-index: 1053;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            padding: 3rem 2rem;
        }

        .confirmation-modal.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .confirmation-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .confirmation-icon i {
            font-size: 3rem;
            color: white;
        }

        .confirmation-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .confirmation-message {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .booking-details-box {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .booking-detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .booking-detail-row .label {
            color: #888;
        }

        .booking-detail-row .value {
            font-weight: 600;
            color: var(--deep-blue);
        }

        .booking-detail-row.booking-id .value {
            color: var(--gold-dark);
            font-size: 1.1rem;
            font-weight: 800;
        }

        .btn-done {
            background: var(--deep-blue);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-done:hover {
            background: var(--gold);
            color: var(--deep-blue);
        }

        /* ========== OFFERS SECTION ========== */
        .offers-section {
            background: var(--luxury-gradient);
            position: relative;
            overflow: hidden;
        }

        .offers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        .offer-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            color: white;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .offer-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--gold);
            transform: translateY(-10px);
        }

        .offer-icon {
            width: 80px;
            height: 80px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--deep-blue);
            margin: 0 auto 1.5rem;
        }

        .offer-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .offer-description {
            font-size: 0.95rem;
            opacity: 0.85;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 0;
        }

        .offer-discount {
            margin-top: auto;
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .btn-claim-offer {
            display: inline-block;
            background: white;
            color: var(--deep-blue);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-claim-offer:hover {
            background: var(--gold);
            color: var(--deep-blue);
            transform: translateY(-3px);
        }

        /* ========== SERVICES SECTION ========== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
        }

        .service-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--deep-blue);
            margin: 0 auto 1.25rem;
        }

        .service-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--deep-blue);
            color: white;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold-gradient);
        }

        .footer-main {
            padding: 4rem 0 2rem;
        }

        .footer-brand h2 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--deep-blue);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        .footer-links li {
            margin-bottom: 0.6rem;
        }

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

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            font-size: 0.85rem;
        }

        /* ========== WHATSAPP FLOAT ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .rooms-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            .room-detail-modal {
                max-width: 95%;
            }

            .room-gallery-section {
                height: 300px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .hero-buttons {
                flex-direction: column;
            }

            .btn-hero {
                width: 100%;
                justify-content: center;
            }

            .quick-booking-bar {
                margin-top: -50px;
            }

            .rooms-grid {
                grid-template-columns: 1fr;
            }

            .room-gallery-section {
                height: 250px;
            }

            .room-detail-header {
                flex-direction: column;
            }

            .room-detail-price {
                text-align: left;
            }

            .modal-book-footer {
                flex-direction: column;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Swiper Custom Styles */
        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            background: rgba(0, 0, 0, 0.3);
            width: 45px !important;
            height: 45px !important;
            border-radius: 50%;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1rem !important;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--gold);
            color: var(--deep-blue) !important;
        }