/* ============================================
   FLIGHT TIME - STYLES.CSS
   Premium Simulation Entertainment Venue
   ============================================ */

/* CSS Variables for Easy Customization - Luxurious Dark Blue Theme */
:root {
    --primary-dark: #0a1628;
    --secondary-dark: #111d2e;
    --accent-gold: #d4a574;
    --accent-gold-bright: #e8b878;
    --accent-navy: #1e3a5f;
    --accent-slate: #2d4a6a;
    --text-light: #e8e9ec;
    --text-muted: #9ba3b0;
    --gradient-overlay: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(30, 58, 95, 0.08) 100%);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BASE STYLES
   ============================================ */

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Background Layer */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../images/golfsim.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fixed-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(17, 29, 46, 0.88) 100%);
}

/* Content wrapper to sit above fixed background */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Parallax Divider - reveals fixed background between sections */
.parallax-divider {
    height: 200px;
    background: transparent;
    position: relative;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-dark), transparent);
    pointer-events: none;
}

.parallax-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--secondary-dark), transparent);
    pointer-events: none;
}

.parallax-divider.to-primary::after {
    background: linear-gradient(to top, var(--primary-dark), transparent);
}

.parallax-divider.from-secondary::before {
    background: linear-gradient(to bottom, var(--secondary-dark), transparent);
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8956a 100%);
    color: white;
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(201, 169, 103, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 103, 0.35);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 248, 255, 0.0);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 103, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(44, 74, 90, 0.12) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    pointer-events: none;
    z-index: 4;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1100px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

/* Professional Promo Banner */
.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(17, 29, 46, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.promo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    font-weight: 700;
}

.promo-divider {
    color: rgba(44, 62, 80, 0.3);
    font-weight: 300;
}

.promo-main {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.promo-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1rem;
}

.promo-note {
    font-size: 0.75rem;
    background: rgba(201, 169, 103, 0.12);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    padding: 0.75rem 1.8rem;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 6.5rem 2rem 5.5rem;
    background: var(--secondary-dark);
    position: relative;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(17, 29, 46, 0.6);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    display: block;
}

/* Clickable feature cards */
a.feature-card {
    cursor: pointer;
}

a.feature-card:hover {
    text-decoration: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 32px rgba(201, 169, 103, 0.15);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 103, 0.1);
}

.feature-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-icon-img img:not([src]),
.feature-icon-img img[src=""] {
    display: none;
}

.feature-icon-fallback {
    font-size: 3rem;
    display: none;
}

/* Show emoji fallback if image fails to load */
.feature-icon-img:has(img:not([src])) .feature-icon-fallback,
.feature-icon-img:has(img[src=""]) .feature-icon-fallback {
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-details {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-details li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-details li::before {
    content: '→';
    color: var(--accent-gold);
    font-weight: bold;
}

/* Featured Cards - Golf & Flight */
.golf-featured,
.flight-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 169, 103, 0.06) 0%, rgba(44, 74, 90, 0.06) 100%);
    border: 2px solid var(--accent-gold);
}

.golf-featured::before,
.flight-featured::before {
    opacity: 1;
}

/* Flight Featured - Navy accent variation */
.flight-featured {
    border: 2px solid var(--accent-navy);
    background: linear-gradient(135deg, rgba(44, 74, 90, 0.06) 0%, rgba(201, 169, 103, 0.06) 100%);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8956a 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ============================================
   MEMBERSHIP INFO SECTION
   ============================================ */

.membership-info {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.membership-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

.membership-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.membership-card-wide {
    background: rgba(17, 29, 46, 0.8);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.2);
    position: relative;
    margin-top: 3rem;
}

.membership-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8956a 100%);
    color: white;
    padding: 0.75rem 2rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.membership-price-section {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 103, 0.06) 0%, rgba(44, 74, 90, 0.04) 100%);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.membership-price-main {
    margin-bottom: 1rem;
}

