/* ===============================================
   The King of Marketing Agency - Futuristic Styles
   Electric Blues, Cyber Purples, Neon Effects
   =============================================== */

/* ============ CSS Variables ============ */
:root {
    /* Color Palette */
    --color-dark-bg: #0a0e27;
    --color-darker-bg: #050814;
    --color-electric-blue: #00d4ff;
    --color-cyber-purple: #b026ff;
    --color-neon-pink: #ff00ff;
    --color-neon-cyan: #00ffff;
    --color-neon-green: #39ff14;
    --color-deep-purple: #1a0033;
    --color-blue-dark: #0f1729;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-electric-blue), var(--color-cyber-purple));
    --gradient-secondary: linear-gradient(135deg, var(--color-cyber-purple), var(--color-neon-pink));
    --gradient-neon: linear-gradient(135deg, var(--color-neon-cyan), var(--color-electric-blue), var(--color-cyber-purple));
    --gradient-dark: linear-gradient(180deg, var(--color-darker-bg), var(--color-dark-bg));
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0aec0;
    --color-text-muted: #718096;
    
    /* Effects */
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 20px rgba(176, 38, 255, 0.5), 0 0 40px rgba(176, 38, 255, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    
    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-darker-bg);
    color: var(--color-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--color-electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    box-shadow: var(--glow-blue);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-electric-blue);
    font-size: 24px;
    cursor: pointer;
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-electric-blue);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-cyber-purple);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-neon-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.crown-icon {
    font-size: 80px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 20px;
}

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

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-highlight {
    display: block;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 6px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(176, 38, 255, 0.8)); }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-electric-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 80px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-electric-blue);
    border: 2px solid var(--color-electric-blue);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--color-cyber-purple);
    color: var(--color-cyber-purple);
    box-shadow: var(--glow-purple);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-electric-blue);
    border-radius: 20px;
    position: relative;
    box-shadow: var(--glow-blue);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--color-electric-blue);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title .title-accent {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-electric-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title .title-main {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============ Services Section ============ */
.services {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: rgba(15, 23, 41, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-electric-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.bot-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--glow-blue);
    transition: all 0.4s ease;
}

.service-card:hover .bot-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.service-card[data-bot="short-video"] .bot-icon,
.service-card[data-bot="email"] .bot-icon {
    background: var(--gradient-secondary);
    box-shadow: var(--glow-purple);
}

.service-card[data-bot="short-video"]:hover .bot-icon,
.service-card[data-bot="email"]:hover .bot-icon {
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.8);
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.card-description {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-features li {
    padding: 10px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features i {
    color: var(--color-electric-blue);
    font-size: 14px;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-blue);
    z-index: 1;
}

/* Bot CTA Button */
.bot-cta-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-blue);
    position: relative;
    z-index: 1;
}

.bot-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5);
}

.bot-cta-btn:active {
    transform: translateY(-1px);
}

/* ============ SEO Bot Modal ============ */
.bot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

.bot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.bot-modal-content {
    background: rgba(15, 23, 41, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 212, 255, 0.4);
    animation: modalSlideUp 0.4s ease;
}

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

.bot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(10, 14, 39, 0.8);
}

.bot-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.bot-modal-header h3 i {
    color: var(--color-electric-blue);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.bot-modal-close {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--color-electric-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.bot-modal-close:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--color-electric-blue);
    transform: rotate(90deg);
    box-shadow: var(--glow-blue);
}

.bot-modal-body {
    padding: 0;
    overflow: hidden;
}

.bot-modal-body iframe {
    display: block;
    width: 100%;
    height: 700px;
}

/* Responsive Modal */
@media (max-width: 968px) {
    .bot-modal-content {
        max-height: 95vh;
        margin: 10px;
    }
    
    .bot-modal-header {
        padding: 15px 20px;
    }
    
    .bot-modal-header h3 {
        font-size: 20px;
    }
    
    .bot-modal-body iframe {
        height: 600px;
    }
}

@media (max-width: 640px) {
    .bot-modal-body iframe {
        height: 500px;
    }
}

