        :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;
            --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%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(212, 175, 55, 0.3);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--warm-white);
            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: 10px;
        }

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

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

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-light);
        }

        /* ========== 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 ========== */
        .hero-wrapper {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(13, 27, 42, 0.7) 0%,
                rgba(13, 27, 42, 0.5) 50%,
                rgba(13, 27, 42, 0.8) 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 */
        .floating-decor {
            position: absolute;
            z-index: 3;
            opacity: 0.15;
        }

        .decor-1 {
            top: 10%;
            left: 5%;
            width: 150px;
            height: 150px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            animation: floatRotate 20s infinite ease-in-out;
        }

        .decor-2 {
            bottom: 15%;
            right: 8%;
            width: 100px;
            height: 100px;
            border: 2px solid var(--gold);
            animation: floatRotate 15s infinite ease-in-out reverse;
        }

        .decor-3 {
            top: 20%;
            right: 15%;
            width: 80px;
            height: 80px;
            background: var(--gold);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            animation: floatSpin 25s infinite linear;
        }

        @keyframes floatRotate {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(5deg); }
            50% { transform: translateY(-40px) rotate(0deg); }
            75% { transform: translateY(-20px) rotate(-5deg); }
        }

        @keyframes floatSpin {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

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

        .hero-crown {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
            to { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.4); }
        }

        .hero-title {
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 700;
            letter-spacing: 15px;
            margin-bottom: 1rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            animation: titleReveal 1.5s ease forwards;
        }

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

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

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

        .hero-divider {
            width: 200px;
            height: 2px;
            background: var(--gold-gradient);
            margin: 2rem auto;
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

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

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

        .btn-hero {
            padding: 1.2rem 3rem;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

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

        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-hero-primary:hover::before {
            left: 100%;
        }

        .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);
        }

        .btn-hero-tertiary {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

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

        .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: 1rem;
            animation: bounce 2s infinite;
        }

        .hero-scroll i {
            font-size: 1.5rem;
        }

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

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

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

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

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            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: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            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: 100px;
            height: 3px;
            background: var(--gold-gradient);
            margin: 1.5rem auto;
            position: relative;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .section-divider::before { left: -15px; }
        .section-divider::after { right: -15px; }

        .section-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: inherit;
            opacity: 0.85;
            line-height: 1.8;
        }

        /* ========== FEATURED DISHES SECTION ========== */
        .dishes-section {
            background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
        }

        .dish-card {
            background: white;
            border-radius: 20px;
            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;
            height: 100%;
        }

        .dish-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid transparent;
            border-radius: 20px;
            transition: border-color 0.4s ease;
            pointer-events: none;
            z-index: 10;
        }

        .dish-card:hover::before {
            border-color: var(--gold);
        }

        .dish-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
        }

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

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

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

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

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

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

        .dish-chef-special {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-blue);
            font-size: 1.2rem;
            animation: starPulse 2s infinite;
            z-index: 5;
        }

        @keyframes starPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3); }
            50% { transform: scale(1.1); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5); }
        }

        .dish-content {
            padding: 2rem;
        }

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

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

        .dish-description {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .dish-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dish-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-dark);
        }

        .dish-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .btn-order-dish {
            background: var(--blue-gradient);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .btn-order-dish:hover {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            transform: scale(1.05);
        }

        .btn-view-menu {
            background: transparent;
            border: 2px solid var(--deep-blue);
            color: var(--deep-blue);
            padding: 1rem 3rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

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

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

        .ambience-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;
        }

        .ambience-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 1.5rem;
        }

        .ambience-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
        }

        .ambience-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

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

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

        .ambience-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .ambience-overlay h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .ambience-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
        }

        .ambience-content {
            padding-left: 3rem;
        }

        .ambience-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .ambience-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .ambience-features li i {
            color: var(--gold);
            font-size: 1.3rem;
            width: 30px;
        }

        /* ========== ROOMS SECTION ========== */
        .rooms-section {
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
        }

        .room-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            height: 100%;
        }

        .room-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 80px rgba(26, 54, 93, 0.15);
        }

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

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

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

        .room-type-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            padding: 0.6rem 1.5rem;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
        }

        .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: 1rem 1.5rem;
            border-radius: 15px;
            text-align: center;
        }

        .room-price-tag .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
        }

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

        .room-content {
            padding: 2rem;
        }

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

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

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

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

        .amenity-item i {
            color: var(--gold-dark);
        }

        .btn-book-room {
            width: 100%;
            background: var(--blue-gradient);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }

        .btn-book-room:hover {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* ========== BANQUET SECTION ========== */
        .banquet-section {
            background: var(--luxury-gradient);
            position: relative;
        }

        .venue-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            height: 100%;
        }

        .venue-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .venue-image-wrapper {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

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

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

        .venue-capacity {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .venue-content {
            padding: 2rem;
            color: white;
        }

        .venue-type {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .venue-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .venue-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .venue-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-explore-venue {
            width: 100%;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 0.9rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        /* ========== BOOKING WIDGET ========== */
        .booking-widget-section {
            background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
            padding: 6rem 0;
        }

        .booking-widget {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .booking-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gold-gradient);
        }

        .booking-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 1rem;
        }

        .booking-tab {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            font-weight: 600;
            font-size: 1rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .booking-tab i {
            font-size: 1.2rem;
        }

        .booking-tab.active {
            background: var(--blue-gradient);
            color: white;
        }

        .booking-tab:hover:not(.active) {
            background: #f5f5f5;
            color: var(--deep-blue);
        }

        .booking-form {
            display: none;
        }

        .booking-form.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

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

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

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

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

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

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

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

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
        }

        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
            height: 100%;
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 8rem;
            font-family: Georgia, serif;
            color: var(--gold);
            opacity: 0.1;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }

        .testimonial-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-rating i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--gold);
        }

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

        .author-info h5 {
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.25rem;
        }

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

        .review-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid #eee;
        }

        .review-badge {
            text-align: center;
        }

        .review-badge img {
            height: 50px;
            margin-bottom: 0.75rem;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .review-badge:hover img {
            opacity: 1;
        }

        .review-badge p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        .review-badge .score {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-dark);
        }

        /* ========== GALLERY SECTION ========== */
        .gallery-section {
            background: var(--luxury-gradient);
            padding: 6rem 0;
            overflow: hidden;
        }

        .gallery-strip {
            display: flex;
            gap: 1.5rem;
            animation: scroll 30s linear infinite;
        }

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

        .gallery-item {
            flex-shrink: 0;
            width: 350px;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

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

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 27, 42, 0.6);
            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(--gold);
            font-size: 2.5rem;
        }

        .btn-view-gallery {
            display: inline-block;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 1rem 3rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            text-decoration: none;
            margin-top: 3rem;
        }

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

        /* ========== LOCATION SECTION ========== */
        .location-section {
            background: var(--cream);
        }

        .location-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
        }

        .location-map {
            height: 500px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info {
            background: var(--deep-blue);
            color: white;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--gold);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h5 {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: white;
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--gold-light);
        }

        /* ========== OFFERS SECTION UPDATED ========== */
        .offers-section {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-blue) 100%);
            padding: 5rem 0;
            overflow: hidden;
        }

        /* Ensure Swiper allows cards to stretch to the same height */
        .offersSwiper .swiper-wrapper {
            display: flex;
            align-items: stretch; /* This is key for equal heights */
            padding-top: 2rem; /* Adds space for badges */
        }

        .offersSwiper .swiper-slide {
            height: auto; /* Allows flex stretch to work */
            display: flex;
        }

        .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;
            
            /* Flexbox for internal alignment */
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: 500px; /* Sets a base fixed size */
        }

        .offer-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--gold);
            transform: translateY(-10px); /* Changed from scale for a cleaner look */
        }

        .offer-badge {
            align-self: center; /* Keeps badge centered */
            background: var(--gold-gradient);
            color: var(--deep-blue);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            flex-shrink: 0;
        }

        .offer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            min-height: 3.6rem; /* Ensures titles take up same space (approx 2 lines) */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offer-description {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
            flex-grow: 1; /* Pushes the discount and button to the bottom */
        }

        .offer-discount {
            font-size: 2.5rem; /* Slightly smaller for better fit */
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .btn-claim-offer {
            margin-top: auto; /* Final insurance to keep button at bottom */
            background: white;
            color: var(--deep-blue);
            padding: 0.9rem 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);
        }
        
        /* ========== FOOTER ========== */
        footer {
            background: var(--deep-blue);
            color: white;
            position: relative;
        }

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

        .footer-main {
            padding: 5rem 0 3rem;
        }

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

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

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

        .social-icon {
            width: 50px;
            height: 50px;
            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.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

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

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

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

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

        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 0.95rem;
        }

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

        .newsletter-input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .btn-subscribe {
            padding: 1rem 1.5rem;
            background: var(--gold-gradient);
            border: none;
            border-radius: 50px;
            color: var(--deep-blue);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

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

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

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }

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

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

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

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .ambience-gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .ambience-item:first-child {
                grid-column: span 2;
            }

            .ambience-content {
                padding-left: 0;
                padding-top: 3rem;
            }

            .location-wrapper {
                grid-template-columns: 1fr;
            }

            .location-map {
                height: 350px;
            }
        }

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

            .btn-hero {
                width: 100%;
            }

            .ambience-gallery {
                grid-template-columns: 1fr;
            }

            .ambience-item:first-child {
                grid-column: span 1;
            }

            .booking-tabs {
                flex-direction: column;
            }

            .review-badges {
                flex-direction: column;
                gap: 2rem;
            }

            .section {
                padding: 5rem 0;
            }
        }

        /* Swiper Custom */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--gold);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 35px;
            border-radius: 6px;
            background: var(--gold-gradient);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--gold) !important;
            background: rgba(255, 255, 255, 0.1);
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }

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