.membership-now {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.membership-period {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

.membership-was {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.membership-savings {
    background: rgba(201, 169, 103, 0.12);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.membership-details-section {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membership-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.membership-benefits li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.membership-benefits li:last-child {
    border-bottom: none;
}

.membership-benefits li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.membership-contact {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.membership-contact a:hover {
    color: var(--accent-gold-bright);
}

/* Founders Lock Note */
.founders-lock-note {
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Founders Spotlight Wrapper */
.founders-spotlight {
    margin-top: 3rem;
}

.founders-urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(30, 58, 95, 0.15) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.founders-urgency-bar .founders-spotlight .membership-card-wide {
    border-radius: 0 0 20px 20px;
    margin-top: 0;
}

.founders-urgency-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* When inside founders spotlight, remove top border-radius on card */
.founders-spotlight .membership-card-wide {
    margin-top: 0;
    border-radius: 0 0 20px 20px;
}

/* All Tiers Section Label */
.tiers-section-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.tiers-section-label::before,
.tiers-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: var(--border-subtle);
}

.tiers-section-label::before { right: calc(50% + 10rem); }
.tiers-section-label::after  { left:  calc(50% + 10rem); }

/* Tier Cards Grid */
.membership-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tier-card {
    background: rgba(17, 29, 46, 0.75);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.tier-card:hover {
    border-color: rgba(212, 165, 116, 0.25);
    transform: translateY(-4px);
}

.tier-card-corporate {
    border-color: rgba(212, 165, 116, 0.18);
}

.tier-card-corporate .tier-amount {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.tier-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.tier-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.tier-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
}

.tier-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tier-retail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tier-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tier-benefits li {
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-benefits li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tier-savings-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.tier-application-tag {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-subtle);
}

.tier-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.tier-cta:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold-bright);
}

/* Responsive Membership Card */
@media (max-width: 900px) {
    .membership-tiers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tiers-section-label::before { width: 15%; right: calc(50% + 7rem); }
    .tiers-section-label::after  { width: 15%; left:  calc(50% + 7rem); }
}

@media (max-width: 768px) {
    .membership-content {
        grid-template-columns: 1fr;
    }

    .membership-price-section {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
        padding: 2.5rem 2rem;
    }

    .membership-now {
        font-size: 3rem;
    }

    .membership-details-section {
        padding: 2.5rem 2rem;
    }

    .membership-tiers-grid {
        grid-template-columns: 1fr;
    }

    .founders-urgency-bar {
        text-align: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tiers-section-label::before,
    .tiers-section-label::after {
        display: none;
    }
}

/* ============================================
   FLIGHT SIMULATOR SHOWCASE SECTION
   ============================================ */

.flight-showcase {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.flight-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    pointer-events: none;
}

/* Flight showcase specific styling - navy accent theme */
.flight-showcase .section-label {
    color: var(--accent-navy);
}

.flight-showcase .showcase-content h2 {
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flight-showcase .showcase-quote {
    background: rgba(44, 74, 90, 0.05);
    border-left: 4px solid var(--accent-navy);
}

.flight-showcase .quote-author {
    color: var(--accent-navy);
}

/* Coming Soon Section Banner */
.coming-soon-section-banner {
    background: rgba(212, 165, 116, 0.1);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

/* ============================================
   RACING SIMULATOR SHOWCASE SECTION - PODIUM 1
   ============================================ */

.racing-showcase {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.racing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

/* Racing showcase specific styling - red/gold accent theme */
.racing-showcase .section-label {
    color: #c9544d;
}

.racing-showcase .showcase-content h2 {
    background: linear-gradient(135deg, #c9544d 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.racing-showcase .showcase-quote {
    background: rgba(201, 84, 77, 0.08);
    border-left: 4px solid #c9544d;
}

.racing-showcase .quote-author {
    color: #c9544d;
}

/* Racing featured card styling */
.racing-featured {
    border: 2px solid #c9544d;
    background: linear-gradient(135deg, rgba(201, 84, 77, 0.06) 0%, rgba(212, 165, 116, 0.06) 100%);
}

.racing-featured::before {
    opacity: 1;
}

/* ============================================
   FULL SWING SHOWCASE SECTION
   ============================================ */

.fullswing-showcase {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.fullswing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.showcase-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.75rem;
    font-weight: 300;
}

.showcase-features {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.showcase-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0;
}

.showcase-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.showcase-feature h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.showcase-feature p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    font-weight: 300;
}

.showcase-quote {
    background: rgba(184, 149, 106, 0.04);
    border-left: 3px solid var(--accent-gold);
    padding: 2rem 2.25rem;
    border-radius: 10px;
    margin-top: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.quote-text {
    font-size: 1.12rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.quote-author {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Enhanced Image Gallery Layout - Professional Edition */
.showcase-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gallery-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 500px;
    position: relative;
    background: #f8f8f8;
}

.gallery-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    pointer-events: none;
}

.gallery-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    position: relative;
    background: #f8f8f8;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Old showcase-img styles (keeping for backwards compatibility) */
.showcase-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 600px;
}

.showcase-img {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-img:hover {
    transform: scale(1.05);
}

.showcase-img-1 {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    grid-row: span 2;
}

.showcase-img-2 {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.15) 0%, rgba(135, 206, 235, 0.05) 100%);
}

/* ============================================
   VIDEO EXPERIENCE SECTION
   ============================================ */

.video-experience {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.video-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    pointer-events: none;
}

.video-experience-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.video-showcase {
    margin: 3rem 0 2rem;
    position: relative;
}

.main-video {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    background: #f8f8f8;
}

.main-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    pointer-events: none;
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* YouTube iframe responsive styling */
.feature-video.feature-video {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 500px;
}

.tech-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-card {
    background: rgba(17, 29, 46, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    position: relative;
}

.tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    pointer-events: none;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 149, 106, 0.2);
}

.tech-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f8f8;
}

.tech-card:hover img {
    transform: scale(1.04);
}

.tech-card-content {
    padding: 2rem 2rem 2.25rem;
}

.tech-card-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.tech-card-content p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
    font-weight: 300;
}

/* ============================================
   RACING VIDEO HERO SECTION - FULL SCREEN
   ============================================ */

.racing-video-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Top gradient fade from previous section */
.racing-video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* Bottom gradient fade to next section */
.racing-video-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, var(--primary-dark) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.racing-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

.racing-fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    z-index: 1;
}

.racing-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.4) 0%,
        rgba(10, 22, 40, 0.2) 50%,
        rgba(10, 22, 40, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.racing-video-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.racing-video-content .racing-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9544d;
    font-weight: 700;
    margin-bottom: 1rem;
}

.racing-video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #c9544d 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.racing-video-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.racing-watch-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c9544d 0%, #a83f3a 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 84, 77, 0.4);
}

.racing-watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 84, 77, 0.5);
}

