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

:root {
    /* Pastel Color Palette */
    --pastel-saffron: #F7D9C4;
    --soft-denim: #A9C1DB;
    --muted-lavender: #D1CFE2;
    --powder-teal: #A3D5D3;
    --frosted-lilac: #D3CCE3;
    --soft-cream: #FAF7F2;
    --warm-white: #FDFCFB;
    --soft-gray: #9B9B9B;
    
    /* Enhanced Text Colors for Better Contrast */
    --deep-navy: #2D3748;
    --soft-charcoal: #4A4A4A;
    --dusty-purple: #6A5D7B;
    --deep-indigo: #3F3D56;
    --dusty-violet: #625B71;
    --rich-teal: #2D5A57;
    
    /* About Section Colors */
    --dusty-peach: #F5D0C5;
    --slate-lavender: #B0A8BA;
    --pale-rust: #D7B49E;
    --soft-pollen-green: #C5D5CB;
    --powder-slate: #C4C3D0;
    --deep-slate: #403F4C;
    --medium-slate: #5C5470;
    
    /* Features Section Colors */
    --moss-mint: #B7D3A8;
    --fog-blue: #D2DBED;
    --clay-blush: #EACFC7;
    --lilac-dust: #D7CCE2;
    --muted-terracotta: #D6A77A;
    --text-slate: #4B4453;
    
    /* Services Section Colors */
    --olive-pastel: #C9D8A1;
    --smokey-apricot: #F2C6B4;
    --blue-quartz: #B6C4D2;
    --lilac-rose: #C5A8C5;
    --dusty-pearl: #DCD6F7;
    --deep-text: #5A5470;
    --charcoal-text: #4A474A;
    
    /* Contact Section Colors */
    --pastel-coral-dust: #E7BFB1;
    --powder-iris: #CDC2E8;
    --faded-turquoise: #C1E8E3;
    --muted-slate-blue: #B5B9D2;
    --contact-text: #4A4554;
    --contact-accent: #6B5B73;
    
    /* Footer Pastel Colors */
    --pastel-cement-blue: #C3DCE3;
    --ash-rose: #D6B5B0;
    --soft-moss-green: #D0E8C0;
    --footer-text: #605F70;
    --footer-text-light: #8B89A3;

    /* Fonts */
    --font-brand: 'Quicksand', sans-serif;
    --font-nav: 'Manrope', sans-serif;
    --font-hero: 'Orbitron', monospace;
    
    /* Navbar Heights */
    --navbar-height: 80px;
    --navbar-height-scrolled: 60px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Custom Cursor */
* {
    cursor: auto;
}

body {
    font-family: var(--font-nav);
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-white) 100%);
    color: var(--soft-charcoal);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Cursor Styles - Desktop only */
