/* ============================================================== 
   ASH WEB Solutions - Luxury Dark Theme
   ============================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #6366f1;
    --accent-color: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --border-color: #2a2a2a;
    --border-light: #3a3a3a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --section-gap: 80px;
    --element-gap: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Cursor Flow Effect */
.cursor-flow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.cursor-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #7c3aed);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    pointer-events: none;
    opacity: 0.9;
    animation: cursorFloat 2s ease-out forwards;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    transform-origin: center;
}

.cursor-particle:nth-child(odd) {
    background: linear-gradient(45deg, #00d4ff, #7c3aed, #00ff88);
    animation-duration: 1.5s;
    width: 8px;
    height: 8px;
}

.cursor-particle:nth-child(3n) {
    background: linear-gradient(45deg, #7c3aed, #00ff88, #00d4ff);
    animation-duration: 2.5s;
    width: 6px;
    height: 6px;
}

.cursor-particle:nth-child(4n) {
    background: linear-gradient(45deg, #f59e0b, #00ff88, #00d4ff);
    animation-duration: 1.8s;
    width: 14px;
    height: 14px;
}

.cursor-particle:nth-child(5n) {
    background: linear-gradient(45deg, #ec4899, #00ff88, #00d4ff);
    animation-duration: 2.2s;
    width: 10px;
    height: 10px;
}

@keyframes cursorFloat {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(-50%, -50%) scale(0.8) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(360deg) translateY(-30px);
        opacity: 0;
    }
}

@keyframes sparkleFloat {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) translateY(-20px);
        opacity: 0;
    }
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, rgba(0, 212, 255, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    mix-blend-mode: screen;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Hide default cursor on interactive elements */
.nav-link:hover,
.btn-primary:hover,
.btn-secondary:hover,
.service-logo:hover,
.tool-logo:hover,
.portfolio-logo:hover,
.testimonial-card:hover,
.contact-card:hover,
.link-card:hover {
    cursor: none;
}

/* Cursor flow responsive adjustments */
@media (max-width: 768px) {
    .cursor-flow {
        display: none; /* Disable on mobile for better performance */
    }
    
    .cursor-glow {
        display: none;
    }
}

/* Cursor flow performance optimization */
@media (prefers-reduced-motion: reduce) {
    .cursor-particle {
        animation: none;
        opacity: 0;
    }
    
    .cursor-glow {
        transition: none;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    visibility: visible;
    opacity: 1;
    position: relative;
    min-height: 100vh;
}

/* Galaxy Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    z-index: -2;
    animation: galaxyFloat 20s ease-in-out infinite;
}

/* Floating Stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    z-index: -1;
    animation: starTwinkle 4s ease-in-out infinite;
}

@keyframes galaxyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Shooting Stars */
.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 50%;
    z-index: -1;
    animation: shootingStar 3s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: translateX(-100px);
}

.shooting-star:nth-child(1) {
    top: 20%;
    left: 100%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.shooting-star:nth-child(2) {
    top: 40%;
    left: 100%;
    animation-delay: 2s;
    animation-duration: 3.5s;
}

.shooting-star:nth-child(3) {
    top: 60%;
    left: 100%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.shooting-star:nth-child(4) {
    top: 80%;
    left: 100%;
    animation-delay: 6s;
    animation-duration: 4.5s;
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-200px) translateY(100px) rotate(45deg);
        opacity: 0;
    }
}

/* Rocket Launch */
.rocket {
    position: fixed;
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    border-radius: 50% 50% 0 0;
    z-index: -1;
    animation: rocketLaunch 8s ease-in-out infinite;
}

.rocket::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #ff6b6b;
}

.rocket::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 15px;
    background: linear-gradient(180deg, #ffd93d, #ff6b6b);
    border-radius: 0 0 3px 3px;
    animation: rocketFlame 0.1s ease-in-out infinite alternate;
}

@keyframes rocketLaunch {
    0% {
        bottom: -50px;
        left: 10%;
        transform: rotate(-15deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        bottom: 50%;
        left: 15%;
        transform: rotate(-10deg);
    }
    100% {
        bottom: 100%;
        left: 20%;
        transform: rotate(-5deg);
        opacity: 0;
    }
}

@keyframes rocketFlame {
    0% { height: 15px; }
    100% { height: 20px; }
}

/* Northern Lights */
.northern-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

.aurora {
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(124, 58, 237, 0.1) 25%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(0, 212, 255, 0.1) 75%,
        transparent 100%);
    animation: auroraWave 10s ease-in-out infinite;
}

.aurora:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}

.aurora:nth-child(2) {
    top: 100px;
    animation-delay: 2s;
}

.aurora:nth-child(3) {
    top: 200px;
    animation-delay: 4s;
}

@keyframes auroraWave {
    0%, 100% {
        transform: translateX(-50px) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(50px) scaleY(1.2);
        opacity: 0.6;
    }
}

/* Custom Cursor - Removed for now */

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

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

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loading-logo {
    margin-bottom: 0;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-circle {
    animation: logoSpin 2s linear infinite;
}

.logo-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: logoCheck 2s ease-in-out infinite;
}

@keyframes logoSpin {
    to { transform: rotate(360deg); }
}

@keyframes logoCheck {
    0%, 50% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 0; }
}

