/* ========================================
   ZoZo-Tracking Page Specific Styles
   ======================================== */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Hero Section - ZoZo-Tracking Page */
.hero.zozo-tracking-page {
    background: linear-gradient(135deg, #020617 0%, #0a0f1e 30%, #0f172a 60%, #020617 100%);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 600px;
    width: 100%;
    max-width: 100vw;
}

/* Floating elements should not block clicks */
.hero.zozo-tracking-page .floating-elements,
.hero.zozo-tracking-page .floating-element {
    pointer-events: none;
}

/* Animated Grid Lines - Sci-Fi Style */
.hero.zozo-tracking-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 213, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 150, 213, 0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: grid-move 15s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

@keyframes grid-move {
    0% {
        transform: perspective(600px) rotateX(65deg) translateY(0);
    }
    100% {
        transform: perspective(600px) rotateX(65deg) translateY(60px);
    }
}

/* Neon Glow Effects */
.hero.zozo-tracking-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 150, 213, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 213, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 213, 0.15) 0%, transparent 50%);
    animation: neon-pulse 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 0.4;
        filter: blur(60px);
    }
    50% {
        opacity: 0.6;
        filter: blur(80px);
    }
}

.hero.zozo-tracking-page .container {
    position: relative;
    z-index: 500;
}

/* Code elements for tech feel */
.hero.zozo-tracking-page .code-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(59, 130, 246, 0.3);
    z-index: 1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero.zozo-tracking-page .code-element:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero.zozo-tracking-page .code-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero.zozo-tracking-page .code-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Title and Content */
.hero.zozo-tracking-page .hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero.zozo-tracking-page .highlight-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #0096d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero.zozo-tracking-page .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero.zozo-tracking-page .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 500;
}

.hero.zozo-tracking-page .button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hero.zozo-tracking-page .hero-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #0096d5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 500;
}

.hero.zozo-tracking-page .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero.zozo-tracking-page .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 500;
}

.hero.zozo-tracking-page .button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Wave separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero.zozo-tracking-page {
        padding: 100px 0 60px;
        min-height: 500px;
    }
    
    /* Hero buttons spacing on mobile */
    .hero.zozo-tracking-page .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .hero.zozo-tracking-page .hero-buttons .button {
        margin: 5px;
    }
    
    /* Hide code elements on mobile to prevent overflow */
    .hero.zozo-tracking-page .code-element:nth-child(2),
    .hero.zozo-tracking-page .code-element:nth-child(3) {
        display: none;
    }
    
    .hero.zozo-tracking-page .code-element:nth-child(1) {
        left: 5%;
    }
    
    .hero.zozo-tracking-page .hero-title {
        font-size: 2.5rem;
    }
    
    .hero.zozo-tracking-page .hero-description {
        font-size: 1rem;
    }
}
