/**
 * Vexora ULTRA Premium Animation Styles
 * Full-Page Parallax & Advanced Effects
 */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --glow-primary: 0 0 40px rgba(99, 102, 241, 0.4);
    --glow-secondary: 0 0 40px rgba(139, 92, 246, 0.4);
    --glow-cyan: 0 0 40px rgba(6, 182, 212, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   SMOOTH SCROLL (LENIS)
   ═══════════════════════════════════════════════════════════════ */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* ═══════════════════════════════════════════════════════════════
   THREE.JS HERO CANVAS
   ═══════════════════════════════════════════════════════════════ */
#hero-canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION PARALLAX
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    will-change: transform;
}

.hero-gradient-orb.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: orbPulse 8s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: orbPulse 10s ease-in-out infinite reverse;
}

.hero-gradient-orb.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 12s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) translate(20px, -20px);
        opacity: 0.8;
    }
}

.hero-content, .hero-visual {
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING TECH ICONS
   ═══════════════════════════════════════════════════════════════ */
.floating-tech-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: floatIcon 6s ease-in-out infinite;
    opacity: 0.85;
    will-change: transform;
}

.floating-icon i,
.floating-icon svg {
    filter: drop-shadow(0 0 8px currentColor);
}

/* AWS - Orange */
.floating-icon.icon-1 {
    top: 12%;
    left: 5%;
    animation-delay: 0s;
    color: #ff9900;
}

/* Docker - Blue */
.floating-icon.icon-2 {
    top: 22%;
    right: 8%;
    animation-delay: 0.5s;
    color: #2496ed;
}

/* Kubernetes - Blue */
.floating-icon.icon-3 {
    top: 55%;
    left: 3%;
    animation-delay: 1s;
    color: #326ce5;
    animation-name: floatIconReverse;
}

/* Python - Blue */
.floating-icon.icon-4 {
    bottom: 28%;
    right: 5%;
    animation-delay: 1.5s;
    color: #3776ab;
}

/* PHP - Purple */
.floating-icon.icon-5 {
    top: 8%;
    left: 22%;
    animation-delay: 2s;
    color: #777bb4;
}

/* Java/Spring - Orange */
.floating-icon.icon-6 {
    bottom: 18%;
    left: 8%;
    animation-delay: 2.5s;
    color: #f89820;
    animation-name: floatIconReverse;
}

/* MySQL - Blue */
.floating-icon.icon-7 {
    top: 38%;
    right: 3%;
    animation-delay: 3s;
    color: #00758f;
}

/* MongoDB - Green */
.floating-icon.icon-8 {
    bottom: 38%;
    left: 18%;
    animation-delay: 3.5s;
    color: #47a248;
}

/* Node.js - Green */
.floating-icon.icon-9 {
    top: 48%;
    left: 8%;
    animation-delay: 4s;
    color: #68a063;
    animation-name: floatIconReverse;
}

/* React - Cyan */
.floating-icon.icon-10 {
    top: 18%;
    right: 18%;
    animation-delay: 4.5s;
    color: #61dafb;
}

/* Git - Orange/Red */
.floating-icon.icon-11 {
    bottom: 12%;
    right: 12%;
    animation-delay: 5s;
    color: #f05032;
    animation-name: floatIconReverse;
}

/* Linux - Yellow */
.floating-icon.icon-12 {
    top: 70%;
    right: 6%;
    animation-delay: 5.5s;
    color: #fcc624;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
    }
}

@keyframes floatIconReverse {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(15px) rotate(-5deg) scale(1.05);
    }
    50% {
        transform: translateY(25px) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translateY(10px) rotate(5deg) scale(1.05);
    }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING GEOMETRIC SHAPES
   ═══════════════════════════════════════════════════════════════ */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.15;
    will-change: transform;
}

/* Cube */
.floating-shape.shape-cube {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    animation: floatCube 15s ease-in-out infinite;
}

.floating-shape.shape-cube-1 { top: 15%; left: 10%; animation-delay: 0s; }
.floating-shape.shape-cube-2 { top: 60%; right: 15%; animation-delay: 3s; transform: rotate(45deg); }
.floating-shape.shape-cube-3 { bottom: 25%; left: 20%; animation-delay: 6s; }

/* Triangle */
.floating-shape.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid var(--primary);
    opacity: 0.12;
    animation: floatTriangle 18s ease-in-out infinite;
}

