/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Car Rental Color Palette */
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --accent-dark: #2a2a2a;
    --surface-dark: #333333;
    
    --luxury-gold: #d4af37;
    --premium-silver: #c0c0c0;
    --racing-red: #dc2626;
    --carbon-black: #111111;
    --warm-white: #f8f9fa;
    
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 50%, #f8f9fa 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
    
    --shadow-luxury: 0 20px 40px rgba(212, 175, 55, 0.15);
    --shadow-silver: 0 20px 40px rgba(192, 192, 192, 0.15);
    --shadow-red: 0 20px 40px rgba(220, 38, 38, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.4);
    
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-silver: 1px solid rgba(192, 192, 192, 0.3);
    --border-white: 1px solid rgba(248, 249, 250, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Initially hide all content except loading screen */
body:not(.loaded) {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Hide ALL content during loading - most aggressive approach */
body:not(.loaded) *:not(#loading-screen):not(#loading-screen *) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Content is visible by default */

body.menu-open {
    overflow: hidden;
}


/* Mobile loading screen fixes */
@media (max-width: 768px) {
    #loading-screen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: var(--primary-dark) !important;
        z-index: 999999 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
    
    body:not(.loaded) {
        overflow: hidden !important;
        height: 100vh !important;
        position: fixed !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        -webkit-overflow-scrolling: touch !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
    
    /* Aggressive content hiding on mobile */
    body:not(.loaded) *:not(#loading-screen):not(#loading-screen *) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    
    .loading-logo {
        width: 100px;
        height: 100px;
    }
    
    .loading-text {
        font-size: 2.5rem;
    }
    
    .loading-subtitle {
        font-size: 0.9rem;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    #loading-screen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background: var(--primary-dark) !important;
        z-index: 99999 !important;
    }
    
    .loading-logo {
        width: 80px;
        height: 80px;
    }
    
    .loading-text {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 0.8rem;
    }
}

/* iPhone 16 and modern mobile devices */
@supports (-webkit-touch-callout: none) {
    #loading-screen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: var(--primary-dark) !important;
        z-index: 999999 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden !important;
    }
    
    body:not(.loaded) {
        overflow: hidden !important;
        height: 100vh !important;
        position: fixed !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Additional mobile viewport fixes */
@media (max-width: 480px) {
    #loading-screen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: var(--primary-dark) !important;
        z-index: 999999 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden !important;
    }
    
    body:not(.loaded) {
        overflow: hidden !important;
        height: 100vh !important;
        position: fixed !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    pointer-events: auto;
    /* Ensure it covers the entire screen including browser UI */
    top: env(safe-area-inset-top, 0);
    left: env(safe-area-inset-left, 0);
    right: env(safe-area-inset-right, 0);
    bottom: env(safe-area-inset-bottom, 0);
    /* Force hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity, visibility;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
    }
}

.loading-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.loading-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: var(--border-gold);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--luxury-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta .btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    box-shadow: var(--shadow-luxury);
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--luxury-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-attachment: scroll;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    filter: brightness(0.7) contrast(1.1);
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--luxury-gold);
    border-radius: 50%;
    animation: particleFloat 12s linear infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 15s;
    background: var(--premium-silver);
    box-shadow: 0 0 8px rgba(192, 192, 192, 0.6);
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 18s;
    background: var(--electric-blue);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 14s;
    background: var(--racing-red);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
    animation-duration: 16s;
    background: var(--luxury-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--luxury-gold);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-luxury);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border: var(--border-gold);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.spec:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.spec-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-dark);
    border-color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--secondary-dark);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    border: var(--border-gold);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 75%;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.gallery-overlay p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Specs Section */
.specs {
    padding: 6rem 0;
    background: var(--primary-dark);
    position: relative;
}

.specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-dark);
    padding: 2rem;
    border-radius: 20px;
    border: var(--border-silver);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.spec-item:hover {
    transform: translateY(-5px);
    border-color: var(--premium-silver);
    box-shadow: var(--shadow-silver);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-silver);
}

.spec-info h3 {
    font-size: 1.8rem;
    color: var(--premium-silver);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.spec-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--primary-dark);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-item {
    background: var(--accent-dark);
    border: var(--border-silver);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(192, 192, 192, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-item:hover::before {
    opacity: 1;
}

.pricing-item:hover {
    transform: translateY(-10px);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
}

.pricing-item.featured {
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
    transform: scale(1.05);
}

.pricing-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-silver);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.pricing-item.featured .price-amount {
    color: var(--luxury-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--luxury-gold);
    font-size: 0.8rem;
}

.pricing-item button {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Free Parking Information */
/* Age Requirements Section */
.age-requirements {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: var(--border-gold);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.age-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, rgba(192, 192, 192, 0.02) 100%);
    pointer-events: none;
}

.age-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-luxury);
    flex-shrink: 0;
}

.age-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.age-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Free Parking Section */
.parking-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: var(--border-gold);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.parking-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, rgba(192, 192, 192, 0.02) 100%);
    pointer-events: none;
}

.parking-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.parking-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-luxury);
    flex-shrink: 0;
}