.loading-text {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@keyframes textGlow {
    0% { filter: brightness(1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); }
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed, #ec4899, #00d4ff);
    background-size: 200% 100%;
    border-radius: 3px;
    animation: loadingProgress 2s ease-in-out, gradientShift 3s ease-in-out infinite;
}

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

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-status {
    margin-bottom: 0;
}

.loading-message {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    animation: messagePulse 2s ease-in-out infinite;
}

@keyframes messagePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition-normal);
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid transparent;
    margin-left: 0;
}

.nav-logo a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.logo-solutions {
    color: var(--text-secondary);
}

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

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

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

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

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

.nav-cta .btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    white-space: nowrap;
}

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

.nav-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-cta .btn-primary:hover::before {
    left: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 4rem 0 2rem 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: heroGlow 8s ease-in-out infinite;
}

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

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    width: 100%;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

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

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

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

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

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

.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
}

.hero-3d {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 60%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.card-4 {
    top: 80%;
    right: 70%;
    animation-delay: 3s;
}

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

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 15px 25px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 35px 45px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 55px 65px, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 75px 85px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 95px 105px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    z-index: 1;
    animation: starTwinkle 8s ease-in-out infinite;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.about-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    background: var(--gradient-dark);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(99, 102, 241, 0.1));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    animation: elementFloat 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

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

.element:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.element:hover::before {
    left: 100%;
}

.element i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.element:hover i {
    transform: scale(1.2) rotate(10deg);
}

.element span {
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* AI - Purple */
.element-1 { 
    top: 15%; left: 15%; animation-delay: 0s; 
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
}
.element-1 i { color: #7c3aed; }
.element-1:hover { box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4); }

/* AWS - Orange */
.element-2 { 
    top: 25%; right: 15%; animation-delay: 1s; 
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}
.element-2 i { color: #f59e0b; }
.element-2:hover { box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4); }

/* Azure - Blue */
.element-3 { 
    top: 35%; left: 25%; animation-delay: 2s; 
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}
.element-3 i { color: #3b82f6; }
.element-3:hover { box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4); }

/* Google - Red */
.element-4 { 
    top: 45%; right: 25%; animation-delay: 3s; 
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}
.element-4 i { color: #ef4444; }
.element-4:hover { box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4); }

/* Automation - Green */
.element-5 { 
    top: 55%; left: 15%; animation-delay: 4s; 
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}
.element-5 i { color: #22c55e; }
.element-5:hover { box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4); }

/* Mailchimp - Pink */
.element-6 { 
    top: 65%; right: 15%; animation-delay: 5s; 
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.4);
}
.element-6 i { color: #ec4899; }
.element-6:hover { box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4); }

/* Zapier - Yellow */
.element-7 { 
    top: 75%; left: 25%; animation-delay: 6s; 
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.4);
}
.element-7 i { color: #eab308; }
.element-7:hover { box-shadow: 0 12px 35px rgba(234, 179, 8, 0.4); }

/* ChatGPT - Teal */
.element-8 { 
    top: 85%; right: 25%; animation-delay: 7s; 
    background: rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.4);
}
.element-8 i { color: #14b8a6; }
.element-8:hover { box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4); }