.floating-shape.shape-triangle-1 { top: 30%; right: 10%; animation-delay: 2s; }
.floating-shape.shape-triangle-2 { bottom: 40%; left: 5%; animation-delay: 5s; }

/* Circle/Sphere */
.floating-shape.shape-sphere {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
    border-radius: 50%;
    animation: floatSphere 12s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.floating-shape.shape-sphere-1 { top: 20%; right: 25%; animation-delay: 1s; }
.floating-shape.shape-sphere-2 { top: 45%; left: 15%; animation-delay: 4s; }
.floating-shape.shape-sphere-3 { bottom: 15%; right: 8%; animation-delay: 7s; }

/* Hexagon */
.floating-shape.shape-hexagon {
    width: 35px;
    height: 20px;
    background: var(--secondary);
    position: absolute;
    opacity: 0.1;
    animation: floatHexagon 20s ease-in-out infinite;
}

.floating-shape.shape-hexagon::before,
.floating-shape.shape-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 17.5px solid transparent;
    border-right: 17.5px solid transparent;
}

.floating-shape.shape-hexagon::before {
    bottom: 100%;
    border-bottom: 10px solid var(--secondary);
}

.floating-shape.shape-hexagon::after {
    top: 100%;
    border-top: 10px solid var(--secondary);
}

.floating-shape.shape-hexagon-1 { top: 35%; left: 8%; animation-delay: 3s; }
.floating-shape.shape-hexagon-2 { bottom: 30%; right: 20%; animation-delay: 8s; }

/* Ring */
.floating-shape.shape-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatRing 14s ease-in-out infinite;
}

.floating-shape.shape-ring-1 { top: 25%; right: 5%; animation-delay: 2s; }
.floating-shape.shape-ring-2 { bottom: 20%; left: 12%; animation-delay: 6s; }

/* Shape Animations */
@keyframes floatCube {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
    75% { transform: translateY(-40px) rotate(270deg); }
}

@keyframes floatTriangle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

@keyframes floatSphere {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-20px) scale(1.1); }
    50% { transform: translateY(-35px) scale(0.95); }
    75% { transform: translateY(-15px) scale(1.05); }
}

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

@keyframes floatRing {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(45deg) scale(1.1); }
    50% { transform: translateY(-40px) rotate(90deg) scale(0.9); }
    75% { transform: translateY(-25px) rotate(135deg) scale(1.05); }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING CODE SNIPPETS
   ═══════════════════════════════════════════════════════════════ */