.parking-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.parking-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--secondary-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(220, 38, 38, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: var(--border-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-luxury);
}

.contact-item i {
    width: 20px;
    color: var(--luxury-gold);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--accent-dark);
    padding: 2rem;
    border-radius: 20px;
    border: var(--border-gold);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-luxury);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-dark);
    border: var(--border-gold);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Booking form step labels */
.form-step-label {
    display: block;
    color: var(--luxury-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* Hidden booking details - revealed after package selection */
.booking-details-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.booking-details-visible {
    max-height: 2000px;
    overflow: visible;
    opacity: 1;
    margin-top: 0.5rem;
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--text-white);
    padding: 0.5rem;
}

/* Custom Date Picker Styling */
.custom-date-picker-container {
    position: relative;
    width: 100%;
}

.date-picker-label {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-date-picker {
    position: relative;
    width: 100%;
}

.date-picker-display {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-dark);
    border: var(--border-gold);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.date-picker-display:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.date-picker-display.active {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.date-picker-display i {
    color: var(--luxury-gold);
    transition: transform 0.3s ease;
}

.date-picker-display.active i {
    transform: rotate(180deg);
}

.date-picker-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent-dark);
    border: var(--border-gold);
    border-radius: 10px;
    box-shadow: var(--shadow-luxury);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.date-picker-calendar.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-dark);
    border-bottom: var(--border-gold);
}

.calendar-nav {
    background: transparent;
    border: none;
    color: var(--luxury-gold);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.calendar-month-year {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--secondary-dark);
    border-bottom: var(--border-gold);
}

.weekday {
    padding: 0.75rem 0.5rem;
    text-align: center;
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border-gold);
}