/* Facebook - Blue */
.element-9 { 
    top: 20%; left: 45%; animation-delay: 0.5s; 
    background: rgba(59, 89, 152, 0.15);
    border-color: rgba(59, 89, 152, 0.4);
}
.element-9 i { color: #3b5998; }
.element-9:hover { box-shadow: 0 12px 35px rgba(59, 89, 152, 0.4); }

/* Instagram - Pink */
.element-10 { 
    top: 30%; right: 45%; animation-delay: 1.5s; 
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.4);
}
.element-10 i { color: #e1306c; }
.element-10:hover { box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4); }

/* LinkedIn - Blue */
.element-11 { 
    top: 40%; left: 55%; animation-delay: 2.5s; 
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.4);
}
.element-11 i { color: #0077b5; }
.element-11:hover { box-shadow: 0 12px 35px rgba(0, 119, 181, 0.4); }

/* Twitter - Cyan */
.element-12 { 
    top: 50%; right: 55%; animation-delay: 3.5s; 
    background: rgba(29, 161, 242, 0.15);
    border-color: rgba(29, 161, 242, 0.4);
}
.element-12 i { color: #1da1f2; }
.element-12:hover { box-shadow: 0 12px 35px rgba(29, 161, 242, 0.4); }

@keyframes elementFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.05); 
        filter: brightness(1.2);
    }
    50% { 
        transform: translateY(-15px) rotate(-5deg) scale(1.1); 
        filter: brightness(1.1);
    }
    75% { 
        transform: translateY(-25px) rotate(8deg) scale(1.05); 
        filter: brightness(1.3);
    }
}

