/* ===============================================
   9 FIGURE WEALTH - Main Stylesheet
   Author: Vijay Sheth
   Version: 1.0
   =============================================== */

/* ===============================================
   1. CSS Variables & Root
   =============================================== */
   :root {
    --blood: #DC143C;
    --dark-red: #8B0000;
    --neon-red: #FF073A;
    --black: #000000;
    --dark: #0A0A0A;
    --darker: #050505;
    --white: #FFFFFF;
    --gray: #888888;
    --light-gray: #CCCCCC;
    --gold: #FFD700;
    --success: #00FF00;
    --platinum: #E5E4E2;
    --carbon: #1C1C1C;
    --champagne: #F7E7CE;
    --midnight-blue: #191970;
}

/* ===============================================
   2. Reset & Base Styles
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* ===============================================
   3. Typography
   =============================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--blood), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    font-weight: 300;
}

/* ===============================================
   4. Scrollbar
   =============================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--blood);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-red);
}

/* ===============================================
   5. Loading Screen
   =============================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.05), var(--black));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    backdrop-filter: blur(10px);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    color: var(--blood);
    margin-bottom: 30px;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    font-weight: 400;
    position: relative;
    min-width: 500px;
}

.loader-logo-initial {
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
    }
}

.loader-logo-full {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.loader-logo-full.active {
    display: block;
}

.loader-logo-full .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--blood);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
    opacity: 1;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.loader-quote {
    color: var(--gray);
    font-size: 14px;
    margin-top: 40px;
    font-style: italic;
    max-width: 600px;
    opacity: 0;
    animation: fadeInQuote 1s ease-out 0.5s forwards;
    line-height: 1.6;
}

@keyframes fadeInQuote {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-indicator {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.loader-dot {
    width: 6px;
    height: 6px;
    background: var(--blood);
    border-radius: 50%;
    animation: loadingDance 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0; }

@keyframes loadingDance {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ===============================================
   6. Navigation
   =============================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--blood);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--neon-red);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blood);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--blood);
}

.nav-cta:hover {
    background: transparent;
    color: var(--blood);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===============================================
   7. Hero Section
   =============================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--blood);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white), var(--blood));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2.5vw, 28px);
    color: var(--light-gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--blood);
    display: block;
}

.hero-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ===============================================
   8. Buttons
   =============================================== */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--blood);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-red);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(220, 20, 60, 0.45);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* ===============================================
   9. Sections Layout
   =============================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--blood), transparent);
    margin: 0 auto;
}

/* ===============================================
   10. Timeline Section
   =============================================== */
.timeline-section {
    padding: 100px 40px;
    background: var(--darker);
    position: relative;
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blood), transparent);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 0 0 45%;
    padding: 40px;
    background: var(--dark);
    border: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--blood);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.timeline-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blood), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
    border: 3px solid var(--black);
}

.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--blood);
}

.timeline-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-gray);
}

.timeline-achievement {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 5px;
}

.achievement-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
}

/* ===============================================
   11. Vision Section
   =============================================== */
.vision-section {
    padding: 100px 40px;
    background: var(--black);
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vision-headline {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--white), var(--blood), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vision-card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.vision-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0;
}

.vision-description {
    color: var(--light-gray);
}

/* ===============================================
   12. Empire Section
   =============================================== */
.empire-section {
    padding: 100px 40px;
    background: var(--black);
}

.empire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.empire-card {
    background: linear-gradient(180deg, rgba(220,20,60,0.08), rgba(0,0,0,0.4));
    border: 1px solid rgba(220,20,60,0.25);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.empire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.empire-card:hover::before {
    left: 100%;
}

.empire-card:hover {
    transform: translateY(-10px);
    border-color: var(--blood);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.empire-icon {
    font-size: 48px;
    color: var(--blood);
    margin-bottom: 20px;
}

.empire-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 700;
}

.empire-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.empire-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.empire-stat {
    text-align: center;
}

.empire-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    display: block;
}

.empire-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

/* ===============================================
   13. Statistics Dashboard
   =============================================== */
.stats-dashboard {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--darker), rgba(220, 20, 60, 0.05), var(--darker));
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(220, 20, 60, 0.3);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    font-size: 40px;
    color: var(--blood);
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold);
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 10px;
}

.stat-trend {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 10px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00FF00;
}

/* ===============================================
   14. Fleet Showcase
   =============================================== */
.fleet-showcase {
    padding: 80px 40px;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.fleet-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.fleet-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0 40px;
    will-change: transform;
}

.fleet-item {
    min-width: 320px;
    background: var(--dark);
    border: 1px solid rgba(220, 20, 60, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    flex-shrink: 0;
}

.fleet-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--blood);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
}

.car-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--darker));
}

.location-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blood);
    color: white;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 2;
    border-radius: 3px;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover .car-image {
    transform: scale(1.15);
}

.fleet-info {
    padding: 25px;
    position: relative;
}

.fleet-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.car-color {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    font-style: italic;
}