@media (hover: hover) and (pointer: fine) {
    .no-cursor,
    .no-cursor * {
        cursor: none !important;
    }

    .cursor {
        position: fixed;
        width: 20px;
        height: 20px;
        background: transparent;
        border: none;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        opacity: 0;
        will-change: transform, opacity;
        transition: opacity 0.2s ease;
    }

    .cursor::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        background: conic-gradient(from 0deg, var(--soft-denim), var(--powder-teal), var(--frosted-lilac), var(--pastel-saffron), var(--soft-denim));
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: cursorSpin 3s linear infinite;
        transition: all 0.1s ease;
    }

    .cursor::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background: var(--warm-white);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.1s ease;
        box-shadow: 0 0 8px rgba(169, 193, 219, 0.4);
    }

    .cursor.active {
        opacity: 1;
    }

    .cursor.hover {
        animation: cursorHoverPulse 0.8s ease-in-out infinite;
    }

    .cursor.hover::before {
        width: 24px;
        height: 24px;
        animation: cursorSpin 1.5s linear infinite, cursorHoverExpand 0.8s ease-in-out infinite;
        box-shadow: 0 0 20px rgba(211, 204, 227, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .cursor.hover::after {
        width: 6px;
        height: 6px;
        background: var(--frosted-lilac);
        box-shadow: 0 0 15px rgba(211, 204, 227, 0.8);
    }

    @keyframes cursorSpin {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

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

    @keyframes cursorHoverExpand {
        0%, 100% { 
            width: 24px; 
            height: 24px; 
            box-shadow: 0 0 20px rgba(211, 204, 227, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
        }
        50% { 
            width: 28px; 
            height: 28px; 
            box-shadow: 0 0 30px rgba(211, 204, 227, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.5);
        }
    }
}

/* Hide default cursor on interactive elements */
a, button, .hamburger, .nav-link {
    cursor: none;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(163, 213, 211, 0.4);
    z-index: 1000;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 32px rgba(163, 213, 211, 0.2);
    opacity: 0;
    transform: translateY(-100%);
    animation: navbarSlideIn 1s ease 0.5s forwards;
}

@keyframes navbarSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    height: var(--navbar-height-scrolled);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(163, 213, 211, 0.6);
    box-shadow: 0 12px 40px rgba(163, 213, 211, 0.3);
}

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

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-svg {
    width: 40px;
    height: 40px;
    transition: all var(--transition-medium);
    filter: drop-shadow(0 0 10px rgba(163, 213, 211, 0.6));
}

.navbar.scrolled .logo-svg {
    width: 32px;
    height: 32px;
}

/* SVG Animations */
.logo-svg .circuit-trace {
    animation: pulseTrace 2s ease-in-out infinite;
}

.logo-svg .rocket-trail {
    animation: rocketLaunch 3s ease-in-out infinite;
}

.logo-svg .controller-body {
    animation: controllerGlow 2s ease-in-out infinite alternate;
}

.logo-svg .button-left,
.logo-svg .button-right {
    animation: buttonBlink 1.5s ease-in-out infinite alternate;
}

.logo-svg .flames {
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes pulseTrace {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes rocketLaunch {
    0% { stroke-dasharray: 0 100; }
    50% { stroke-dasharray: 50 50; }
    100% { stroke-dasharray: 100 0; }
}

@keyframes controllerGlow {
    0% { filter: drop-shadow(0 0 5px var(--powder-teal)); }
    100% { filter: drop-shadow(0 0 15px var(--frosted-lilac)); }
}

@keyframes buttonBlink {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes flameFlicker {
    0% { opacity: 0.8; stroke-width: 1.5; }
    100% { opacity: 1; stroke-width: 2; }
}

/* Brand Text with Soft Shimmer Effect */
.brand-text {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--dusty-purple), var(--rich-teal), var(--deep-indigo));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(163, 213, 211, 0.4));
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-medium);
}

.navbar.scrolled .brand-text {
    font-size: 1.2rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitchText {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-2px); }
    94% { transform: translateX(2px); }
    96% { transform: translateX(-1px); }
    98% { transform: translateX(1px); }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInNav 0.6s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: var(--soft-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all var(--transition-medium);
    border-radius: 8px;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dusty-purple), var(--rich-teal));
    transition: all var(--transition-medium);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--dusty-purple);
    transform: translateY(-2px);
    background: rgba(163, 213, 211, 0.15);
    box-shadow: 0 4px 15px rgba(163, 213, 211, 0.3);
}

.nav-link:hover::before {
    width: 100%;
}

/* Enhanced hover effects and animations */
.nav-link.glitch-hover {
    animation: textShimmer 0.6s ease;
}

@keyframes textShimmer {
    0%, 100% { 
        transform: translateY(-2px);
        color: var(--soft-denim);
        filter: drop-shadow(0 2px 8px rgba(169, 193, 219, 0.4));
    }
    50% { 
        transform: translateY(-4px);
        color: var(--frosted-lilac);
        filter: drop-shadow(0 4px 12px rgba(211, 204, 227, 0.6));
    }
}