.floating-code-snippets {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-code {
    position: absolute;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    opacity: 0.6;
    animation: floatCode 20s ease-in-out infinite;
    will-change: transform;
}

.floating-code .code-keyword { color: #c678dd; }
.floating-code .code-function { color: #61afef; }
.floating-code .code-string { color: #98c379; }
.floating-code .code-number { color: #d19a66; }
.floating-code .code-comment { color: #5c6370; font-style: italic; }
.floating-code .code-variable { color: #e06c75; }

.floating-code-1 { top: 18%; left: 2%; animation-delay: 0s; }
.floating-code-2 { top: 65%; right: 3%; animation-delay: 4s; }
.floating-code-3 { bottom: 22%; left: 5%; animation-delay: 8s; }
.floating-code-4 { top: 40%; right: 2%; animation-delay: 12s; }

@keyframes floatCode {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-15px) translateX(5px); opacity: 0.8; }
    50% { transform: translateY(-25px) translateX(-3px); opacity: 0.5; }
    75% { transform: translateY(-10px) translateX(8px); opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED GRID PATTERN
   ═══════════════════════════════════════════════════════════════ */
.hero-grid-animated {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Grid glow lines */
.hero-grid-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-glow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 1px;
    width: 200px;
    opacity: 0.3;
    animation: glowLineMove 8s linear infinite;
}

.grid-glow-line-1 { top: 20%; animation-delay: 0s; }
.grid-glow-line-2 { top: 40%; animation-delay: 2s; }
.grid-glow-line-3 { top: 60%; animation-delay: 4s; }
.grid-glow-line-4 { top: 80%; animation-delay: 6s; }

.grid-glow-line-v {
    position: absolute;
    background: linear-gradient(180deg, transparent, var(--secondary), transparent);
    width: 1px;
    height: 200px;
    opacity: 0.3;
    animation: glowLineVMove 10s linear infinite;
}

.grid-glow-line-v-1 { left: 15%; animation-delay: 1s; }
.grid-glow-line-v-2 { left: 35%; animation-delay: 3s; }
.grid-glow-line-v-3 { right: 35%; animation-delay: 5s; }
.grid-glow-line-v-4 { right: 15%; animation-delay: 7s; }

@keyframes glowLineMove {
    0% { left: -200px; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { left: 100%; opacity: 0; }
}

@keyframes glowLineVMove {
    0% { top: -200px; opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { top: 100%; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   PARTICLE EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.particle:nth-child(2n) { background: var(--secondary); box-shadow: 0 0 10px var(--secondary); }
.particle:nth-child(3n) { background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.particle-1 { top: 10%; left: 5%; animation-delay: 0s; width: 3px; height: 3px; }
.particle-2 { top: 25%; left: 15%; animation-delay: 1s; }
.particle-3 { top: 40%; left: 8%; animation-delay: 2s; width: 5px; height: 5px; }
.particle-4 { top: 55%; left: 12%; animation-delay: 3s; }
.particle-5 { top: 70%; left: 6%; animation-delay: 4s; width: 3px; height: 3px; }
.particle-6 { top: 15%; right: 8%; animation-delay: 0.5s; }
.particle-7 { top: 30%; right: 5%; animation-delay: 1.5s; width: 5px; height: 5px; }
.particle-8 { top: 50%; right: 10%; animation-delay: 2.5s; }
.particle-9 { top: 65%; right: 6%; animation-delay: 3.5s; width: 3px; height: 3px; }
.particle-10 { top: 80%; right: 12%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    25% { transform: translateY(-40px) translateX(10px); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(-15px); opacity: 0.3; }
    75% { transform: translateY(-50px) translateX(5px); opacity: 0.6; }
}

/* ═══════════════════════════════════════════════════════════════
   CLIENTS LOGO CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.clients-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.clients-carousel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.clients-track.reverse {
    animation: scrollLogosReverse 35s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 60px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLogosReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════════
   DOMAIN SEARCH WIDGET
   ═══════════════════════════════════════════════════════════════ */
.domain-search-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.domain-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.domain-search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.domain-search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.domain-search-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    outline: none;
}

.domain-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.domain-tld-select {
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: none;
    border-left: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

.domain-search-btn {
    padding: 1rem 2rem;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-search-btn:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

.domain-search-btn i {
    animation: searchPulse 2s ease-in-out infinite;
}

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

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.domain-tld {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.domain-tld:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: white;
}

.domain-tld .price {
    color: var(--accent);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Domain Search Results */
.domain-results {
    margin-top: 2rem;
    display: none;
}

.domain-results.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.domain-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.domain-result-item.available {
    border-color: rgba(16, 185, 129, 0.3);
}

.domain-result-item.taken {
    border-color: rgba(239, 68, 68, 0.3);
    opacity: 0.7;
}

.domain-result-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.domain-result-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-result-status .status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.domain-result-status .status.available {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.domain-result-status .status.taken {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY CTA BAR
   ═══════════════════════════════════════════════════════════════ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 22, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .sticky-cta-bar .btn {
        flex: 1;
        min-width: 120px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Tooltip */
.whatsapp-float::before {
    content: 'Chat with us!';
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-float::before {
        display: none;
    }
}

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

@keyframes fadeInDown {
    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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up { animation: fadeInUp 0.6s var(--ease-out-expo) forwards; }
.animate-fade-down { animation: fadeInDown 0.6s var(--ease-out-expo) forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s var(--ease-out-expo) forwards; }
.animate-fade-right { animation: fadeInRight 0.6s var(--ease-out-expo) forwards; }
.animate-scale { animation: scaleIn 0.6s var(--ease-out-expo) forwards; }

/* Stagger delays for cards */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════
   MEGA MENU STYLES
   ═══════════════════════════════════════════════════════════════ */
.nav-item-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 500px;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.mega-menu-item:hover {
    background: rgba(99, 102, 241, 0.15);
    color: white;
}

.mega-menu-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--primary);
}

.mega-menu-item:hover i {
    background: var(--primary);
    color: white;
}

.mega-menu-text {
    flex: 1;
}

.mega-menu-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.mega-menu-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   CLOUD PORTAL NAV DROPDOWN
   ═══════════════════════════════════════════════════════════════ */
.cloud-portal-dropdown {
    min-width: 250px;
}

.cloud-portal-dropdown .mega-menu-item i {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
}

.cloud-portal-dropdown .mega-menu-item:hover i {
    background: var(--accent);
    color: var(--darker);
}

/* ═══════════════════════════════════════════════════════════════
   HIDE NEW ELEMENTS ON MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .floating-shapes,
    .floating-code-snippets,
    .hero-grid-animated,
    .hero-grid-glow,
    .floating-particles {
        display: none;
    }

    .domain-search-box {
        flex-direction: column;
    }

    .domain-tld-select {
        border-left: none;
        border-top: 1px solid rgba(99, 102, 241, 0.3);
    }

    .domain-search-btn {
        justify-content: center;
    }

    .mega-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 60vh;
        overflow-y: auto;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PARALLAX SHAPES (Auto-generated for sections)
   ═══════════════════════════════════════════════════════════════ */
.parallax-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    will-change: transform;
}

.parallax-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    top: 10%;
    right: -100px;
    filter: blur(60px);
}

.parallax-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    bottom: 20%;
    left: -50px;
    filter: blur(40px);
}

.parallax-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    top: 50%;
    right: 20%;
    filter: blur(30px);
}

/* ═══════════════════════════════════════════════════════════════
   CARD 3D TILT EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.service-card,
.pricing-card,
.project-card,
.why-us-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.project-card:hover {
    box-shadow: var(--glow-primary);
}

.pricing-card.featured:hover {
    box-shadow: var(--glow-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════════ */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    transform-origin: left;
    transform: scaleX(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(8, 8, 22, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   MAGNETIC BUTTON EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.btn, .nav-link {
    will-change: transform;
}

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

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

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

/* ═══════════════════════════════════════════════════════════════
   GLOW EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.glow-primary {
    box-shadow: var(--glow-primary);
}

.glow-secondary {
    box-shadow: var(--glow-secondary);
}

.glow-cyan {
    box-shadow: var(--glow-cyan);
}

/* Text glow */
.gradient-text {
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

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

.float {
    animation: float 6s ease-in-out infinite;
}

.float-reverse {
    animation: floatReverse 6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (Initial States - GSAP handles the rest)
   ═══════════════════════════════════════════════════════════════ */
[data-animate] {
    will-change: transform, opacity;
}

.section-header,
.section-title {
    will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════════
   TECH ICONS FLOATING
   ═══════════════════════════════════════════════════════════════ */
.tech-icons-wrapper {
    position: relative;
}

.tech-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--glow-primary);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM EFFECTS
   ═══════════════════════════════════════════════════════════════ */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2), var(--glow-primary);
}

/* ═══════════════════════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════════════════════ */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER PARALLAX
   ═══════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   LOADING STATES
   ═══════════════════════════════════════════════════════════════ */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-gradient-orb,
    .parallax-shape,
    .custom-cursor,
    #hero-canvas {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-gradient-orb {
        filter: blur(60px);
        opacity: 0.3;
    }

    .hero-gradient-orb.orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-gradient-orb.orb-2 {
        width: 200px;
        height: 200px;
    }

    .hero-gradient-orb.orb-3 {
        width: 150px;
        height: 150px;
    }

    .parallax-shapes {
        display: none;
    }

    .scroll-progress {
        height: 2px;
    }

    /* Reduce floating icons on mobile */
    .floating-tech-icons {
        display: none;
    }

    /* Simpler transitions on mobile */
    .service-card,
    .pricing-card,
    .project-card,
    .why-us-card {
        transform: none !important;
        will-change: auto;
    }

    /* Disable 3D tilt on mobile */
    .service-card:hover,
    .pricing-card:hover,
    .project-card:hover {
        transform: translateY(-5px) !important;
    }
}

/* Tablet - show fewer icons */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-icon.icon-5,
    .floating-icon.icon-6,
    .floating-icon.icon-9,
    .floating-icon.icon-10,
    .floating-icon.icon-11,
    .floating-icon.icon-12 {
        display: none;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED PARALLAX UTILITIES
   ═══════════════════════════════════════════════════════════════ */
/* Parallax section wrapper */
.parallax-section {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Multi-layer parallax depth */
.parallax-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.parallax-layer-deep {
    transform: translateZ(-200px) scale(2);
}

.parallax-layer-mid {
    transform: translateZ(-100px) scale(1.5);
}

.parallax-layer-near {
    transform: translateZ(-50px) scale(1.25);
}

/* Section backgrounds with parallax-ready gradients */
.section-parallax-bg {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.section-parallax-bg::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    top: 10%;
    right: -10%;
    opacity: 0.3;
}

.section-parallax-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    bottom: 10%;
    left: -5%;
    opacity: 0.25;
}

/* ═══════════════════════════════════════════════════════════════
   TEXT REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
/* Word-by-word reveal */
.text-reveal-word {
    overflow: hidden;
    display: inline-block;
}

.text-reveal-word span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: textRevealWord 0.6s var(--ease-out-expo) forwards;
}

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

/* Character split reveal */
.char-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-20deg);
    animation: charReveal 0.5s var(--ease-out-expo) forwards;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Gradient text reveal */
.text-reveal-gradient {
    background: linear-gradient(90deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--accent) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Line reveal mask */
.line-reveal {
    position: relative;
    overflow: hidden;
}

.line-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--darker);
    transform: translateX(-100%);
    animation: lineRevealMask 1s var(--ease-out-expo) forwards;
}

@keyframes lineRevealMask {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════════════════════════
   CARD ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
/* Card flip entrance */
.card-flip-in {
    transform: perspective(1000px) rotateY(-15deg);
    opacity: 0;
    animation: cardFlipIn 0.8s var(--ease-out-expo) forwards;
}

@keyframes cardFlipIn {
    to {
        transform: perspective(1000px) rotateY(0);
        opacity: 1;
    }
}

/* Card slide from alternating sides */
.card-slide-left {
    transform: translateX(-60px);
    opacity: 0;
    animation: slideFromLeft 0.6s var(--ease-out-expo) forwards;
}

.card-slide-right {
    transform: translateX(60px);
    opacity: 0;
    animation: slideFromRight 0.6s var(--ease-out-expo) forwards;
}

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

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

/* Card blur-to-clear */
.card-blur-in {
    filter: blur(10px);
    opacity: 0;
    transform: scale(0.95);
    animation: cardBlurIn 0.8s var(--ease-out-expo) forwards;
}

@keyframes cardBlurIn {
    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

/* Card elevation entrance */
.card-elevate {
    transform: translateY(40px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    opacity: 0;
    animation: cardElevate 0.7s var(--ease-out-expo) forwards;
}

@keyframes cardElevate {
    to {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PARTICLE CONTAINER STYLES
   ═══════════════════════════════════════════════════════════════ */
/* Canvas particle container */
.particle-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* CSS particle dots */
.particle-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: particlePulse 4s ease-in-out infinite;
}

.particle-dot:nth-child(odd) {
    background: var(--secondary);
    animation-delay: 0.5s;
}

.particle-dot:nth-child(3n) {
    background: var(--accent);
    animation-delay: 1s;
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Rising particles */
.particle-rise {
    animation: particleRise 8s linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TRANSITION EFFECTS
   ═══════════════════════════════════════════════════════════════ */
/* Gradient wave divider */
.section-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C200,0 400,120 600,60 C800,0 1000,120 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C200,0 400,120 600,60 C800,0 1000,120 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    opacity: 0.1;
}

/* Section reveal on scroll */
.section-reveal {
    clip-path: inset(0 0 100% 0);
    animation: sectionReveal 1s var(--ease-out-expo) forwards;
}

@keyframes sectionReveal {
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   COUNTER ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
/* Number roll animation */
.counter-roll {
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}

.counter-roll-inner {
    animation: counterRoll 0.5s var(--ease-out-expo) forwards;
}

@keyframes counterRoll {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE HOVER EFFECTS
   ═══════════════════════════════════════════════════════════════ */
/* Glow on hover */
.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(99, 102, 241, 0.2);
}

/* Border gradient animation on hover */
.hover-border-gradient {
    position: relative;
    z-index: 1;
}

.hover-border-gradient::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGradientRotate 3s linear infinite;
}

.hover-border-gradient:hover::before {
    opacity: 1;
}

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

/* Scale bounce on hover */
.hover-bounce {
    transition: transform 0.3s var(--ease-elastic);
}

.hover-bounce:hover {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .custom-cursor,
    .scroll-progress,
    #hero-canvas,
    .hero-bg,
    .parallax-shapes {
        display: none !important;
    }
}
