
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section */
.hero-section {
            position: relative;
            min-height: calc(100vh - 90px); /* account for fixed header */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 90px;
}

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.85), rgba(10, 26, 42, 0.9));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 100px 20px 80px;
            max-width: 1000px;
            margin: 0 auto;
}

        .hero-title {
            color: #FFFFFF;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .hero-subtitle {
            color: #E3F2FD;
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            font-weight: 400;
            letter-spacing: 0.01em;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .hero-description {
            color: #FFFFFF;
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            font-weight: 300;
            line-height: 1.8;
            letter-spacing: 0.01em;
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        @media (min-width: 576px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        /* Mobile spacing: keep text comfortably below header */
        @media (max-width: 576px) {
            .hero-section {
                min-height: calc(100vh - 110px);
                padding-top: 110px;
            }
            .hero-content {
                padding-top: 120px;
            }
        }

        .btn-primary-custom {
            background-color: #D62828;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.125rem;
            letter-spacing: 0.02em;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary-custom:hover {
            background-color: #b81f1f;
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(214, 40, 40, 0.4);
        }

        .btn-secondary-custom {
            background-color: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.125rem;
            letter-spacing: 0.02em;
            padding: 1rem 2rem;
            border: 2px solid #E3F2FD;
            border-radius: 0.75rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary-custom:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
            color: #FFFFFF;
        }

        .decorative-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeInScale 1s ease-out 0.8s forwards;
        }

        .dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background-color: #E3F2FD;
        }

        .dot:nth-child(1), .dot:nth-child(3) {
            opacity: 0.5;
        }

        .bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8rem;
            background: linear-gradient(to top, rgba(10, 26, 42, 0.3), transparent);
            z-index: 10;
            pointer-events: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Modal Styling */
        .modal-dialog {
            max-width: 1200px;
        }

        .modal-header {
            border-bottom: 1px solid #e9ecef;
            padding: 1.5rem;
        }

        .modal-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            color: #0A1A2A;
            font-weight: 600;
        }

        .modal-subtitle {
            font-family: 'Inter', sans-serif;
            color: #6c757d;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        .lounge-card {
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .lounge-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px);
        }

        .lounge-image-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .lounge-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .lounge-card:hover .lounge-image {
            transform: scale(1.1);
        }

        .lounge-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        }

        .lounge-name {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
        }

        .lounge-body {
            padding: 1.25rem;
            background-color: #ffffff;
        }

        .lounge-description {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #4A5568;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .lounge-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1rem;
        }

        .lounge-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .feature-dot {
            width: 0.375rem;
            height: 0.375rem;
            border-radius: 50%;
            background-color: #007BFF;
            flex-shrink: 0;
        }

        .feature-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.813rem;
            color: #2D3748;
        }

        .btn-select-lounge {
            width: 100%;
            background-color: #007BFF;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            border: none;
            padding: 0.625rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }

        .btn-select-lounge:hover {
            background-color: #0056b3;
        }
    