/* Landing Page CSS Framework - Modern Design & Conversion Optimized */

:root {
    /* === CYCLISTATION MODERN THEME === */
    
    /* Primary Brand Colors */
    --primary-color: #000000;        /* Pure black - main brand color */
    --primary-light: #1a1a1a;        /* Subtle black variation */
    --secondary-color: #0066FF;      /* Vibrant blue - cycling energy */
    --secondary-light: #3388FF;      /* Lighter blue for hover states */
    
    /* Accent Colors */
    --accent-orange: #FF6B00;        /* Bright orange - CTA buttons */
    --accent-green: #00C851;         /* Success green - checkmarks, trust signals */
    --accent-yellow: #FFD700;        /* Premium gold - highlights */
    --accent-red: #FF3547;           /* Alert/danger red */
    --whatsapp-green: #25D366;       /* Official WhatsApp green */
    
    /* Text Colors */
    --text-dark: #000000;            /* Pure black text */
    --text-medium: #333333;          /* Medium gray text */
    --text-light: #666666;           /* Light gray text */
    --text-lighter: #999999;         /* Lighter gray for subtle text */
    
    /* Background Colors */
    --bg-white: #FFFFFF;             /* Pure white backgrounds */
    --bg-light: #F8F9FA;             /* Very light gray backgrounds */
    --bg-medium: #F0F0F0;            /* Medium light backgrounds */
    --bg-dark: #000000;              /* Pure black backgrounds */
    --bg-dark-light: #1A1A1A;        /* Slightly lighter black */
    --bg-dark-medium: #2D2D2D;       /* Medium dark backgrounds */
    
    /* Theme Colors */
    --text-white: #FFFFFF;           /* Pure white text on dark backgrounds */
    --text-white-soft: #F0F0F0;      /* Softer white for long text */
    
    /* Brand Gradients */
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-secondary: linear-gradient(135deg, #0066FF 0%, #3388FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    
    /* Legacy Color Compatibility */
    --accent-color: var(--accent-yellow);    /* Maps to new bright yellow */
    --success-color: var(--accent-green);    /* Maps to new green */
    --warning-color: var(--accent-yellow);   /* Maps to new gold */
    --danger-color: var(--accent-red);       /* Maps to new red */
    --bg-primary: var(--bg-white);           /* Maps to pure white */
    --bg-secondary: var(--bg-light);         /* Maps to light gray */
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);
    
    /* Modern Styling */
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-primary);
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* For regular video elements */
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For YouTube iframe */
.hero-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #FF8533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none !important;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 25%;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Introduction */
.intro {
    background: var(--bg-white);
}

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

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.intro-image {
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Gallery */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1.5rem;
}

.gallery-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Specifications */
.specs {
    background: var(--bg-white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.spec-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.spec-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.spec-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 1rem;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Purchase Section */
.purchase {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.purchase h2 {
    color: white;
    margin-bottom: 1rem;
}

.purchase p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--warning-color);
}

.price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.whatsapp:hover {
    background: var(--whatsapp-green);
}

.social-link.tiktok:hover {
    background: #000000;
}

/* Floating Social Media Sidebar */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideInFromRight 0.8s ease-out;
}

.floating-social .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-social .social-link.facebook {
    background: #1877f2;
}

.floating-social .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.floating-social .social-link.whatsapp {
    background: var(--whatsapp-green);
}

.floating-social .social-link.tiktok {
    background: #ff0050;
}

.floating-social .social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.floating-social .social-link.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.floating-social .social-link.instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.floating-social .social-link.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-social .social-link.tiktok:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
}