.fleet-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.fleet-stats {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.rent-now-badge {
    display: inline-block;
    background: var(--blood);
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.fleet-item:hover .rent-now-badge {
    background: var(--neon-red);
    transform: translateX(5px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--blood);
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-nav:hover {
    background: var(--blood);
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--blood);
    width: 30px;
    border-radius: 5px;
}

.fleet-cta-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.fleet-cta-link:hover {
    color: var(--neon-red);
    transform: translateX(5px);
}

.fleet-total {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.fleet-total span {
    display: inline-block;
    margin: 0 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--blood);
}

/* ===============================================
   15. Roadmap Section
   =============================================== */
.roadmap-section {
    padding: 100px 40px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), var(--black));
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

.roadmap-milestone {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold);
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-milestone:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.9));
}

.milestone-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--blood);
    margin-bottom: 10px;
}

.milestone-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold);
    margin: 10px 0;
}

.milestone-goal {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.4;
}

.deal-ticker {
    background: var(--darker);
    padding: 15px;
    border-left: 3px solid var(--blood);
    margin: 40px 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-item:last-child {
    border-bottom: none;
}

.ticker-badge {
    background: var(--blood);
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
}

.ticker-text {
    flex: 1;
    font-size: 14px;
    color: var(--light-gray);
}

.ticker-time {
    font-size: 12px;
    color: var(--gray);
}

/* ===============================================
   16. Video Section
   =============================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--darker);
}

/* ===============================================
   17. Social Proof Section
   =============================================== */
.social-proof-section {
    padding: 100px 40px;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--darker);
    padding: 40px;
    border-left: 4px solid var(--blood);
    position: relative;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--gray);
}

.author-verified {
    color: var(--blood);
    font-size: 20px;
}

/* ===============================================
   18. Instagram Section
   =============================================== */
.instagram-section {
    padding: 100px 40px;
    background: var(--black);
}

/* ===============================================
   19. Partnership Section
   =============================================== */
.partnership-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--blood) 0%, var(--dark-red) 100%);
    position: relative;
    overflow: hidden;
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partnership-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    margin-bottom: 30px;
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.partnership-feature {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================================
   20. Contact Section
   =============================================== */
.contact-section {
    padding: 100px 40px;
    background: var(--darker);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 30px;
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--black);
    border: 1px solid rgba(220, 20, 60, 0.2);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blood);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-submit {
    padding: 20px 60px;
    background: var(--blood);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--neon-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.form-submit:hover::before {
    width: 500px;
    height: 500px;
}

.form-submit span {
    position: relative;
    z-index: 1;
}

/* ===============================================
   21. Footer
   =============================================== */
.footer {
    padding: 80px 40px 40px;
    background: var(--black);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--blood);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blood);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blood);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--blood);
    color: var(--white);
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blood);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}

/* ===============================================
   22. Media Bar
   =============================================== */
.media-bar {
    background: linear-gradient(90deg, var(--darker), var(--dark), var(--darker));
    padding: 30px 20px;
    overflow: hidden;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.media-bar-title {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 20px;
}

.media-ticker {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.media-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.media-logo {
    font-size: 24px;
    color: var(--gray);
    opacity: 0.7;
}

.media-quote {
    font-size: 14px;
    color: var(--light-gray);
    font-style: italic;
}

/* ===============================================
   23. Floating Actions
   =============================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background: #25D366;
    color: white;
}

.float-calendar {
    background: var(--blood);
    color: white;
}

.float-btn-label {
    position: absolute;
    right: 70px;
    background: black;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-btn:hover .float-btn-label {
    opacity: 1;
    transform: translateX(0);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
    opacity: 0.5;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ===============================================
   24. Exit Popup
   =============================================== */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.exit-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup-content {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    border: 2px solid var(--blood);
    padding: 60px;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
}

.exit-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.exit-close:hover {
    color: var(--blood);
}

.exit-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--blood);
    margin-bottom: 20px;
}

.exit-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.exit-offer {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    padding: 20px;
    margin-bottom: 30px;
}

.exit-offer-title {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}

.exit-cta {
    background: var(--blood);
    color: white;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-cta:hover {
    background: var(--neon-red);
    transform: scale(1.05);
}

/* ===============================================
   25. Custom Cursor
   =============================================== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--blood);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    display: none;
}

@media (hover: hover) {
    .cursor {
        display: block;
    }

    body {
        cursor: none;
    }

    a, button {
        cursor: none;
    }

    .cursor.hover {
        width: 40px;
        height: 40px;
        background: rgba(220, 20, 60, 0.1);
    }
}

/* ===============================================
   26. Animations
   =============================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.gradient-text-animated {
    background: linear-gradient(90deg, var(--white), var(--blood), var(--white));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===============================================
   27. Mobile Responsive
   =============================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }

    .timeline-year {
        position: absolute;
        top: 5px;
        left: 30px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .timeline-content {
        width: 100%;
        flex: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-stat {
        flex: 0 0 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .exit-popup-content {
        padding: 40px 20px;
        margin: 20px;
    }

    .roadmap-timeline {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .loader-logo {
        min-width: 90vw;
        font-size: clamp(40px, 8vw, 80px);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .empire-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partnership-features {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .fleet-carousel-container {
        padding: 0 40px;
    }

    .fleet-item {
        min-width: 280px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}