.racing-watch-btn .play-icon {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

/* Racing video hero responsive */
@media (max-width: 1024px) {
    .racing-video-title {
        font-size: 3.5rem;
    }

    .racing-video-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .racing-video-hero {
        height: 80vh;
        min-height: 500px;
    }

    .racing-video-title {
        font-size: 2.5rem;
    }

    .racing-video-subtitle {
        font-size: 1.05rem;
    }

    .racing-watch-btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   RACING VIDEO EXPERIENCE SECTION - PODIUM 1
   ============================================ */

.racing-video-experience {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.racing-video-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

/* Racing video section specific styling - red accent theme */
.racing-label {
    color: #c9544d;
}

/* Racing tech cards with red accent */
.racing-highlights .racing-tech-card {
    border-color: rgba(201, 84, 77, 0.2);
}

.racing-highlights .racing-tech-card:hover {
    border-color: rgba(201, 84, 77, 0.5);
    box-shadow: 0 8px 32px rgba(201, 84, 77, 0.15);
}

.racing-tech-card .tech-card-content h3 {
    background: linear-gradient(135deg, #c9544d 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Racing Features Strip */
.racing-features {
    padding: 2.5rem 2rem;
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.racing-features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.racing-feature {
    text-align: center;
}

.racing-feature h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9544d;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.racing-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .racing-features-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .racing-feature {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .racing-features {
        padding: 2rem 1.5rem;
    }

    .racing-features-grid {
        gap: 1.5rem;
    }

    .racing-feature {
        flex: 0 0 45%;
    }

    .racing-feature h4 {
        font-size: 0.8rem;
    }

    .racing-feature p {
        font-size: 0.85rem;
    }
}

/* Racing Image Gallery */
.racing-gallery {
    padding: 2rem;
    background: var(--primary-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.racing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.racing-gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

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

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

@media (max-width: 1024px) {
    .racing-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .racing-gallery {
        padding: 1.5rem;
    }

    .racing-gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .racing-gallery-item {
        aspect-ratio: 16/9;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(201, 169, 103, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(201, 169, 103, 0.08);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.about-image {
    background: #f8f8f8;
    border-radius: 16px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    pointer-events: none;
}

.about-image:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   SISTER VENUES SECTION
   ============================================ */

.sister-venues {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.sister-venues::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    pointer-events: none;
}

.venues-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.venue-card {
    background: rgba(17, 29, 46, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    position: relative;
}

.venue-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    pointer-events: none;
}

.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.venue-image {
    height: 320px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.venue-content {
    padding: 2.75rem 2.5rem;
}

.venue-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-light);
}

.venue-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.85;
    font-size: 1.05rem;
    font-weight: 300;
}

.venue-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.venue-link:hover {
    gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-size: 1.02rem;
    font-weight: 300;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 103, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 169, 103, 0.25);
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.9rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.98rem;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.92rem;
    position: relative;
    z-index: 10;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .features {
        padding: 5rem 2rem 4rem;
    }

    .membership-info,
    .flight-showcase,
    .fullswing-showcase,
    .video-experience,
    .about,
    .sister-venues {
        padding: 4rem 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .showcase-description {
        font-size: 1.05rem;
        margin-bottom: 2.25rem;
    }

    .showcase-features {
        gap: 2.25rem;
    }

    .showcase-image-grid {
        height: 400px;
        margin-top: 2rem;
    }

    .showcase-image-gallery {
        order: -1; /* Show images first on tablet */
    }

    .gallery-main {
        height: 380px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .gallery-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.08rem;
    }

    .promo-banner {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-label {
        font-size: 0.65rem;
    }

    .promo-main {
        font-size: 0.8rem;
    }

    .promo-price {
        font-size: 0.85rem;
    }

    .promo-note {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .features {
        padding: 4rem 1.5rem 3rem;
    }

    .membership-info,
    .flight-showcase,
    .fullswing-showcase,
    .video-experience,
    .about,
    .sister-venues {
        padding: 4rem 1.5rem 3rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .showcase-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }

    .showcase-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .showcase-features {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .showcase-feature h4 {
        font-size: 1.1rem;
    }

    .showcase-feature p {
        font-size: 0.94rem;
    }

    .showcase-image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-img {
        height: 250px;
    }

    .showcase-img-1 {
        grid-row: span 1;
    }

    .showcase-image-gallery {
        order: -1; /* Show images first on mobile */
        gap: 0.875rem;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
    }

    .gallery-grid-2col {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .tech-highlights {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tech-card img {
        height: 240px;
    }

    .features-grid,
    .venues-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }
    /* Promotional Tag in Hero */
.promo-tag {
    background: var(--accent-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.promo-tag .old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
}

/* Coming Soon Styling */
.coming-soon {
    position: relative;
    opacity: 0.5; /* Fades the card */
    filter: grayscale(1); /* Optional: makes it black and white */
    pointer-events: none; /* Prevents clicking */
    cursor: default;
}

.coming-soon-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    border: 2px solid var(--accent-gold);
    letter-spacing: 2px;
}
}
/* ============================================
   LUXURY CARD OVERRIDES (Added)
   These rules override the original simulator card styles
   without removing any prior styles.
   ============================================ */

/* Make feature cards feel like luxury-hotel amenity tiles */
.feature-card {
    background: rgba(17, 29, 46, 0.8);
    border-radius: 18px;
    padding: 0; /* image-first */
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

/* Replace the old top accent bar with a subtle inner edge */
.feature-card::before {
    inset: 0;
    height: auto;
    opacity: 1;
    background: transparent;
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.40) inset;
    pointer-events: none;
}

/* Image header */
.feature-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-media img {
    transform: scale(1.06);
}

.feature-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 26, 0.38) 0%, rgba(10, 14, 26, 0.12) 45%, rgba(10, 14, 26, 0.00) 70%);
    pointer-events: none;
}

/* Content area */
.feature-content {
    padding: 1.75rem 2rem 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    letter-spacing: -0.2px;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Badges move into the image header as a refined "glass" pill */
.feature-badge {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(44, 62, 80, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    text-transform: uppercase;
}

.feature-media .feature-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    margin: 0;
}

/* Founding membership "rate tag" (top-right) */
.founding-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(201, 169, 103, 0.25);
    text-transform: uppercase;
    z-index: 5;
}

.founding-tag .old {
    text-decoration: line-through;
    opacity: 0.75;
    margin-right: 0.35rem;
}

/* Coming soon state stays obvious, but still premium */
.coming-soon {
    position: relative;
    opacity: 0.55;
    filter: grayscale(1);
    pointer-events: none;
}

.coming-soon-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    padding: 0.8rem 2.4rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
    z-index: 6;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ============================================
   PROMO MODAL STYLES (Added)
   ============================================ */

.promo-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2000;
}

.promo-modal {
    width: min(720px, 100%);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.promo-modal-header {
    position: relative;
    padding: 2.2rem 2.2rem 1.4rem;
    background:
        linear-gradient(135deg, rgba(212, 165, 116, 0.14) 0%, rgba(135, 206, 235, 0.10) 100%);
}

.promo-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.promo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.promo-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.promo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transition: transform 0.18s ease, background 0.18s ease;
}

.promo-close:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.92);
}

.promo-modal-body {
    padding: 1.8rem 2.2rem 2.2rem;
}

.promo-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.promo-now {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--text-dark);
}

.promo-now span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    opacity: 0.75;
    margin-left: 0.25rem;
}

.promo-was {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.05rem;
}

.promo-was .old {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.4rem;
}

.promo-bullets {
    list-style: none;
    margin: 1.2rem 0 1.6rem;
    display: grid;
    gap: 0.65rem;
}

.promo-bullets li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--text-muted);
}

.promo-bullets li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 900;
    margin-top: 1px;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.promo-secondary {
    background: transparent;
    border: 1px solid rgba(44, 62, 80, 0.18);
    color: var(--text-dark);
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.promo-secondary:hover {
    border-color: rgba(212, 165, 116, 0.45);
}

/* Disabled buttons (Booking/Membership off for now) */
.is-disabled,
.is-disabled:hover {
    opacity: 0.55;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
   FEATURE CARD BOOK BUTTON
   ============================================ */

.feature-book-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.45);
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.feature-book-btn:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold-bright);
}

/* ============================================
   AVAILABILITY / BOOKING SECTION
   ============================================ */

.availability-section {
    padding: 5rem 0 3rem;
    background: var(--secondary-dark);
    position: relative;
}

.availability-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.availability-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.avail-tab {
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.avail-tab:hover {
    border-color: rgba(212, 165, 116, 0.3);
    color: var(--text-light);
}

.avail-tab.active {
    border-color: var(--accent-gold);
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent-gold);
    font-weight: 600;
}

.availability-frame-wrapper {
    width: calc(100% - 40px);
    margin: 1.5rem auto 0;
    height: 720px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    background: #ffffff;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

/* --toast-header-h: height of the Toast nav bar to hide */
:root { --toast-header-h: 65px; }

.availability-iframe {
    width: 100%;
    height: calc(100% + var(--toast-header-h));
    margin-top: calc(-1 * var(--toast-header-h));
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .availability-frame-wrapper {
        width: calc(100% - 24px);
        height: 80vh;
        border-radius: 10px;
    }

    .avail-tab {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

/* ============================================
   RESERVATION MODAL STYLES
   ============================================ */

.res-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.res-modal-backdrop.is-open {
    opacity: 1;
}

.res-modal {
    background: var(--secondary-dark);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 780px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.res-modal-backdrop.is-open .res-modal {
    transform: translateY(0);
}

.res-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.res-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.res-modal-close {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.res-modal-close:hover {
    border-color: rgba(212, 165, 116, 0.5);
    color: var(--text-light);
}

.res-modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #ffffff; /* White base so Toast's UI renders with correct contrast */
}

.res-iframe {
    width: 100%;
    height: calc(100% + var(--toast-header-h));
    margin-top: calc(-1 * var(--toast-header-h));
    border: none;
    display: block;
}

/* Fallback shown when iframe is blocked */
.res-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.res-fallback-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.res-fallback h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.res-fallback p {
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .res-modal {
        height: 95vh;
        max-height: none;
        border-radius: 12px;
    }
}

/* ============================================
   SIGNUP MODAL STYLES
   ============================================ */

.signup-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-modal-backdrop.is-open {
    opacity: 1;
}

.signup-modal {
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 22px;
    background: rgba(17, 29, 46, 0.98);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.signup-modal-backdrop.is-open .signup-modal {
    transform: scale(1);
}

.signup-modal-header {
    position: relative;
    padding: 2.2rem 2.2rem 1.4rem;
    background: var(--gradient-overlay);
    border-bottom: 1px solid var(--border-subtle);
}

.signup-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.signup-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.signup-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

.signup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: transform 0.18s ease, background 0.18s ease;
}

.signup-close:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.92);
}

.signup-modal-body {
    padding: 2rem 2.2rem 2.2rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background: rgba(10, 22, 40, 0.6);
    color: var(--text-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 103, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.signup-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.5rem;
}

.signup-submit {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}

.signup-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.signup-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 103, 0.04);
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: rgba(46, 213, 115, 0.15);
    color: #27ae60;
    border: 1px solid rgba(46, 213, 115, 0.3);
    display: block;
}

.form-status.error {
    background: rgba(235, 77, 75, 0.15);
    color: #c0392b;
    border: 1px solid rgba(235, 77, 75, 0.3);
    display: block;
}

/* Tier chip shown at top of signup form */
.form-tier-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-tier-chip-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.form-tier-chip-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

.form-tier-chip-price {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Responsive Form */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signup-modal-header {
        padding: 1.8rem 1.5rem 1.2rem;
    }

    .signup-modal-body {
        padding: 1.5rem;
    }

    .signup-title {
        font-size: 1.8rem;
    }

    .signup-subtitle {
        font-size: 0.95rem;
    }

    .signup-actions {
        flex-direction: column;
    }

    .signup-submit {
        width: 100%;
    }

    .signup-secondary {
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE TWEAKS FOR LUXURY CARDS
   ============================================ */

@media (max-width: 768px) {
    .feature-media {
        height: 220px;
    }

    .feature-content {
        padding: 2rem 1.85rem 2.15rem;
    }

    .feature-card h3 {
        font-size: 1.45rem;
    }

    .feature-card p {
        font-size: 0.98rem;
    }

    .promo-title {
        font-size: 1.8rem;
    }

    .promo-now {
        font-size: 2.1rem;
    }

    .venue-image {
        height: 280px;
    }
}

/* ============================================
   SOFT LAUNCH ANNOUNCEMENT BAR
   ============================================ */

.launch-bar {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-bright) 100%);
    color: var(--primary-dark);
    padding: 11px 20px;
    text-align: center;
    position: relative;
    z-index: 1100;
}

.launch-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.launch-bar-dot {
    width: 9px;
    height: 9px;
    background: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.launch-bar-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    color: var(--primary-dark);
}

.launch-bar-text strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.launch-bar-cta {
    background: var(--primary-dark);
    color: var(--accent-gold-bright);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
}

.launch-bar-cta:hover {
    opacity: 0.82;
}

@media (max-width: 600px) {
    .launch-bar-text {
        font-size: 0.78rem;
    }
    .launch-bar-cta {
        font-size: 0.76rem;
        padding: 4px 12px;
    }
}

/* ============================================
   INSTAGRAM / SOCIAL SECTION
   ============================================ */

.social-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 40px;
    text-align: center;
}

.social-container {
    max-width: 620px;
    margin: 0 auto;
}

.instagram-embeds {
    display: flex;
    justify-content: center;
    margin: 44px 0 36px;
}

.instagram-embeds blockquote.instagram-media {
    border-radius: 12px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
}

.instagram-follow-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.35);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 600px) {
    .social-section {
        padding: 60px 20px;
    }
    .instagram-embeds blockquote.instagram-media {
        min-width: 0 !important;
        width: 100% !important;
    }
}