/* Ripple effect */
.nav-link {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: radial-gradient(circle, rgba(163, 213, 211, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Active nav link styles */
.nav-link.active {
    color: var(--soft-denim);
    filter: drop-shadow(0 0 15px rgba(169, 193, 219, 0.6));
}

.nav-link.active::before {
    width: 100%;
    background: var(--soft-denim);
}

/* Logo boost animation */
.logo-svg.logo-boost {
    animation: logoBoost 1s ease;
}

@keyframes logoBoost {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(5deg); }
    50% { transform: scale(1.1) rotate(-3deg); }
    75% { transform: scale(1.15) rotate(2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.logo-svg.logo-boost .flames {
    animation: flameBoost 1s ease;
}

@keyframes flameBoost {
    0%, 100% { 
        opacity: 0.8; 
        stroke-width: 1.5; 
        filter: drop-shadow(0 0 5px var(--powder-teal));
    }
    50% { 
        opacity: 1; 
        stroke-width: 3; 
        filter: drop-shadow(0 0 15px var(--frosted-lilac));
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.bar {
    width: 100%;
    height: 3px;
    background: var(--soft-denim);
    border-radius: 2px;
    transition: all var(--transition-medium);
    box-shadow: 0 0 10px rgba(169, 193, 219, 0.4);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(250, 247, 242, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right var(--transition-slow);
        border-left: 1px solid rgba(169, 193, 219, 0.3);
        box-shadow: -10px 0 30px rgba(163, 213, 211, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateX(50px);
    }
    
    .nav-menu.active .nav-item {
        animation: slideInMobile 0.5s ease forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInMobile {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .logo-svg {
        width: 32px;
        height: 32px;
    }
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-white) 50%, var(--muted-lavender) 100%);
    position: relative;
    overflow: hidden;
}

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

.bg-layer {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* Tech Tiles Animations */
.tech-tiles .tile-1 { animation: floatTile 6s ease-in-out infinite; }
.tech-tiles .tile-2 { animation: floatTile 7s ease-in-out infinite 0.5s; }
.tech-tiles .tile-3 { animation: floatTile 8s ease-in-out infinite 1s; }
.tech-tiles .tile-4 { animation: floatTile 6.5s ease-in-out infinite 1.5s; }
.tech-tiles .tile-5 { animation: floatTile 7.5s ease-in-out infinite 2s; }
.tech-tiles .tile-6 { animation: floatTile 9s ease-in-out infinite 2.5s; }

@keyframes floatTile {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Circuit Stars Animations */
.circuit-stars .star-1 { animation: starPulse 3s ease-in-out infinite; }
.circuit-stars .star-2 { animation: starPulse 4s ease-in-out infinite 0.5s; }
.circuit-stars .star-3 { animation: starPulse 3.5s ease-in-out infinite 1s; }
.circuit-stars .star-4 { animation: starPulse 4.5s ease-in-out infinite 1.5s; }

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

/* Floating Polygons */
.floating-polygons .poly-1 { animation: polyFloat 8s ease-in-out infinite; }
.floating-polygons .poly-2 { animation: polyFloat 10s ease-in-out infinite 1s; }
.floating-polygons .poly-3 { animation: polyFloat 9s ease-in-out infinite 2s; }

@keyframes polyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
}

/* Waveform Dots */
.waveforms circle {
    animation: waveDot 2s ease-in-out infinite;
}

.wave-dot-1 { animation-delay: 0s; }
.wave-dot-2 { animation-delay: 0.2s; }
.wave-dot-3 { animation-delay: 0.4s; }
.wave-dot-4 { animation-delay: 0.6s; }
.wave-dot-5 { animation-delay: 0.8s; }
.wave-dot-6 { animation-delay: 1s; }
.wave-dot-7 { animation-delay: 1.2s; }
.wave-dot-8 { animation-delay: 1.4s; }
.wave-dot-9 { animation-delay: 1.6s; }
.wave-dot-10 { animation-delay: 1.8s; }

@keyframes waveDot {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-5px); opacity: 1; }
}

/* Central Launchpad */
.hero-launchpad {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 2;
    opacity: 0.6;
}

.launchpad-base {
    animation: launchpadPulse 4s ease-in-out infinite;
}

.launchpad-ring-1 {
    animation: ringRotate 20s linear infinite;
    transform-origin: center;
}

.launchpad-ring-2 {
    animation: ringRotate 15s linear infinite reverse;
    transform-origin: center;
}

.launchpad-ring-3 {
    animation: ringRotate 10s linear infinite;
    transform-origin: center;
}

@keyframes launchpadPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-hero);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-indigo);
    text-shadow: 0 2px 10px rgba(169, 193, 219, 0.2);
    background: linear-gradient(45deg, var(--deep-indigo), var(--dusty-violet), var(--rich-teal));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 1;
    visibility: visible;
}

.hero-subtitle {
    font-family: var(--font-nav);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dusty-violet);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
}

/* CTA Button */
.hero-cta {
    position: relative;
}

.cta-button {
    font-family: var(--font-nav);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pastel-saffron) 0%, var(--muted-lavender) 100%);
    border: none;
    border-radius: 50px;
    color: var(--deep-navy);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: none;
    box-shadow: 0 8px 25px rgba(247, 217, 196, 0.4);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(247, 217, 196, 0.6);
    background: linear-gradient(135deg, var(--pastel-saffron) 0%, var(--powder-teal) 100%);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover .cta-ripple {
    width: 300px;
    height: 300px;
}

/* Main Content Styles */
.main-content {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* About Us Section */
.about-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dusty-peach) 0%, var(--soft-pollen-green) 50%, var(--powder-slate) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* About Background Pattern */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.about-bg-pattern {
    width: 100%;
    height: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Section Title */
.about-title {
    font-family: var(--font-hero);
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-slate);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(64, 63, 76, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Content Card */
.about-content-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.2s;
}

.about-content-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--medium-slate);
    text-align: center;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

/* Icons Grid */
.about-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-icon-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: none;
}

.about-icon-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-icon-item:nth-child(1) { transition-delay: 0.3s; }
.about-icon-item:nth-child(2) { transition-delay: 0.4s; }
.about-icon-item:nth-child(3) { transition-delay: 0.5s; }

.about-icon-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

/* Icon SVG Styles */
.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.about-icon-item:hover .about-icon {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Launch Icon Animation */
.launch-icon .rocket-body {
    animation: rocketFloat 3s ease-in-out infinite;
}

.launch-icon .flame {
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes flameFlicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Innovation Icon Animation */
.innovation-icon .brain-waves {
    animation: brainPulse 2s ease-in-out infinite;
}

.innovation-icon .chip-lines {
    animation: chipGlow 1.5s ease-in-out infinite alternate;
}

@keyframes brainPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes chipGlow {
    0% { stroke-width: 1; opacity: 0.7; }
    100% { stroke-width: 2; opacity: 1; }
}

/* Gaming Icon Animation */
.gaming-icon .controller-body {
    animation: controllerGlow 2.5s ease-in-out infinite alternate;
}

.gaming-icon .button {
    animation: buttonPulse 1.2s ease-in-out infinite;
}

.gaming-icon .button:nth-child(odd) {
    animation-delay: 0.3s;
}

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

/* Icon Titles */
.about-icon-title {
    font-family: var(--font-brand);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-slate);
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-icon-description {
    font-size: 0.95rem;
    color: var(--medium-slate);
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Features Section */
.features-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--moss-mint) 0%, var(--fog-blue) 50%, var(--lilac-dust) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Features Background Pattern */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.features-bg-pattern {
    width: 100%;
    height: 100%;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Features Title */
.features-title {
    font-family: var(--font-hero);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-slate);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--moss-mint), var(--muted-terracotta));
    border-radius: 2px;
    transition: width 0.8s ease 0.5s;
}

.features-title.animate-in::after {
    width: 120px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Feature Card */
.feature-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.feature-card:nth-child(1) { transition-delay: 0.2s; }
.feature-card:nth-child(2) { transition-delay: 0.3s; }
.feature-card:nth-child(3) { transition-delay: 0.4s; }
.feature-card:nth-child(4) { transition-delay: 0.5s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--moss-mint), var(--muted-terracotta), var(--fog-blue));
    border-radius: 18px 18px 0 0;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Deployment Icon Animation */
.deployment-icon .platform-circles {
    animation: platformPulse 2s ease-in-out infinite;
}

.deployment-icon .click-effect {
    animation: clickRipple 1.5s ease-in-out infinite;
}

@keyframes platformPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes clickRipple {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1.5); }
}

