/* ============================================================
   HERO CSS — SportZone Pro
   Full-screen animated hero with orbital sport icons
   ============================================================ */

.sz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* ── Animated Background ──────────────────────────────────── */
.sz-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sz-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0, 176, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(4, 13, 26, 0.9) 0%, transparent 50%),
        linear-gradient(135deg, #040d1a 0%, #071228 40%, #0a1628 70%, #040d1a 100%);
    animation: sz-mesh-pulse 8s ease-in-out infinite alternate;
}
@keyframes sz-mesh-pulse {
    from { opacity: 1; }
    to   { opacity: 0.85; filter: hue-rotate(20deg); }
}

.sz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(4,13,26,0.9) 0%, rgba(4,13,26,0.4) 55%, rgba(4,13,26,0.1) 100%);
}

/* Particle dots */
.sz-hero-particles { position: absolute; inset: 0; overflow: hidden; }

/* ── Container Layout ─────────────────────────────────────── */
.sz-hero .sz-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* ── Content ──────────────────────────────────────────────── */
.sz-hero-content { max-width: 620px; }

.sz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sz-green);
    background: var(--sz-green-glow);
    border: 1px solid rgba(0, 230, 118, 0.25);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}
.sz-hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--sz-green);
    border-radius: 50%;
    animation: sz-blink 1.5s ease-in-out infinite;
}
@keyframes sz-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.sz-hero-title {
    font-family: var(--sz-font-head);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--sz-text);
    margin-bottom: 24px;
}
.sz-hero-accent {
    color: var(--sz-green);
    position: relative;
    display: inline-block;
}
.sz-hero-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--sz-green);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--sz-green);
}

.sz-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--sz-text2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.sz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.sz-hero-cta {
    font-size: 1rem;
    padding: 16px 36px;
}

/* ── Stats ────────────────────────────────────────────────── */
.sz-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.sz-hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.sz-hero-stat:first-child { padding-left: 0; }
.sz-hero-stat strong {
    font-family: var(--sz-font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sz-green);
    line-height: 1;
}
.sz-hero-stat span {
    font-size: 0.78rem;
    color: var(--sz-text2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}
.sz-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--sz-border2);
}

/* ── Visual — Orbital Animation ──────────────────────────── */
.sz-hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sz-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 230, 118, 0.12);
    animation: sz-ring-pulse 4s ease-in-out infinite;
}
.sz-ring-1 { width: 80%;  height: 80%;  animation-delay: 0s; }
.sz-ring-2 { width: 100%; height: 100%; animation-delay: 1s; border-color: rgba(0, 230, 118, 0.07); }
.sz-ring-3 { width: 60%;  height: 60%;  animation-delay: 2s; border-color: rgba(0, 176, 255, 0.1); }
@keyframes sz-ring-pulse {
    0%,100% { transform: scale(1);    opacity: 0.6; }
    50%      { transform: scale(1.04); opacity: 1; }
}

.sz-hero-center-circle {
    position: absolute;
    width: 100px; height: 100px;
    background: var(--sz-green-glow);
    border: 2px solid rgba(0, 230, 118, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.sz-hero-main-emoji { font-size: 2.8rem; filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.8)); }

.sz-hero-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    animation: sz-orbit 9s linear infinite;
    animation-delay: var(--orbit-delay);
    transform: rotate(var(--orbit-angle));
}
.sz-hero-orbit span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.4));
    counter-reset: unset;
    animation: sz-orbit-counter 9s linear infinite reverse;
    animation-delay: var(--orbit-delay);
    display: block;
    width: 52px; height: 52px;
    background: var(--sz-card);
    border: 1px solid var(--sz-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
@keyframes sz-orbit { from { transform: rotate(var(--orbit-angle)); } to { transform: rotate(calc(var(--orbit-angle) + 360deg)); } }
@keyframes sz-orbit-counter { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(-360deg); } }

/* ── Scroll Indicator ─────────────────────────────────────── */
.sz-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.sz-hero-scroll span { font-size: 0.7rem; color: var(--sz-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.sz-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--sz-green), transparent);
    animation: sz-scroll-pulse 2s ease-in-out infinite;
}
@keyframes sz-scroll-pulse { 0%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0.5)} }

/* ── Quick Booking Strip ──────────────────────────────────── */
.sz-quick-booking-strip {
    background: var(--sz-surface);
    border-bottom: 1px solid var(--sz-border);
    padding: 20px 0;
}
.sz-quick-booking-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.sz-qb-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.sz-qb-icon { font-size: 1.8rem; }
.sz-qb-label strong { display: block; font-weight: 700; font-size: 0.9rem; }
.sz-qb-label span { font-size: 0.78rem; color: var(--sz-text2); }
.sz-qb-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}
.sz-qb-field { display: flex; flex-direction: column; gap: 4px; }
.sz-qb-field label { font-size: 0.72rem; font-weight: 600; color: var(--sz-text2); letter-spacing: 0.06em; text-transform: uppercase; }
.sz-qb-field select,
.sz-qb-field input {
    padding: 10px 14px;
    background: var(--sz-card);
    border: 1px solid var(--sz-border2);
    border-radius: var(--sz-radius3);
    color: var(--sz-text);
    font-size: 0.9rem;
    min-width: 160px;
    transition: border-color 0.2s;
}
.sz-qb-field select:focus,
.sz-qb-field input:focus { outline: none; border-color: var(--sz-green); }
.sz-qb-submit { align-self: flex-end; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sz-hero .sz-container { grid-template-columns: 1fr; text-align: center; }
    .sz-hero-visual { display: none; }
    .sz-hero-sub,
    .sz-hero-content { max-width: 100%; }
    .sz-hero-actions,
    .sz-hero-stats { justify-content: center; }
    .sz-hero-stat:first-child { padding-left: 20px; }
}
@media (max-width: 600px) {
    .sz-hero { min-height: 90vh; padding: 100px 0 60px; }
    .sz-hero-title { font-size: 2.4rem; }
    .sz-quick-booking-inner { flex-direction: column; align-items: flex-start; }
    .sz-qb-form { flex-direction: column; align-items: stretch; width: 100%; }
    .sz-qb-field select, .sz-qb-field input { min-width: 100%; }
}