/* Floating social tooltip */
.floating-social .social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 32, 44, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-social .social-link::after {
    content: '';
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(26, 32, 44, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-social .social-link:hover::before,
.floating-social .social-link:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-social {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-social .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .floating-social .social-link::before {
        display: none;
    }
    
    .floating-social .social-link::after {
        display: none;
    }
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grid items */
.animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-stagger.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered effects */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* SEO Optimizations */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-item {
    background: rgb(57 122 251 / 70%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(57 122 251 / 40%);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    background: rgb(37, 109, 255);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(57 122 251 / 40%);
}

/* === DARK THEME SECTIONS === */
.section.section-dark {
    background: var(--bg-dark) !important;
    background-color: var(--bg-dark) !important;
    color: var(--text-white) !important;
}

.section.section-dark h1,
.section.section-dark h2,
.section.section-dark h3,
.section.section-dark h4,
.section.section-dark h5,
.section.section-dark h6 {
    color: var(--text-white) !important;
}

.section.section-dark p {
    color: var(--text-white-soft) !important;
}

.section.section-dark .section-header h2 {
    color: var(--text-white) !important;
}

.section.section-dark .section-header p {
    color: var(--text-white-soft) !important;
}

/* Dark theme product cards */
.section.section-dark .product-card {
    background: var(--bg-dark-medium) !important;
    border: 1px solid var(--text-light) !important;
}

.section.section-dark .product-card .product-title {
    color: var(--text-white) !important;
}

.section.section-dark .product-card .product-category {
    color: var(--secondary-color) !important;
}

.section.section-dark .product-card .product-description {
    color: var(--text-white-soft) !important;
}

.section.section-dark .product-card .product-features li {
    color: var(--text-white-soft) !important;
}

.section.section-dark .product-card .product-features li:before {
    color: var(--accent-green) !important;
}

/* Dark theme spec cards */
.section.section-dark .spec-card {
    background: var(--bg-dark-medium) !important;
    border: 1px solid var(--text-light) !important;
    color: var(--text-white) !important;
}

.section.section-dark .spec-card h4 {
    color: var(--text-white) !important;
}

.section.section-dark .spec-card p {
    color: var(--text-white-soft) !important;
}

/* Dark theme intro content */
.section.section-dark .intro-text h3 {
    color: var(--text-white) !important;
}

.section.section-dark .intro-text p {
    color: var(--text-white-soft) !important;
}

/* Dark theme trust signals */
.section.section-dark .trust-signals .trust-item {
    background: rgb(57 122 251 / 60%) !important;
    border-color: rgb(57 122 251 / 50%) !important;
    color: var(--text-white) !important;
}

.section.section-dark .trust-signals .trust-item:hover {
    background: rgb(57 122 251 / 90%) !important;
    box-shadow: 0 6px 20px rgb(57 122 251 / 40%) !important;
}

/* Dark theme price section */
.section.section-dark .price {
    color: var(--accent-yellow) !important;
}

/* Dark theme CTA buttons */
.section.section-dark .cta-button {
    background: var(--accent-orange) !important;
    color: var(--text-white) !important;
    border: 2px solid var(--accent-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.section.section-dark .cta-button:hover {
    background: transparent !important;
    color: var(--accent-orange) !important;
    border: 2px solid var(--accent-orange) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* === FLAGSHIP PRODUCT LANDING PAGES === */
.flagship-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.flagship-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.flagship-content-left, .flagship-content-right {
    padding: 2rem 0;
}

.flagship-content-center {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 4rem;
}

.flagship-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.flagship-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.flagship-subtitle {
    font-size: 1.3rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.flagship-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 15px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-text span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.flagship-visual-left, .flagship-visual-right {
    position: relative;
}

.flagship-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.3s ease;
}

.flagship-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.flagship-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.floating-spec {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 100px;
}

.floating-spec-alt {
    background: var(--bg-dark);
    color: white;
    top: auto;
    bottom: 2rem;
    left: 2rem;
    right: auto;
}

.spec-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.floating-spec-alt .spec-value {
    color: white;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.floating-spec-alt .spec-label {
    color: rgba(255,255,255,0.7);
}

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

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.tech-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Showcase Grid */
.showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.showcase-reverse {
    direction: rtl;
}

.showcase-reverse * {
    direction: ltr;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.showcase-content {
    padding: 2rem;
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Performance Stats */
.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.stat-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 15px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.performance-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff8533);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.badge-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* Dark Theme Overrides for Flagship */
.flagship-section.section-dark {
    background: var(--bg-dark) !important;
    color: white !important;
}

.flagship-section.section-dark .flagship-title {
    color: white !important;
}

.flagship-section.section-dark .flagship-description {
    color: rgba(255,255,255,0.8) !important;
}

.flagship-section.section-dark .feature-highlight {
    background: rgba(255, 107, 0, 0.1) !important;
}

.flagship-section.section-dark .feature-text strong {
    color: white !important;
}

.flagship-section.section-dark .feature-text span {
    color: rgba(255,255,255,0.7) !important;
}

/* Light Theme Overrides for Flagship */
.flagship-section:not(.section-dark) {
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
}

.flagship-section:not(.section-dark) .flagship-title {
    color: var(--text-dark) !important;
}

.flagship-section:not(.section-dark) .flagship-description {
    color: var(--text-light) !important;
}

.flagship-section:not(.section-dark) .feature-text strong {
    color: var(--text-dark) !important;
}

.flagship-section:not(.section-dark) .feature-text span {
    color: var(--text-light) !important;
}

.flagship-section:not(.section-dark) .showcase-content h3 {
    color: var(--text-dark) !important;
}

.flagship-section:not(.section-dark) .showcase-content p {
    color: var(--text-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flagship-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }
    
    .flagship-title {
        font-size: 2.5rem;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .flagship-image-container {
        transform: none;
    }
    
    .performance-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
}

/* === TURBOAERO SPECIFIC STYLING === */
.turbo-vision {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    min-height: 100vh;
}

.turbo-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.turbo-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: stretch;
}

.turbo-main-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.turbo-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.artistic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 3rem 2rem 2rem;
    color: white;
    text-align: center;
}

.overlay-text {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.overlay-subtext {
    font-size: 1rem;
    opacity: 0.8;
}

.turbo-features-panel {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.panel-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-orange);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.feature-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Features Showcase Addition */
.features-showcase {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.showcase-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.performance-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.highlight-stat .stat-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.highlight-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.highlight-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.feature-cta {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.cta-text {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mini-cta {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.mini-cta:hover {
    background: #FF8533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Innovation Section */
.turbo-innovation {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    color: var(--text-dark) !important;
}

.turbo-innovation .flagship-title {
    color: var(--text-dark) !important;
}

.turbo-innovation .flagship-description {
    color: var(--text-light) !important;
}

.innovation-image-stack {
    position: relative;
    height: 500px;
}

.stack-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stack-image.primary {
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    z-index: 2;
}

.stack-image.secondary {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 280px;
    z-index: 1;
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innovation-badge {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translateY(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
    z-index: 3;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.impact-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.metric-visual {
    position: relative;
}

.metric-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.metric-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.metric-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Artistry Section */
.turbo-artistry {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.artistry-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.art-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.art-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 15px;
    flex-shrink: 0;
}

.art-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.art-text strong {
    color: white;
    font-size: 1.1rem;
}

.art-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.artistry-showcase {
    position: relative;
    height: 500px;
}

.showcase-main {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artistic-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--accent-orange);
    border-radius: 25px;
    opacity: 0.6;
}

.showcase-detail {
    position: absolute;
    bottom: 0;
    right: -2rem;
    width: 200px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Technical Section */
.turbo-technical {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%) !important;
    color: var(--text-dark) !important;
}

.turbo-technical .flagship-title {
    color: var(--text-dark) !important;
}

.turbo-technical .flagship-description {
    color: var(--text-light) !important;
}

.technical-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-visual-section {
    position: relative;
}

.tech-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.tech-main-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.tech-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tech-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.point-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
}

.point-label {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.tech-specs-panel {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.specs-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.premium-spec {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.spec-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 15px;
    flex-shrink: 0;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spec-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.spec-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive Design for TurboAero */
@media (max-width: 768px) {
    .turbo-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .turbo-hero-image {
        height: 400px;
    }
    
    .innovation-image-stack {
        height: 400px;
    }
    
    .technical-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .artistry-showcase {
        height: 400px;
    }
    
    .showcase-detail {
        position: static;
        width: 100%;
        height: 120px;
        margin-top: 1rem;
        right: 0;
    }
}

/* === WHATSAPP SPECIFIC STYLING === */
/* WhatsApp Contact Button */
.contact-button[href*="wa.me"],
.contact-button[href*="whatsapp"],
a[href*="wa.me"].contact-button,
a[href*="whatsapp"].contact-button {
    background: var(--whatsapp-green) !important;
    color: white !important;
    border: 2px solid var(--whatsapp-green) !important;
}

.contact-button[href*="wa.me"]:hover,
.contact-button[href*="whatsapp"]:hover,
a[href*="wa.me"].contact-button:hover,
a[href*="whatsapp"].contact-button:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* WhatsApp CTA Buttons */
.cta-button[href*="wa.me"],
.cta-button[href*="whatsapp"],
a[href*="wa.me"].cta-button,
a[href*="whatsapp"].cta-button {
    background: var(--whatsapp-green) !important;
    color: white !important;
    border: 2px solid var(--whatsapp-green) !important;
}

.cta-button[href*="wa.me"]:hover,
.cta-button[href*="whatsapp"]:hover,
a[href*="wa.me"].cta-button:hover,
a[href*="whatsapp"].cta-button:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* WhatsApp Icons */
.fa-whatsapp {
    color: var(--whatsapp-green) !important;
}

/* WhatsApp Contact Icon in Contact Cards */
.contact-icon .fa-whatsapp {
    color: var(--whatsapp-green) !important;
    font-size: 3rem !important;
}

/* === MODERN TIMELINE DESIGN === */
.modern-timeline {
    position: relative;
    padding: 3rem 0;
    margin: 2rem 0;
}

.timeline-road {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-orange));
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.journey-milestone {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.journey-milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-milestone:nth-child(even) .milestone-content {
    text-align: right;
    padding-right: 3rem;
    padding-left: 0;
}

.journey-milestone:nth-child(odd) .milestone-content {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
}

.milestone-marker {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.milestone-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.milestone-icon i {
    font-size: 2rem;
    color: white;
}

.milestone-content {
    flex: 1;
    max-width: 400px;
    background: var(--bg-dark-medium);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.milestone-year {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.milestone-content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.milestone-content p {
    color: var(--text-white-soft);
    line-height: 1.6;
    margin: 0;
}

.journey-milestone.future .milestone-icon {
    background: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.journey-milestone.future .milestone-icon:hover {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.journey-milestone.future .milestone-year {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
    .timeline-road {
        left: 40px;
    }
    
    .journey-milestone,
    .journey-milestone:nth-child(even) {
        flex-direction: row;
        margin-left: 0;
    }
    
    .milestone-content,
    .journey-milestone:nth-child(even) .milestone-content {
        text-align: left;
        padding-left: 2rem;
        padding-right: 1rem;
        margin-left: 1rem;
    }
    
    .milestone-icon {
        width: 60px;
        height: 60px;
        margin-left: 10px;
    }
    
    .milestone-icon i {
        font-size: 1.5rem;
    }
}