/* ============ Benefits Section ============ */
.benefits {
    padding: var(--section-padding);
    background: var(--color-darker-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(15, 23, 41, 0.4);
    border: 1px solid rgba(176, 38, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.benefit-card:hover::before {
    width: 400px;
    height: 400px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyber-purple);
    box-shadow: 0 15px 40px rgba(176, 38, 255, 0.3);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: var(--glow-purple);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotateZ(360deg);
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============ How It Works Section ============ */
.how-it-works {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-electric-blue), var(--color-cyber-purple), var(--color-neon-pink));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    border: 4px solid var(--color-darker-bg);
}

.timeline-content {
    width: calc(50% - 60px);
    background: rgba(15, 23, 41, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--color-electric-blue);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--glow-blue);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.timeline-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.timeline-features li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 20px;
}

.timeline-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-electric-blue);
}

/* ============ Contact Section ============ */
.contact {
    padding: var(--section-padding);
    background: var(--color-darker-bg);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-right: 40px;
}

.crown-icon-large {
    font-size: 100px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    margin-bottom: 30px;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info .lead {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 23, 41, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-stat:hover {
    border-color: var(--color-electric-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-electric-blue);
}

.stat-text {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
}

.contact-benefit i {
    color: var(--color-neon-green);
    font-size: 18px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: rgba(15, 23, 41, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group label i {
    color: var(--color-electric-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 16px;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-electric-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(10, 14, 39, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.btn-large {
    width: 100%;
    padding: 18px 36px;
    font-size: 18px;
    justify-content: center;
    margin-bottom: 16px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--color-neon-green);
}

.form-success {
    background: rgba(15, 23, 41, 0.6);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.success-icon {
    font-size: 80px;
    color: var(--color-neon-green);
    margin-bottom: 20px;
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-neon-green);
}

.form-success p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============ Footer ============ */
.footer {
    background: var(--color-darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-electric-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

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

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--color-electric-blue);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-electric-blue);
}

/* ============ Mobile Menu Styles ============ */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 18px;
    }
    
    .nav-cta {
        width: 80%;
        margin: 20px auto;
        text-align: center;
        justify-content: center;
    }
}

/* ============ Responsive Design ============ */
@media (max-width: 1200px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-marker {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 120px);
        margin-left: 120px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .title-main {
        font-size: 36px;
    }
    
    .title-highlight {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title .title-main {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-info h2 {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .title-main {
        font-size: 28px;
    }
    
    .title-highlight {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .section-title .title-main {
        font-size: 28px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .marker-inner {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        padding: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

.service-card,
.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* ============ Additional Visual Enhancements ============ */

/* Glowing text effect for headings */
.section-title .title-main {
    position: relative;
    display: inline-block;
}

/* Animated gradient background for cards on hover */
@keyframes cardShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neon border animation */
@keyframes neonBorder {
    0%, 100% {
        border-color: var(--color-electric-blue);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    25% {
        border-color: var(--color-cyber-purple);
        box-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
    }
    50% {
        border-color: var(--color-neon-pink);
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }
    75% {
        border-color: var(--color-neon-cyan);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
}

/* Loading animation for bots */
@keyframes botPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(176, 38, 255, 0.5);
    }
}

.bot-icon {
    animation: botPulse 3s ease-in-out infinite;
}

/* Smooth reveal for timeline items */
.timeline-item {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cyber scan line effect */
@keyframes scanLine {
    0% {
        top: 0%;
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        top: 100%;
        opacity: 0.1;
    }
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-electric-blue), transparent);
    animation: scanLine 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Text shadow glow on hover for links */
.nav-links a,
.footer-column ul li a {
    transition: all 0.3s ease, text-shadow 0.3s ease;
}

/* Button ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Status indicator animation */
@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card-badge {
    animation: statusBlink 2s ease-in-out infinite;
}

/* Holographic effect on service cards */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 212, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: holoShine 3s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes holoShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Energy burst effect on hover */
@keyframes energyBurst {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Improve form focus states */
.form-group input:focus,
.form-group textarea:focus {
    animation: inputGlow 0.5s ease;
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}