/* Feedback Icon Animation */
.feedback-icon .signal-waves {
    animation: signalPulse 1.8s ease-in-out infinite;
}

.feedback-icon .data-stream {
    animation: dataFlow 2.5s linear infinite;
}

@keyframes signalPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes dataFlow {
    0% { stroke-dasharray: 0 100; opacity: 0.7; }
    50% { stroke-dasharray: 50 50; opacity: 1; }
    100% { stroke-dasharray: 100 0; opacity: 0.7; }
}

/* AI Icon Animation */
.ai-icon .brain-synapses {
    animation: synapseFlash 2.2s ease-in-out infinite;
}

.ai-icon .optimization-gears {
    animation: gearRotate 3s linear infinite;
}

@keyframes synapseFlash {
    0%, 90%, 100% { opacity: 0.6; }
    45% { opacity: 1; }
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Service Tag */
.service-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--smokey-apricot), var(--lilac-rose));
    color: var(--deep-text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Service Content */
.service-title {
    font-family: var(--font-brand);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-text);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-description {
    font-size: 1rem;
    color: var(--charcoal-text);
    text-align: center;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Float Animation */
.service-card.float-animation {
    animation: serviceFloat 4s ease-in-out infinite;
}

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Glow Effect */
.service-card.glow {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--olive-pastel) 0%, var(--smokey-apricot) 50%, var(--blue-quartz) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Services Background Pattern */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.services-bg-pattern {
    width: 100%;
    height: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Services Title */
.services-title {
    font-family: var(--font-hero);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-text);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    text-shadow: 0 2px 8px rgba(90, 84, 112, 0.3);
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

/* Service Icon */
.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--pastel-coral-dust) 0%, var(--faded-turquoise) 50%, var(--powder-iris) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    display: block;
    visibility: visible;
}

/* Contact Background Pattern */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.contact-bg-pattern {
    width: 100%;
    height: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Contact Title */
.contact-title {
    font-family: var(--font-hero);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--contact-text);
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    text-shadow: 0 2px 8px rgba(74, 69, 84, 0.2);
}

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

.contact-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pastel-coral-dust), var(--muted-slate-blue));
    border-radius: 2px;
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.contact-title.animate-in::before {
    opacity: 1;
    width: 120px;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Side */
.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.2s;
}

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