/* Services Section */
.services-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.services-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-logo {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.service-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.service-logo:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.service-logo:hover::before {
    left: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-logo:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.service-logo:hover .service-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.service-logo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.service-logo:hover h3 {
    color: var(--neon-blue);
}

.service-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-logo:hover p {
    color: var(--text-primary);
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-tech span {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--neon-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-logo:hover .service-tech span {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* Service-specific colors */
.service-logo[data-service="web-development"] .service-icon i { color: #61dafb; }
.service-logo[data-service="ai-automation"] .service-icon i { color: #10a37f; }
.service-logo[data-service="crm-systems"] .service-icon i { color: #00a1e0; }
.service-logo[data-service="mobile-apps"] .service-icon i { color: #ff6b6b; }
.service-logo[data-service="api-development"] .service-icon i { color: #7c3aed; }
.service-logo[data-service="cloud-solutions"] .service-icon i { color: #3b82f6; }
.service-logo[data-service="digital-marketing"] .service-icon i { color: #f59e0b; }

/* Tools & Platforms Section */
.tools {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.tools::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10px 20px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 30px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50px 60px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 70px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 100px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    z-index: 1;
    animation: starTwinkle 6s ease-in-out infinite;
}

.tools .container {
    position: relative;
    z-index: 2;
}

.tools-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.tools-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tool-logo {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.tool-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.tool-logo:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.tool-logo:hover::before {
    left: 100%;
}

.tool-logo i {
    font-size: 2rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.tool-logo:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.tool-logo span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-logo:hover span {
    color: var(--neon-blue);
}

/* Specific tool logo colors */
.tool-logo:nth-child(1) i { color: #ff9900; } /* AWS */
.tool-logo:nth-child(2) i { color: #00a4ef; } /* Azure */
.tool-logo:nth-child(3) i { color: #4285f4; } /* Google Cloud */
.tool-logo:nth-child(4) i { color: #10a37f; } /* ChatGPT */
.tool-logo:nth-child(5) i { color: #ff6b6b; } /* Zapier */
.tool-logo:nth-child(6) i { color: #7c3aed; } /* Make.com */

.tool-logo:nth-child(7) i { color: #f39e1e; } /* Mailchimp */
.tool-logo:nth-child(8) i { color: #ff7a59; } /* HubSpot */
.tool-logo:nth-child(9) i { color: #00a1e0; } /* Salesforce */
.tool-logo:nth-child(10) i { color: #1877f2; } /* Meta Ads */
.tool-logo:nth-child(11) i { color: #e4405f; } /* Instagram */
.tool-logo:nth-child(12) i { color: #0a66c2; } /* LinkedIn */

.tool-logo:nth-child(13) i { color: #1da1f2; } /* Twitter */
.tool-logo:nth-child(14) i { color: #ff0000; } /* YouTube */
.tool-logo:nth-child(15) i { color: #000000; } /* TikTok */
.tool-logo:nth-child(16) i { color: #d97706; } /* Claude AI */
.tool-logo:nth-child(17) i { color: #ec4899; } /* Midjourney */
.tool-logo:nth-child(18) i { color: #4285f4; } /* Google Ads */

.tool-item:hover span {
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Solutions Section */
.solutions {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 35px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 45px 55px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 65px 75px, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 85px 95px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 105px 115px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 130px 130px;
    z-index: 1;
    animation: starTwinkle 10s ease-in-out infinite;
}

.solutions .container {
    position: relative;
    z-index: 2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.solution-preview {
    height: 220px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.preview-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 10px;
    margin: 1rem;
    overflow: hidden;
    position: relative;
}

.screen-header {
    height: 30px;
    background: var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.screen-dots span:nth-child(1) { background: #ff5f56; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #27ca3f; }

.screen-content {
    padding: 1rem;
    height: calc(100% - 30px);
}

.app-mockup {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-header {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: 0.5rem;
    background: var(--border-color);
    border-radius: 5px;
}

.mockup-items, .mockup-stats, .mockup-calendar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-item {
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 5px;
    font-size: 0.875rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 5px;
    font-size: 0.875rem;
}

.mockup-calendar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
}

.calendar-day.available {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
}

.calendar-day.booked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.solution-features span {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 40px 50px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 60px 70px, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 80px 90px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 100px 110px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 140px 140px;
    z-index: 1;
    animation: starTwinkle 12s ease-in-out infinite;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    cursor: pointer;
    min-height: 200px;
    max-height: 250px;
    width: 100%;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(124, 58, 237, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0.3;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-bg-gradient {
    opacity: 0.6;
}

.portfolio-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--border-glow);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    transition: var(--transition-normal);
    z-index: 2;
}

.portfolio-item:hover .portfolio-icon {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(124, 58, 237, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .image-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.95) 0%, 
        rgba(124, 58, 237, 0.95) 50%, 
        rgba(236, 72, 153, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-icon {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.portfolio-content {
    text-align: center;
    color: var(--bg-primary);
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.portfolio-tech span {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.portfolio-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.portfolio-stats .stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-stats .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.3rem;
}

.portfolio-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* New Portfolio Design */
.portfolio-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.portfolio-logo {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.portfolio-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.portfolio-logo:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.portfolio-logo:hover::before {
    left: 100%;
}

.portfolio-logo .portfolio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.portfolio-logo:hover .portfolio-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.portfolio-logo .portfolio-icon i {
    font-size: 1.75rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.portfolio-logo:hover .portfolio-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.portfolio-logo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.portfolio-logo:hover h3 {
    color: var(--neon-blue);
}

.portfolio-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.portfolio-logo:hover p {
    color: var(--text-primary);
}

.portfolio-logo .portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.portfolio-logo .portfolio-tech span {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--neon-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-logo:hover .portfolio-tech span {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.portfolio-logo .portfolio-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.portfolio-logo .portfolio-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portfolio-logo .portfolio-stats .stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.portfolio-logo .portfolio-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-logo:hover .portfolio-stats .stat-number {
    transform: scale(1.1);
}

.portfolio-logo:hover .portfolio-stats .stat-label {
    color: var(--text-primary);
}

/* Portfolio-specific colors */
.portfolio-logo[data-category="web-development"] .portfolio-icon i { color: #61dafb; }
.portfolio-logo[data-category="ai-automation"] .portfolio-icon i { color: #10a37f; }
.portfolio-logo[data-category="mobile-apps"] .portfolio-icon i { color: #ff6b6b; }
.portfolio-logo[data-category="crm-systems"] .portfolio-icon i { color: #00a1e0; }

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 40px 50px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 60px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80px 90px, rgba(255, 255, 255, 0.15), transparent);
    background-size: 100px 100px, 120px 120px, 140px 140px, 160px 160px;
    animation: starTwinkle 4s ease-in-out infinite;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(124, 58, 237, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: visible;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 30px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50px 60px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 70px 80px, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 90px 100px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 110px 120px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    z-index: 1;
    animation: starTwinkle 14s ease-in-out infinite;
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

/* Contact CTA Section */
.contact-cta {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.contact-cta:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.contact-cta:hover::before {
    opacity: 1;
}

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

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.cta-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(5px);
}

.cta-feature i {
    color: var(--neon-blue);
    font-size: 1rem;
}

.cta-feature span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5);
}

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

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

.button-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px) rotate(15deg);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.cta-button:hover .button-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cta-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.cta-stat:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.cta-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.25rem;
}

.cta-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-info h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.method-content a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.contact-form:hover::before {
    opacity: 1;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 2px solid var(--border-glow);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background: rgba(26, 26, 46, 0.7);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--neon-blue);
    background: rgba(26, 26, 46, 0.9);
    padding: 0 0.25rem;
}

/* Contact Form Submit Button */
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: var(--bg-primary);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.contact-form button[type="submit"]:hover::before {
    left: 100%;
}

/* Footer - Clean & Professional */
.footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 35% 25%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 65% 75%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 35%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 35px 45px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 55px 65px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 75px 85px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 95px 105px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 115px 125px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 160px 160px;
    z-index: 1;
    animation: starTwinkle 16s ease-in-out infinite;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Footer Section Headers */
.footer .section-header {
    margin-bottom: 2rem;
}

.footer .section-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer .section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.contact-card:hover::before {
    left: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.2);
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card.emergency .contact-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
}

.contact-card.emergency .contact-icon i {
    color: #ef4444;
}

.contact-card.emergency:hover .contact-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
}

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

.link-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

.link-card:hover::before {
    left: 100%;
}

.link-card i {
    font-size: 1.1rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.link-card:hover i {
    transform: scale(1.2);
}

.link-card span {
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Footer Divider */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    flex: 1;
    max-width: 200px;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    animation: starTwinkle 3s ease-in-out infinite;
}

.divider-icon i {
    color: var(--neon-blue);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-logo .logo-text {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.brand-logo .logo-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo .logo-solutions {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--neon-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.footer-logo {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    max-width: 350px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-section {
    padding-right: 2rem;
}

.quick-links-section {
    text-align: right;
    padding-left: 2rem;
}

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

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* MDEL-style Footer Elements */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item i {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-top: 0.1rem;
    min-width: 16px;
}

.contact-item.emergency i {
    color: #f59e0b;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cert-item i {
    color: #22c55e;
    font-size: 1rem;
    min-width: 16px;
}

/* Footer Newsletter Section - Removed */

/* Get Started Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-container {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 32px;
    padding: 0;
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 100px rgba(0, 212, 255, 0.3);
    margin: auto;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    border-radius: 32px;
    z-index: -1;
}

.popup-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 1.5rem 2rem 1rem;
    border-radius: 32px 32px 0 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.popup-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    transform: rotate(90deg);
}

.popup-content {
    padding: 1.5rem 2rem 2rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3.25rem;
    background: rgba(26, 26, 46, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background: rgba(26, 26, 46, 0.7);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(26, 26, 46, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    z-index: 1;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--neon-blue);
    background: rgba(26, 26, 46, 0.95);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: var(--neon-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group:focus-within .input-icon {
    transform: translateY(-50%) scale(1.2);
    color: var(--neon-blue);
}

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

.form-group textarea + .input-icon {
    top: 1.25rem;
    transform: none;
}

.form-actions {
    margin-top: 0.75rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .popup-container {
        width: 98%;
        max-height: 90vh;
        margin: 0.5rem auto;
        transform: scale(0.9) translateY(20px);
    }
    
    .popup-header,
    .popup-content {
        padding: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0 2rem 0;
        margin-bottom: 0;
        overflow: hidden;
    }
    
    .nav-cta .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact {
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }
    
    .popup-overlay {
        padding: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.8rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--bg-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-row {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-logo {
        min-width: 320px;
        max-width: 380px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-logo {
        min-width: 250px;
        max-width: 280px;
        padding: 1.5rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-logo h3 {
        font-size: 1.1rem;
    }
    
    .service-logo p {
        font-size: 0.85rem;
    }
    
    .service-tech span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-row {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tool-logo {
        min-width: 100px;
        padding: 1rem 1.25rem;
    }
    
    .tool-logo i {
        font-size: 1.75rem;
    }
    
    .tool-logo span {
        font-size: 0.8rem;
    }
    
    .portfolio-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-logo {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem 1.25rem;
    }
    
    .portfolio-logo .portfolio-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .portfolio-logo .portfolio-icon i {
        font-size: 1.5rem;
    }
    
    .portfolio-logo h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-logo p {
        font-size: 0.85rem;
    }
    
    .portfolio-logo .portfolio-tech span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .portfolio-logo .portfolio-stats .stat-number {
        font-size: 1rem;
    }
    
    .portfolio-logo .portfolio-stats .stat-label {
        font-size: 0.65rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-section {
        padding-right: 0;
    }
    
    .quick-links-section {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        padding-top: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-copyright {
        align-items: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .portfolio-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-logo {
        min-width: 250px;
        max-width: 280px;
        padding: 1.25rem 1rem;
    }
    
    .portfolio-logo .portfolio-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .portfolio-logo .portfolio-icon i {
        font-size: 1.25rem;
    }
    
    .portfolio-logo h3 {
        font-size: 1rem;
    }
    
    .portfolio-logo p {
        font-size: 0.8rem;
    }
    
    .portfolio-logo .portfolio-tech span {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .portfolio-logo .portfolio-stats .stat-number {
        font-size: 0.9rem;
    }
    
    .portfolio-logo .portfolio-stats .stat-label {
        font-size: 0.6rem;
    }
    
    .popup-container {
        width: 100%;
        max-height: 95vh;
        margin: 0.25rem;
        transform: scale(0.95) translateY(10px);
    }
    
    .popup-overlay {
        padding: 0.5rem;
    }
    
    .popup-header,
    .popup-content {
        padding: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .nav-cta .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-badge {
        margin-top: 2.5rem;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10002;
    transition: width 0.1s ease;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Ensure all sections are visible by default */
section {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

/* Ensure all content is visible */
.hero-content,
.about-content,
.services-grid,
.solutions-grid,
.portfolio-grid,
.contact-content,
.footer-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Astronaut Chatbot */
.astronaut-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: astronautFloat 3s ease-in-out infinite;
    overflow: hidden;
    /* Ensure it's clickable */
    pointer-events: auto;
    user-select: none;
}

.astronaut-chatbot::before {
    content: '👨‍🚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.astronaut-chatbot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #7c3aed);
    border-radius: 50%;
    opacity: 0;
    animation: astronautGlow 2s ease-in-out infinite;
    z-index: -1;
}

.astronaut-chatbot:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.astronaut-chatbot.active {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.astronaut-chatbot.active::before {
    content: '👨‍🚀';
    top: 20px;
    left: 20px;
    transform: none;
    font-size: 2rem;
    z-index: 1;
    pointer-events: none;
}

/* Chatbot Header */
.chatbot-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.astronaut-chatbot.active .chatbot-header {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 10px;
}

.chatbot-status {
    color: #00ff88;
    font-size: 0.8rem;
    margin-left: auto;
}

.chatbot-close {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Chatbot Messages */
.chatbot-messages {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    bottom: 80px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.astronaut-chatbot.active .chatbot-messages {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-message {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: messageSlideIn 0.5s ease forwards;
}

.chatbot-message.bot {
    text-align: left;
}

.chatbot-message.user {
    text-align: right;
}

.message-bubble {
    display: inline-block;
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-line;
}

.message-bubble.bot {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-bottom-left-radius: 4px;
}

.message-bubble.user {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0a;
    border-bottom-right-radius: 4px;
}

/* Chatbot Input */
.chatbot-input {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.astronaut-chatbot.active .chatbot-input {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chatbot-send {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 50%;
    color: #0a0a0a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* Animations */
@keyframes astronautFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

/* Chatbot Responsive */
@media (max-width: 768px) {
    .astronaut-chatbot {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
    
    .astronaut-chatbot.active {
        width: calc(100vw - 40px);
        height: 400px;
        bottom: 20px;
        right: 20px;
    }
    
    .astronaut-chatbot::before {
        font-size: 2rem;
    }
}

/* Reset & Base Styles */