: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;
            background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.6) 100%);
        }

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

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

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

        .hero-title {
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 800;
            letter-spacing: 10px;
            margin-bottom: 1rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            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.9);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

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

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s 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;
            border: none;
        }

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

        .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: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-hero-secondary:hover {
            background: white;
            color: var(--deep-blue);
            border-color: white;
            transform: 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;
        }

        /* ========== VENUE CARDS ========== */
        .venue-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%;
            position: relative;
        }

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

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

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

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

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

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

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

        .venue-price-tag .per-day {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .venue-content {
            padding: 2rem;
        }

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

        .venue-capacity {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .capacity-item {
            background: var(--cream);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

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

        .venue-feature {
            background: var(--cream);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #666;
        }

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

        .btn-explore-venue {
            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-explore-venue:hover {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* ========== 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-form .row {
            margin-bottom: 1.5rem;
        }

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

        /* ========== MODAL VENUE DETAILS ========== */
        .venue-modal .modal-content {
            border: none;
            border-radius: 25px;
            overflow: hidden;
        }

        .venue-modal .modal-header {
            background: var(--luxury-gradient);
            color: white;
            border: none;
            padding: 2rem;
        }

        .venue-modal .modal-title {
            font-size: 2rem;
            color: var(--gold);
        }

        .venue-modal .btn-close {
            filter: invert(1);
        }

        .venue-modal .modal-body {
            padding: 0;
        }

        .venue-gallery {
            height: 400px;
        }

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

        .venue-info-tabs {
            padding: 2rem;
        }

        .nav-tabs {
            border-bottom: 2px solid #eee;
            margin-bottom: 2rem;
        }

        .nav-tabs .nav-link {
            border: none;
            color: #666;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 0;
            position: relative;
        }

        .nav-tabs .nav-link.active {
            background: transparent;
            color: var(--gold-dark);
            border: none;
        }

        .nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
        }

        .tab-content h5 {
            color: var(--deep-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .seating-layout {
            background: var(--cream);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .seating-layout i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .seating-layout h6 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

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

        .amenity-card {
            background: var(--cream);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
        }

        .amenity-card i {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .amenity-card h6 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

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

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

        .packagesSwiper .swiper-wrapper {
            margin-top: 2rem;
            display: flex !important;
            align-items: stretch !important;
        }

        /* 2. THE SLIDE: Must be flex so the card knows to grow */
        .packagesSwiper .swiper-slide {
            height: auto !important; 
            display: flex !important; /* THIS is the missing link */
        }

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

        .package-card {
            background: rgba(255, 255, 255, 0.05);
            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;
        }

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

        .package-badge {
            display: inline-block;
            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;
        }

        .package-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .package-description {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .package-price span {
            font-size: 1rem;
            opacity: 0.8;
            font-weight: 400;
        }

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

        .package-features li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            justify-content: center;
        }

        .package-features li i {
            color: var(--gold);
        }

        .btn-book-package {
            display: inline-block;
            background: white;
            color: var(--deep-blue);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: auto;
        }

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

        /* ========== TESTIMONIALS SWIPER ========== */
        .testimonialsSwiper {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
            overflow: visible !important;
        }

        .testimonialsSwiper .swiper-wrapper {
            display: flex !important;
            align-items: stretch !important;
        }

        .testimonialsSwiper .swiper-slide {
            height: auto !important;
            display: flex !important;
        }

        /* ========== 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);
            position: relative;
            transition: all 0.4s ease;
            
            /* ADDED FLEX PROPERTIES */
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100% !important; /* Stretches card to fill the flex slide */
        }

        .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;
            
            /* ADDED FLEX GROW */
            flex-grow: 1; /* This absorbs the empty space so short quotes don't break layout */
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            
            /* ADDED MARGIN TOP AUTO */
            margin-top: auto; /* Anchors the author block to the bottom of the card */
        }

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

        /* ========== FEATURES SECTION ========== */
        .features-section {
            background: var(--luxury-gradient);
            color: white;
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%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");
            pointer-events: none;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }

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

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

        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .feature-card p {
            opacity: 0.9;
            line-height: 1.7;
            margin: 0;
        }

        /* ========== 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-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) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-hero {
                width: 100%;
                max-width: 300px;
            }

            .venue-capacity {
                flex-direction: column;
                gap: 0.5rem;
            }

            .capacity-item {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            .section {
                padding: 5rem 0;
            }

            .booking-widget {
                padding: 2rem;
            }

            .venue-modal .modal-header {
                padding: 1.5rem;
            }

            .venue-modal .modal-title {
                font-size: 1.5rem;
            }
        }

        /* 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;
        }