.contact-tagline {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--contact-accent);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Contact Details */
.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: none;
}

.contact-detail-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--powder-iris), var(--faded-turquoise));
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(205, 194, 232, 0.4);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--contact-text);
}

.contact-detail-text {
    font-size: 1.1rem;
    color: var(--contact-text);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Social Links */
.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    color: var(--contact-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--muted-slate-blue), var(--pastel-coral-dust));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: none;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(181, 185, 210, 0.4);
    background: linear-gradient(135deg, var(--powder-iris), var(--faded-turquoise));
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--contact-text);
    transition: all 0.3s ease;
}

.social-link:hover svg {
    fill: var(--contact-accent);
}

/* Contact Form Side */
.contact-form-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.4s;
}

.contact-form-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--faded-turquoise), var(--powder-iris), var(--pastel-coral-dust));
    border-radius: 20px 20px 0 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 600;
    color: var(--contact-accent);
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(181, 185, 210, 0.3);
    border-radius: 12px;
    font-family: var(--font-nav);
    font-size: 1rem;
    color: var(--contact-text);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--powder-iris);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(205, 194, 232, 0.3);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

/* Form Validation */
.form-error {
    color: #E74C3C;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-error.show {
    opacity: 1;
    transform: translateY(0);
}

.form-success {
    color: #27AE60;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-success.show {
    opacity: 1;
    transform: translateY(0);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--muted-slate-blue) 0%, var(--powder-iris) 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--contact-text);
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(181, 185, 210, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 185, 210, 0.5);
    background: linear-gradient(135deg, var(--powder-iris) 0%, var(--faded-turquoise) 100%);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button.sending {
    background: linear-gradient(135deg, var(--faded-turquoise) 0%, var(--pastel-coral-dust) 100%);
    cursor: wait;
}

