:root {
            --primary-gold: #D4AF37;
            --primary-maroon: #800020;
            --secondary-gold: #FFD700;
            --dark-maroon: #5D001E;
            --cream: #FFF8DC;
            --soft-white: #FEFEFE;
            --deep-maroon: #4A0E1A;
        }

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

        body {
            font-family: 'Crimson Text', serif;
            line-height: 1.6;
            color: #333;
            background: var(--soft-white);
        }

        /* Top Contact Bar */
        .top-bar {
            background: linear-gradient(90deg, var(--dark-maroon), var(--primary-maroon));
            color: var(--cream);
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: var(--cream);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .top-bar a:hover {
            color: var(--primary-gold);
        }

        .social-links a {
            font-size: 1.1rem;
            margin: 0 5px;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, #ffffff, #fafafa) !important;
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(128, 0, 32, 0.15);
            border-bottom: 3px solid var(--primary-gold);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .navbar-brand {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-maroon) !important;
            display: flex;
            align-items: center;
            text-decoration: none !important;
            flex-shrink: 0;
        }

        .navbar-brand img {
            height: 50px;
            margin-right: 10px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1;
        }

        .brand-line1 {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2px;
        }

        .brand-line2 {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.8;
            line-height: 1.1;
        }

        /* Desktop Navigation */
      /* Desktop Navigation - Book Now on Right */
@media (min-width: 992px) {
    .navbar .container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .navbar-brand {
        flex: 0 0 auto;
    }

    .navbar-collapse {
        flex: 1;
        display: flex !important;
        justify-content: center;
        position: relative;
    }

    .navbar-nav {
        margin: 0;
    }

    .navbar-actions {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}


        .nav-link {
            color: var(--primary-maroon) !important;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
            font-size: 1rem;
            position: relative;
            white-space: nowrap;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }

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

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
            left: 0;
        }

        .btn-book {
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
            color: var(--deep-maroon) !important;
            border: none;
            border-radius: 25px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
        }

        .btn-book:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
            color: var(--deep-maroon) !important;
        }

        /* Mobile Navigation */
        @media (max-width: 991px) {
            .navbar .container {
                display: grid;
                grid-template-columns: auto 1fr auto;
                grid-template-rows: auto auto;
                align-items: center;
                gap: 15px;
            }

            .navbar-brand {
                grid-column: 1;
                grid-row: 1;
            }

            .navbar-brand img {
                height: 45px;
                margin-right: 0;
            }

            .navbar-brand .brand-text {
                display: none;
            }

            .mobile-brand-text {
                grid-column: 2;
                grid-row: 1;
                text-align: center;
                font-family: 'Cinzel', serif;
                color: var(--primary-maroon);
            }

            .mobile-brand-line1 {
                font-size: 0.9rem;
                font-weight: 700;
                line-height: 1.1;
                margin-bottom: 2px;
                white-space: nowrap;
            }

            .mobile-brand-line2 {
                font-size: 0.75rem;
                font-weight: 600;
                opacity: 0.8;
                line-height: 1.1;
                white-space: nowrap;
            }

            .navbar-toggler {
                grid-column: 3;
                grid-row: 1;
            }

            .navbar-collapse {
                grid-column: 1 / -1;
                grid-row: 2;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid #eee;
            }

            .nav-link {
                margin: 8px 0;
                padding: 12px 15px;
                text-align: left;
                border-radius: 8px;
                background: rgba(128, 0, 32, 0.05);
            }

            .navbar-actions {
                margin-top: 15px;
                width: 100%;
            }

            .btn-book {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }
        }

        .navbar-toggler {
            border: 2px solid var(--primary-maroon);
            padding: 6px 10px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(128, 0, 32, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(128, 0, 32, 0.9), rgba(93, 0, 30, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%23800020" width="1200" height="300"/><g fill="%23D4AF37" opacity="0.1"><circle cx="200" cy="75" r="40"/><circle cx="600" cy="150" r="60"/><circle cx="1000" cy="100" r="45"/></g></svg>');
            background-size: cover;
            background-attachment: fixed;
            padding: 80px 0 60px;
            text-align: center;
            color: var(--cream);
            margin-bottom: 60px;
        }

        .page-title {
            font-family: 'Dancing Script', cursive;
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: var(--primary-gold);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .page-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: 20px;
            opacity: 0.9;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        /* Fixed Modal Styling - No overlapping */
        .modal {
            z-index: 1060;
        }

        .modal-dialog {
            max-width: 900px;
            margin: 30px auto;
            z-index: 1061;
        }

        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--cream);
            border-radius: 0;
            padding: 25px 30px;
            border: none;
        }

        .modal-title {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: var(--primary-gold);
        }

        .btn-close {
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 1;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-body {
            padding: 40px 30px;
            background: #fafafa;
        }

        .booking-option {
            background: white;
            border: 3px solid #e0e0e0;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            margin: 10px 0;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .booking-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .booking-option:hover::before {
            left: 100%;
        }

        .booking-option:hover {
            border-color: var(--primary-gold);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
        }

        .booking-option.selected {
            border-color: var(--primary-maroon);
            background: linear-gradient(135deg, var(--cream), #F5F5DC);
            box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
        }

        .booking-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--primary-maroon);
            transition: all 0.3s ease;
        }

        .booking-option:hover .booking-icon {
            transform: scale(1.1);
            color: var(--primary-gold);
        }

        .booking-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-maroon);
            margin-bottom: 15px;
            font-family: 'Cinzel', serif;
        }

        .booking-description {
            color: #555;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .booking-features {
            font-size: 0.9rem;
            color: #777;
        }

        .booking-features i {
            color: var(--primary-gold);
        }

        .btn-proceed {
            background: linear-gradient(45deg, var(--primary-maroon), var(--dark-maroon));
            color: white;
            border: none;
            border-radius: 30px;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s ease;
            font-family: 'Cinzel', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-proceed:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.4);
            color: white;
        }

        .btn-proceed:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
