:root {
    --primary: #28f3e1;
    --primary-dark: #1dd4c4;
    --primary-light: #5ff5e8;
    --secondary: #00d4ff;
    --accent: #b388ff;
    --dark: #0a0e1a;
    --dark-blue: #0d1424;
    --light: #ffffff;
    --gray: #8b9dc3;
    --success: #10B981;
    
    --gradient-1: linear-gradient(135deg, #28f3e1 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #28f3e1 0%, #b388ff 100%);
    --gradient-3: linear-gradient(135deg, #00d4ff 0%, #b388ff 100%);
    
    --shadow-glow: 0 0 20px rgba(40, 243, 225, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(40, 243, 225, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 200px;
    height: auto;
    animation: loading-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(40, 243, 225, 0.6));
}

@keyframes loading-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

.loading-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    animation: loading-pulse 1.5s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes loading-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px var(--primary);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(40, 243, 225, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover,
.cursor-follower.hover {
    transform: scale(1.5);
    border-color: var(--primary-light);
}

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Astronaut Elements */
.astronaut-float {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
}

.astronaut-1 {
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.astronaut-2 {
    bottom: 30%;
    left: 5%;
    animation: float 6s ease-in-out infinite 1s;
}

.astronaut-3 {
    top: 60%;
    right: 15%;
    animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Hero Stars Background */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(40, 243, 225, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(40, 243, 225, 0.2), transparent);
    background-size: 200% 200%;
    animation: stars 60s linear infinite;
    pointer-events: none;
}

@keyframes stars {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(40, 243, 225, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(40, 243, 225, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(40, 243, 225, 0.8));
}

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(40, 243, 225, 0.5));
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

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

.logo-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

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

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

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

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(40, 243, 225, 0.3);
}

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

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--primary);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(40, 243, 225, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    display: block;
    color: var(--gray);
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(40, 243, 225, 0.1);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 1.5rem;
    text-shadow: 0 0 10px rgba(40, 243, 225, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(40, 243, 225, 0.1);
    border: 1px solid rgba(40, 243, 225, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 0 20px rgba(40, 243, 225, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 0 20px rgba(40, 243, 225, 0.3));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(40, 243, 225, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(40, 243, 225, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(40, 243, 225, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

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

.btn-secondary {
    background: rgba(40, 243, 225, 0.05);
    color: var(--primary);
    border: 1px solid rgba(40, 243, 225, 0.3);
}

.btn-secondary:hover {
    background: rgba(40, 243, 225, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(40, 243, 225, 0.2);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(40, 243, 225, 0.1);
    border: 1px solid rgba(40, 243, 225, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(40, 243, 225, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    border-radius: 20px;
    filter: blur(30px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(40, 243, 225, 0.1);
    border: 2px solid rgba(40, 243, 225, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-1);
    color: var(--dark);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-family: 'Space Grotesk', sans-serif;
}

.service-card > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Tech Stack Hexagon Grid */
.tech-stack-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(40, 243, 225, 0.05) 0%, transparent 70%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.tech-hexagon {
    position: relative;
    width: 180px;
    height: 200px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: rgba(40, 243, 225, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(40, 243, 225, 0.3);
    transition: all 0.3s ease;
}

.tech-hexagon:hover::before {
    background: rgba(40, 243, 225, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(40, 243, 225, 0.4), inset 0 0 20px rgba(40, 243, 225, 0.1);
    transform: translateX(-50%) scale(1.05);
}

.hexagon-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 10px rgba(40, 243, 225, 0.3);
}

.tech-category {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-hexagon:hover .tech-name {
    transform: scale(1.1);
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(40, 243, 225, 0.6);
}

.tech-hexagon:hover .tech-category {
    color: var(--primary);
}

/* Staggered animation on scroll */
.tech-hexagon[data-animate] {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.tech-hexagon[data-animate].animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tech-hexagon:nth-child(1) { transition-delay: 0.1s; }
.tech-hexagon:nth-child(2) { transition-delay: 0.2s; }
.tech-hexagon:nth-child(3) { transition-delay: 0.3s; }
.tech-hexagon:nth-child(4) { transition-delay: 0.4s; }
.tech-hexagon:nth-child(5) { transition-delay: 0.5s; }
.tech-hexagon:nth-child(6) { transition-delay: 0.6s; }
.tech-hexagon:nth-child(7) { transition-delay: 0.7s; }
.tech-hexagon:nth-child(8) { transition-delay: 0.8s; }
.tech-hexagon:nth-child(9) { transition-delay: 0.9s; }
.tech-hexagon:nth-child(10) { transition-delay: 1s; }
.tech-hexagon:nth-child(11) { transition-delay: 1.1s; }
.tech-hexagon:nth-child(12) { transition-delay: 1.2s; }

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    transform: translateX(-50%);
}

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

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

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark);
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.timeline-content p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(40, 243, 225, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.btn-cta {
    background: var(--light);
    color: var(--dark);
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 60px rgba(255, 255, 255, 0.3);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 3rem;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(40, 243, 225, 0.1);
    border: 1px solid rgba(40, 243, 225, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.contact-item p {
    color: var(--gray);
}

.contact-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(40, 243, 225, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(40, 243, 225, 0.2);
}

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

.form-group select {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(40, 243, 225, 0.2);
    padding: 4rem 0 2rem;
}

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

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(40, 243, 225, 0.5));
}

.footer-col p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--light);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(40, 243, 225, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 243, 225, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 8px;
    box-shadow: var(--shadow-glow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    font-weight: 600;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .orbit-container {
        width: 400px;
        height: 400px;
    }
    
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 280px; height: 280px; }
    .orbit-3 { width: 380px; height: 380px; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-hexagon {
        width: 140px;
        height: 160px;
    }
    
    .tech-name {
        font-size: 0.95rem;
    }
    
    .tech-category {
        font-size: 0.7rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0;
    }
}