/* Button Ripple Effect */
.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Button Loading State */
.button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(74, 69, 84, 0.3);
    border-top: 2px solid var(--contact-text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

.submit-button.sending .button-spinner {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Status Messages */
.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-status.show {
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    background: rgba(39, 174, 96, 0.1);
    color: #27AE60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-status.error {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Light Mode Optimizations */
@media (prefers-color-scheme: light) {
    :root {
        /* Enhanced contrast for light mode */
        --soft-charcoal: #3A3A3A;
        --dusty-purple: #5A4D6B;
        --deep-indigo: #2F2D46;
        --dusty-violet: #524B61;
        --rich-teal: #1D4A47;
    }
    
    .nav-link {
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .hero-title {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .hero-subtitle {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
        color: var(--rich-teal);
    }
    
    .section h2 {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    }
    
    .section p {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
        color: var(--deep-indigo);
    }
}

/* Dark Mode Fallback */
@media (prefers-color-scheme: dark) {
    .hero-content {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
    }
}

/* Mobile responsive adjustments for contact section */
@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-tagline {
        font-size: 1.8rem;
    }
    
    .contact-detail-item {
        padding: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.5rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-detail-item {
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   FOOTER SECTION
   ============================================= */

/* Footer Base Styles */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--pastel-cement-blue) 0%, var(--ash-rose) 50%, var(--soft-moss-green) 100%);
    padding: 4rem 0 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Top Wave */
.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-wave .wave-path {
    animation: waveFloat 6s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% { d: path("M0,20 Q150,10 300,20 T600,20 T900,20 T1200,20 T1500,20 V60 H0 Z"); }
    50% { d: path("M0,25 Q150,15 300,25 T600,25 T900,25 T1200,25 T1500,25 V60 H0 Z"); }
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

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

/* Left Side - Branding */
.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo-svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(163, 213, 211, 0.3));
}

.footer-logo-svg:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(163, 213, 211, 0.5));
}

/* Logo Animations */
.footer-logo-svg .footer-circuit-trace {
    animation: footerPulseTrace 3s ease-in-out infinite;
}

.footer-logo-svg .footer-rocket-trail {
    animation: footerRocketLaunch 4s ease-in-out infinite;
}

.footer-logo-svg .footer-controller-body {
    animation: footerControllerFloat 2.5s ease-in-out infinite alternate;
}

.footer-logo-svg .footer-flames {
    animation: footerFlameFlicker 1.2s ease-in-out infinite alternate;
}

@keyframes footerPulseTrace {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes footerRocketLaunch {
    0% { stroke-dasharray: 0 100; opacity: 0.7; }
    50% { stroke-dasharray: 50 50; opacity: 1; }
    100% { stroke-dasharray: 100 0; opacity: 0.7; }
}

@keyframes footerControllerFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-3px); }
}

@keyframes footerFlameFlicker {
    0% { opacity: 0.8; stroke-width: 1.5; }
    100% { opacity: 1; stroke-width: 2.2; }
}

.footer-brand-name {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--footer-text), var(--pastel-cement-blue), var(--ash-rose));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerGradientShift 4s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes footerGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--footer-text);
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

.footer-column h4 {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-link {
    color: var(--footer-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ash-rose), var(--soft-moss-green));
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--footer-text);
    transform: translateX(3px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Social Links */
.footer-social {
    margin-top: 1rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ash-rose), var(--soft-moss-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.footer-social-link:hover::before {
    opacity: 0.7;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-social-link:hover svg {
    fill: white;
    transform: rotate(5deg);
}

/* Bottom Strip */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--footer-text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: none;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.clicked {
    animation: backToTopPulse 0.6s ease;
}

@keyframes backToTopPulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.2); }
    100% { transform: translateY(-2px) scale(1); }
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-logo-svg {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}
