/* ===== BROW FLEET - PREMIUM DESIGN SYSTEM ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --dark-gold: #B8941F;
    --charcoal: #1A1A1A;
    --light-charcoal: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #333333;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Typography */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 1s ease-in-out 3s forwards;
}

.loading-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.logo-animation {
    animation: logoReveal 2s ease-out;
}


.loading-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    font-size: 1rem;
    letter-spacing: 0.15rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.loading-tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.loading-progress {
    width: 300px;
    margin: 0 auto;
}

.progress-bar {
    height: 2px;
    background: var(--gradient-gold);
    width: 0;
    border-radius: 1px;
    animation: progressLoad 2.5s ease-out forwards;
    margin-bottom: 1rem;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.7;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%23D4AF37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%23D4AF37" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    opacity: 0.3;
}

/* ===== NAVIGATION ===== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(-100%);
    animation: navSlideIn 1s ease-out 3.5s forwards;
}

.premium-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--dark-gray) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease !important;
    transform-origin: center;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
    transform: scale(1.15) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

.nav-link.active {
    color: var(--primary-gold) !important;
    font-weight: 600;
}

/* Additional specificity for nav menu links */
.nav-menu .nav-link {
    color: var(--dark-gray) !important;
    transition: all 0.3s ease !important;
}

.nav-menu .nav-link:hover {
    color: var(--primary-gold) !important;
    transform: scale(1.15) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
    transform-origin: center;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.nav-phone:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-reserve {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-smooth);
}

.nav-reserve:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 4s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.hero-heading {
    font-family: var(--font-display);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 4.2s both;
}

.heading-primary {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.heading-secondary {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 650px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 4.4s both;
}


.hero-cta {
    display: flex;
    gap: 2rem;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 4.6s both;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.hero-trust-simple {
    animation: fadeInUp 1s ease-out 4.8s both;
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02rem;
}

.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out 5s both;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter var(--transition-smooth);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.partners-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.partners-cta .cta-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.partners-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* ===== FLEET SECTION ===== */
.fleet-section {
    padding: var(--section-padding);
    background: var(--white);
}

.fleet-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.fleet-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--medium-gray);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

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

.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card.featured {
    border: 2px solid var(--primary-gold);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.vehicle-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.vehicle-card:hover .vehicle-overlay {
    opacity: 1;
}

.view-details-btn {
    background: var(--white);
    color: var(--charcoal);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
}

.view-details-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.vehicle-content {
    padding: 2rem;
}

.vehicle-header {
    margin-bottom: 1rem;
}

.vehicle-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.vehicle-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.vehicle-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vehicle-specs {
    margin-bottom: 1.5rem;
}

.vehicle-quantity {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vehicle-quantity label {
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.quantity-select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition-smooth);
    min-width: 120px;
}

.quantity-select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-gold);
    width: 16px;
}

.vehicle-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.price-period {
    font-size: 1rem;
    color: var(--medium-gray);
}

.price-note {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.reserve-btn {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.fleet-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    order: 1;
}

.about-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-features .feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    order: 2;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-bottom: 1rem;
}

.play-button:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: var(--charcoal);
    margin-left: 0.25rem;
}

.image-caption {
    color: var(--white);
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.contact-link:hover {
    color: var(--dark-gold);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item span:first-child {
    font-weight: 500;
    color: var(--white);
}

.contact-item span:last-child,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes logoReveal {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}


@keyframes progressLoad {
    to { width: 100%; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes crownGlow {
    0% { filter: drop-shadow(0 0 5px var(--primary-gold)); }
    100% { filter: drop-shadow(0 0 15px var(--primary-gold)); }
}

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

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

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

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 5.5rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Medium Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .premium-nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-logo .logo-image {
        max-height: 70px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Small Screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    .premium-nav {
        padding: 1rem;
    }
    
    .nav-logo .logo-image {
        max-height: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-gold);
        transition: var(--transition-smooth);
    }
    
    .hero-content {
        text-align: center;
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Extra Small Screens (320px - 575px) */
@media (max-width: 575px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .premium-nav {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo .logo-image {
        max-height: 50px;
    }
    
    .nav-phone {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 3px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--primary-gold);
        transition: var(--transition-smooth);
    }
    
    .loading-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-trust-simple {
        margin-top: 2rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin: 1rem 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicle-card {
        padding: 1.5rem;
    }
    
    .vehicle-image {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .vehicle-title {
        font-size: 1.3rem;
    }
    
    .vehicle-tagline {
        font-size: 0.9rem;
    }
    
    .vehicle-features {
        margin: 1rem 0;
    }
    
    .vehicle-features li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .vehicle-pricing .price-amount {
        font-size: 2rem;
    }
    
    .quantity-selector {
        margin-top: 1rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
    
    .experience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .experience-title {
        font-size: 1.2rem;
    }
    
    .experience-description {
        font-size: 0.9rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .partner-card {
        padding: 1rem;
        height: 80px;
    }
    
    .partner-logo {
        max-height: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        height: 250px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Ultra Small Screens (320px and below) */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-actions .btn {
        max-width: 200px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .vehicle-card,
    .experience-card {
        padding: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        height: 70px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-actions {
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-content h1 {
        font-size: 4.2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Print Styles */
@media print {
    .premium-nav,
    .hero-actions,
    .footer {
        display: none;
    }
    
    .hero-content h1 {
        color: black;
        font-size: 2rem;
    }
    
    .section-title {
        color: black;
        font-size: 1.5rem;
    }
    
    .vehicle-card,
    .experience-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* ===== ENHANCED BOOKING MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s ease-out;
}

.booking-modal {
    max-width: 1000px;
}

.booking-header {
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 2.5rem 3rem 2rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

.premium-vehicle-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 3rem;
    position: relative;
}

.vehicle-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vehicle-info-header h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.vehicle-badge-small {
    background: var(--primary-gold);
    color: var(--charcoal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-price-display {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.booking-steps {
    margin: 2rem 3rem;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.step.active .step-number {
    background: var(--primary-gold);
    color: var(--charcoal);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--medium-gray);
}

.step.active .step-label {
    color: var(--charcoal);
}

.booking-form {
    padding: 0 3rem 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-title i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-smooth);
    background: var(--white);
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-help {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.premium-summary {
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.summary-header h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    padding-top: 1rem;
}

.premium-submit {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all var(--transition-smooth);
    margin-top: 2rem;
}

.premium-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 10001;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid var(--primary-gold);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--charcoal);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== FORM ENHANCEMENTS ===== */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠';
    font-size: 0.9rem;
}

/* Mobile menu styles */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    gap: 1rem;
}

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

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFD700;
        --charcoal: #000000;
        --white: #FFFFFF;
    }
}
}