/* ===== CSS Variables & Reset ===== */
:root {
    /* Accent Color - Electric Blue */
    --accent: #2979FF;
    --accent-light: #82B1FF;
    --accent-dark: #1565C0;
    --accent-glow: rgba(41, 121, 255, 0.35);
    --accent-subtle: rgba(41, 121, 255, 0.08);
    --accent-border: rgba(41, 121, 255, 0.3);

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #2979FF 0%, #82B1FF 100%);
    --secondary-gradient: linear-gradient(135deg, #ffffff 0%, #82B1FF 100%);
    --accent-gradient: linear-gradient(135deg, #1565C0 0%, #2979FF 100%);

    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.06);

    --text-primary: #ffffff;
    --text-secondary: #9a9a9a;
    --text-muted: #5a5a5a;

    --white: #ffffff;
    --silver: #c0c0c0;
    --gray: #808080;
    --dark-gray: #2a2a2a;

    /* Glass Effects */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(41, 121, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(41, 121, 255, 0.05);
    --glow-white: rgba(255, 255, 255, 0.15);

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;

    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    /* Container & Layout */
    --container-width: 1200px;
    --section-padding: 120px 20px;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Effects */
    --blur-sm: blur(12px);
    --blur-md: blur(24px);
    --blur-lg: blur(40px);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--accent-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay for depth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Cursor spotlight */
.cursor-spotlight {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Floating particles container */
.particles-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(41, 121, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(255, 255, 255, 0.25);
}

.particle::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.12), transparent);
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    filter: brightness(1.1);
}

.logo-text {
    font-family: 'Michroma', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Shimmer effect on logo */
.logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.2), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.logo-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-glow);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.cta-button {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--accent-subtle);
    border-color: var(--accent-border);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px; /* Increased to clear the fixed navbar */
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: var(--blur-lg);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.25) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.3) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* ===== Hero Logo Showcase ===== */
.hero-logo-showcase {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroLogoEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-logo-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.2) 0%, rgba(41, 121, 255, 0.05) 40%, transparent 70%);
    animation: logoGlowPulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(41, 121, 255, 0.3));
    animation: heroLogoFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hero-logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 0 50px rgba(41, 121, 255, 0.5));
}

@keyframes heroLogoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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

/* ===== About Section Logo ===== */
.about-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-ring {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(41, 121, 255, 0.15);
    animation: aboutRingSpin 20s linear infinite;
}

.about-logo-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.about-logo-ring::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 30%;
    width: 4px;
    height: 4px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow);
}

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

.about-logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(41, 121, 255, 0.2));
    opacity: 0.6;
    transition: all 0.5s ease;
}

.about-visual:hover .about-logo-img {
    opacity: 0.85;
    filter: drop-shadow(0 0 40px rgba(41, 121, 255, 0.35));
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(30px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 25px var(--accent-glow));
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

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

.btn-primary {
    padding: 16px 40px;
    background: var(--accent-subtle);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(41, 121, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 100px;
    padding: 30px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
    margin-bottom: 8px;
    display: inline-block;
    padding: 0 2px;
    text-shadow: 0 0 25px var(--accent-glow);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes highlight {
    0%, 100% { transform: scale(1); }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px var(--accent-glow);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: var(--line-height-tight);
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

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

.service-card {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

/* Animated gradient border on cards */
.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(var(--border-angle, 0deg), rgba(41, 121, 255, 0.3), transparent 40%, transparent 60%, rgba(41, 121, 255, 0.3));
    z-index: -1;
    animation: rotateBorder 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

@keyframes rotateBorder {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: var(--accent-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(41, 121, 255, 0.15),
        0 0 40px rgba(41, 121, 255, 0.08);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card.featured {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--accent-subtle);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
}

.checkbox-label.highlight-service {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
    animation: pulse-highlight 1s ease-in-out;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 30px;
}

.service-icon svg path,
.service-icon svg rect {
    stroke: url(#gradient1) !important;
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '→';
    margin-right: 12px;
    color: var(--accent-light);
    font-weight: bold;
}

.service-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-border);
    transform: translateX(10px);
    background: var(--glass-bg-hover);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

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

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.visual-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(41, 121, 255, 0.1);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    z-index: -1;
}

.visual-card:hover .card-glow {
    opacity: 0.6;
}

.card-1 {
    top: 0;
    left: 0;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: cardFloat2 6s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: cardFloat3 6s ease-in-out infinite;
}

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

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    50% { transform: translateY(-50%) translate(-10px, 10px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateX(-50%) translate(0, 0); }
    50% { transform: translateX(-50%) translate(10px, 10px); }
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
    margin-bottom: 10px;
    text-shadow: 0 0 30px var(--accent-glow);
}

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

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--accent-border);
    transform: translateX(10px);
    background: var(--glass-bg-hover);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    filter: grayscale(0%) brightness(1);
}

.info-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-border);
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
    background: rgba(41, 121, 255, 0.03);
}

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

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

.form-group select {
    cursor: pointer;
}

/* Checkbox Group Styling */
.services-label {
    display: block;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.checkbox-label:hover {
    border-color: var(--accent-border);
    background: var(--accent-subtle);
    transform: translateX(5px);
}

/* Hide default checkbox */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox */
.checkbox-label::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Checkmark */
.checkbox-label::after {
    content: '✓';
    position: absolute;
    left: 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* When checked */
.checkbox-label input[type="checkbox"]:checked ~ span {
    color: #ffffff;
    font-weight: 600;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--accent-border);
    background: var(--accent-subtle);
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
}

.checkbox-label:has(input[type="checkbox"]:checked)::before {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label:has(input[type="checkbox"]:checked)::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label span {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

@keyframes pulse-highlight {
    0%, 100% { box-shadow: 0 0 25px var(--accent-glow); }
    50% { box-shadow: 0 0 35px rgba(41, 121, 255, 0.5); }
}

/* ===== Notification Messages ===== */
.notification-message {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 400px;
    padding: 20px 25px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-message.show {
    right: 30px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-text {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
}

.notification-success {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-success .notification-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.notification-error {
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.notification-error .notification-icon {
    background: rgba(255, 100, 100, 0.2);
    color: #ff9999;
}

@media (max-width: 480px) {
    .notification-message {
        max-width: calc(100% - 40px);
        right: -100%;
    }
    .notification-message.show {
        right: 20px;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 60px 20px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
}

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

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}