.calendar-day {
    background: var(--secondary-dark);
    padding: 0.75rem 0.5rem;
    text-align: center;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calendar-day:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.calendar-day.available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.calendar-day.available:hover {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.calendar-day.reserved {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.reserved:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: none;
}

.calendar-day.today {
    background: var(--secondary-dark);
    color: var(--text-white);
    border: 1px solid var(--border-gold);
    font-weight: 700;
}

.calendar-day.today:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Reserved dates take priority over today styling */
.calendar-day.today.reserved {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.today.reserved:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: none;
}

.calendar-day.selected {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: 1px solid var(--luxury-gold);
    font-weight: 700;
    box-shadow: var(--shadow-luxury);
}

.calendar-day.selected:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.calendar-day.other-month {
    color: var(--text-muted);
    opacity: 0.5;
}

.calendar-day.past {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.past:hover {
    transform: none;
    background: var(--secondary-dark);
}

/* Weekend mode styles */
.calendar-day.weekend-disabled {
    color: var(--text-muted);
    opacity: 0.25;
    cursor: not-allowed;
}

.calendar-day.weekend-disabled:hover {
    transform: none;
    background: var(--secondary-dark);
}

.calendar-day.weekend-start.available {
    cursor: pointer;
    border-radius: 8px 0 0 8px;
}

.calendar-day.weekend-end.available {
    cursor: default;
    border-radius: 0 8px 8px 0;
}

.calendar-day.weekend-selected {
    background: var(--luxury-gold) !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    opacity: 1;
}

.calendar-day.weekend-selected:first-of-type,
.calendar-day.weekend-start.weekend-selected {
    border-radius: 8px 0 0 8px;
}

.calendar-day.weekend-end.weekend-selected {
    border-radius: 0 8px 8px 0;
}

.date-availability-info {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.availability-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.availability-dot.available {
    background-color: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.availability-dot.reserved {
    background-color: #dc2626;
    box-shadow: 0 0 6px rgba(220, 38, 38, 0.5);
}


/* Custom Time Picker Styling */
.time-picker-container {
    position: relative;
    width: 100%;
}

.time-picker-label {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-picker {
    position: relative;
    width: 100%;
}

.time-picker-display {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-dark);
    border: var(--border-gold);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.time-picker-display:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.time-picker-display.active {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.time-picker-display i {
    color: var(--luxury-gold);
    transition: transform 0.3s ease;
}

.time-picker-display.active i {
    transform: rotate(180deg);
}

.time-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent-dark);
    border: var(--border-gold);
    border-radius: 10px;
    box-shadow: var(--shadow-luxury);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(10px);
}

.time-picker-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-slots {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem 1rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.time-slot:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.time-slot.selected {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
}

.time-slot.selected:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* Time picker error state */
.time-picker-container.error .time-picker-display {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.time-picker-container.error .time-picker-label {
    color: #dc2626;
}

/* Custom Date Picker Mobile Responsiveness */
@media (max-width: 768px) {
    .date-picker-calendar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 400px;
        z-index: 10000;
    }
    
    .calendar-day {
        min-height: 35px;
        font-size: 0.8rem;
        padding: 0.5rem 0.25rem;
    }
    
    .weekday {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .calendar-header {
        padding: 0.75rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .date-availability-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .availability-legend {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .date-picker-calendar {
        width: 95vw;
        max-width: 350px;
    }
    
    .calendar-day {
        min-height: 30px;
        font-size: 0.75rem;
        padding: 0.4rem 0.2rem;
    }
    
    .weekday {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }
    
    .calendar-header {
        padding: 0.5rem;
    }
    
    .calendar-month-year {
        font-size: 0.9rem;
    }
    
    .date-availability-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .availability-legend {
        font-size: 0.7rem;
    }
    
    .availability-dot {
        width: 6px;
        height: 6px;
    }
}

/* Mobile responsiveness for time picker */
@media (max-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .time-slot {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .time-slot {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0;
    border-top: var(--border-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 0.2rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mobile-First Responsive Design */
/* Base styles are mobile-first */

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        z-index: 999;
        border-top: var(--border-gold);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-specs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .spec {
        padding: 1rem;
    }
    
    .spec-value {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-item {
        padding: 1.5rem;
    }
    
    .pricing-item.featured {
        transform: none;
    }
    
    .pricing-item.featured:hover {
        transform: translateY(-10px);
    }
    
    .age-content,
    .parking-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .age-icon,
    .parking-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .age-text h3,
    .parking-text h3 {
        font-size: 1.5rem;
    }
    
    .age-text p,
    .parking-text p {
        font-size: 1rem;
    }
    
    .spec-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .spec-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .spec-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-specs {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
    }
    
    .hero-specs {
        display: flex;
        flex-direction: row;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* macOS specific fixes */
@supports (-webkit-appearance: none) {
    .pricing-item {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    .pricing-item::before {
        background: rgba(212, 175, 55, 0.05);
    }
    
    .pricing-item:hover {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }
    
    .pricing-item.featured {
        transform: scale(1.02);
        -webkit-transform: scale(1.02);
    }
    
    .pricing-item.featured:hover {
        transform: scale(1.02) translateY(-5px);
        -webkit-transform: scale(1.02) translateY(-5px);
    }
    
    /* Keep grid layout but add webkit prefixes */
    .pricing-grid {
        display: -webkit-grid;
        display: grid;
        -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}