/* ========================================
   Hero Section — PSG India 2026
   Warm Goa Sunset / Yellow Theme
   ======================================== */

/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 160px;
    padding-bottom: 60px;
    background: url('../images/goa-hero-bg.png') center center / cover no-repeat;
    z-index: 1;
    perspective: 1200px;
    box-sizing: border-box;
}

/* Hero WebGL Canvas Background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-canvas.loaded {
    opacity: 1;
}

/* ========================================
   Warm Background Layers
   ======================================== */

/* Warm overlay for text readability over image */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 248, 232, 0.75) 0%,
            rgba(255, 236, 200, 0.6) 30%,
            rgba(255, 204, 128, 0.45) 60%,
            rgba(255, 183, 77, 0.5) 100%);
    z-index: 1;
}

@keyframes bgPulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.85; transform: scale(1.01); }
}

/* Animated aurora / light streaks */
.hero-section::after {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        conic-gradient(from 180deg at 50% 50%,
            rgba(255, 183, 77, 0) 0deg,
            rgba(255, 183, 77, 0.06) 60deg,
            rgba(255, 111, 0, 0.04) 120deg,
            rgba(76, 175, 80, 0.04) 180deg,
            rgba(255, 183, 77, 0.03) 240deg,
            rgba(255, 152, 0, 0.05) 300deg,
            rgba(255, 183, 77, 0) 360deg);
    z-index: 1;
    animation: auroraRotate 30s linear infinite;
    filter: blur(60px);
}

@keyframes auroraRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Floating Geometric Shapes
   ======================================== */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
}

/* Particle base */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Large glowing orbs — warm tones */
.hero-particle:nth-child(1) {
    left: 8%;
    top: 15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 183, 77, 0.3) 0%,
        rgba(255, 183, 77, 0.08) 40%,
        transparent 70%);
    filter: blur(30px);
    animation: float3D-1 18s ease-in-out infinite;
}

.hero-particle:nth-child(2) {
    right: 5%;
    top: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 70% 30%,
        rgba(255, 111, 0, 0.15) 0%,
        rgba(255, 111, 0, 0.04) 40%,
        transparent 70%);
    filter: blur(40px);
    animation: float3D-2 22s ease-in-out infinite;
}

.hero-particle:nth-child(3) {
    left: 50%;
    bottom: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 60%,
        rgba(76, 175, 80, 0.15) 0%,
        rgba(76, 175, 80, 0.04) 40%,
        transparent 70%);
    filter: blur(35px);
    animation: float3D-3 20s ease-in-out infinite;
}

/* Small sparkle particles — warm golds */
.hero-particle:nth-child(4) {
    left: 15%;
    top: 55%;
    width: 5px;
    height: 5px;
    background: rgba(255, 152, 0, 0.7);
    box-shadow: 0 0 12px 3px rgba(255, 152, 0, 0.3);
    filter: none;
    animation: sparkle3D 8s ease-in-out infinite, twinkle 3s ease-in-out infinite;
}

.hero-particle:nth-child(5) {
    right: 20%;
    top: 30%;
    width: 4px;
    height: 4px;
    background: rgba(255, 183, 77, 0.8);
    box-shadow: 0 0 10px 3px rgba(255, 183, 77, 0.4);
    filter: none;
    animation: sparkle3D 10s ease-in-out infinite 1s, twinkle 2.5s ease-in-out infinite 0.5s;
}

.hero-particle:nth-child(6) {
    left: 70%;
    bottom: 30%;
    width: 6px;
    height: 6px;
    background: rgba(255, 204, 128, 0.7);
    box-shadow: 0 0 14px 4px rgba(255, 204, 128, 0.3);
    filter: none;
    animation: sparkle3D 12s ease-in-out infinite 2s, twinkle 4s ease-in-out infinite;
}

.hero-particle:nth-child(7) {
    left: 35%;
    top: 25%;
    width: 3px;
    height: 3px;
    background: rgba(230, 81, 0, 0.5);
    box-shadow: 0 0 8px 2px rgba(230, 81, 0, 0.2);
    filter: none;
    animation: sparkle3D 9s ease-in-out infinite 3s, twinkle 3.5s ease-in-out infinite 1s;
}

.hero-particle:nth-child(8) {
    right: 35%;
    bottom: 20%;
    width: 4px;
    height: 4px;
    background: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 10px 3px rgba(76, 175, 80, 0.2);
    filter: none;
    animation: sparkle3D 11s ease-in-out infinite 4s, twinkle 2.8s ease-in-out infinite 1.5s;
}

/* 3D Float Animations */
@keyframes float3D-1 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% {
        transform: translate3d(40px, -50px, 80px) rotateX(5deg) rotateY(-5deg) scale(1.1);
    }
    50% {
        transform: translate3d(-30px, 30px, 120px) rotateX(-3deg) rotateY(8deg) scale(0.95);
    }
    75% {
        transform: translate3d(20px, -20px, 40px) rotateX(4deg) rotateY(-3deg) scale(1.05);
    }
}

@keyframes float3D-2 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% {
        transform: translate3d(-50px, 30px, 100px) rotateX(-4deg) rotateY(6deg) scale(1.08);
    }
    50% {
        transform: translate3d(40px, -40px, 60px) rotateX(6deg) rotateY(-4deg) scale(0.92);
    }
    75% {
        transform: translate3d(-20px, 50px, 140px) rotateX(-2deg) rotateY(3deg) scale(1.03);
    }
}

@keyframes float3D-3 {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    33% {
        transform: translate3d(60px, -30px, 90px) rotateX(3deg) rotateY(-7deg) scale(1.12);
    }
    66% {
        transform: translate3d(-40px, -60px, 50px) rotateX(-5deg) rotateY(4deg) scale(0.9);
    }
}

@keyframes sparkle3D {
    0%, 100% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(30px, -40px, 60px); }
    50% { transform: translate3d(-20px, 20px, 100px); }
    75% { transform: translate3d(15px, -10px, 30px); }
}

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

/* ========================================
   Decorative Rings — warm tones
   ======================================== */
.hero-deco-ring {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    transform-style: preserve-3d;
}

.hero-deco-ring--1 {
    width: 700px;
    height: 700px;
    right: -250px;
    top: -150px;
    border: 1px solid rgba(255, 152, 0, 0.08);
    box-shadow:
        inset 0 0 80px rgba(255, 183, 77, 0.06),
        0 0 60px rgba(255, 183, 77, 0.03);
    animation: ring3D-1 40s linear infinite;
}

.hero-deco-ring--1::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 111, 0, 0.06);
    animation: ring3D-inner 25s linear infinite reverse;
}

.hero-deco-ring--1::after {
    content: '';
    position: absolute;
    inset: 100px;
    border-radius: 50%;
    border: 1px dashed rgba(76, 175, 80, 0.06);
    animation: ring3D-inner 35s linear infinite;
}

.hero-deco-ring--2 {
    width: 500px;
    height: 500px;
    left: -200px;
    bottom: -150px;
    border: 1.5px solid rgba(255, 111, 0, 0.07);
    box-shadow:
        inset 0 0 60px rgba(255, 111, 0, 0.04),
        0 0 40px rgba(255, 111, 0, 0.02);
    animation: ring3D-2 35s linear infinite;
}

.hero-deco-ring--2::before {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 183, 77, 0.06);
    animation: ring3D-inner 20s linear infinite reverse;
}

@keyframes ring3D-1 {
    from { transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg); }
    to   { transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes ring3D-2 {
    from { transform: rotateX(-50deg) rotateY(0deg) rotateZ(0deg); }
    to   { transform: rotateX(-50deg) rotateY(-360deg) rotateZ(-360deg); }
}

@keyframes ring3D-inner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Mesh Grid Floor — hidden for warm theme
   ======================================== */
.hero-section .hero-content-wrapper::before {
    display: none;
}

/* ========================================
   Hero Content Wrapper
   ======================================== */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    transform-style: preserve-3d;
}

/* ========================================
   Conference Badge — dark on warm bg
   ======================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: rgba(90, 50, 10, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(180, 120, 40, 0.2);
    border-radius: 50px;
    color: #5D4037;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShimmer 4s ease-in-out infinite;
}

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

.hero-badge i {
    color: #E65100;
    font-size: 1.1rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px) translateZ(-30px); }
    to { opacity: 1; transform: translateY(0) translateZ(0); }
}

/* ========================================
   Logos Row
   ======================================== */
.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
    animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: logoFloat 6s ease-in-out infinite;
}

.hero-logo-img:nth-child(1) { animation-delay: 0s; }
.hero-logo-img:nth-child(2) { animation-delay: 0.5s; }
.hero-logo-img:nth-child(3) { animation-delay: 1s; }

.hero-logo-img:hover {
    transform: scale(1.12) translateY(-5px);
    filter: drop-shadow(0 8px 25px rgba(230, 81, 0, 0.25));
}

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

/* ========================================
   Conference Edition — dark text
   ======================================== */
.hero-edition {
    font-size: 1.8rem;
    font-weight: 400;
    color: #795548;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ========================================
   Main Title
   ======================================== */
.hero-main-title {
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 10px;
    animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.hero-main-title .title-psg {
    background: linear-gradient(135deg, #E65100 0%, #FF8C42 40%, #E65100 80%, #FF6F00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: goldShimmer 4s linear infinite;
    position: relative;
    display: inline-block;
}

.hero-main-title .title-india {
    color: #3E2723;
    text-shadow:
        0 0 40px rgba(62, 39, 35, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.06);
}

.hero-main-title .title-year {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 40%, #2E7D32 80%, #388E3C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: goldShimmer 4s linear infinite 1s;
    display: inline-block;
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ========================================
   Subtitle — dark text
   ======================================== */
.hero-subtitle {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 400;
    color: #6D4C41;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* ========================================
   Info Cards — warm glassmorphism
   ======================================== */
.hero-info-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
    perspective: 800px;
}

.hero-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 230px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Shine effect on cards */
.hero-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

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

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 183, 77, 0.4);
    transform: translateY(-6px) rotateX(3deg) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 152, 0, 0.08);
}

.hero-info-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-info-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.hero-info-card .card-icon.icon-date {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.2), rgba(255, 152, 0, 0.1));
    color: #E65100;
    box-shadow: 0 0 15px rgba(230, 81, 0, 0.08);
}

.hero-info-card .card-icon.icon-venue {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(76, 175, 80, 0.1));
    color: #2E7D32;
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.08);
}

.hero-info-card .card-icon.icon-location {
    background: linear-gradient(135deg, rgba(46, 89, 144, 0.2), rgba(74, 123, 200, 0.1));
    color: #2E5990;
    box-shadow: 0 0 15px rgba(46, 89, 144, 0.08);
}

.hero-info-card .card-text {
    text-align: left;
}

.hero-info-card .card-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #8D6E63;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.hero-info-card .card-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3E2723;
    line-height: 1.3;
}

/* ========================================
   Countdown Timer — warm boxes
   ======================================== */
.hero-countdown {
    margin-bottom: 44px;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.countdown-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8D6E63;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    perspective: 600px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 95px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Top highlight edge */
.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.4), transparent);
}

.countdown-box:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 152, 0, 0.3);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 152, 0, 0.06);
}

.countdown-value {
    font-size: 3.4rem;
    font-weight: 700;
    color: #3E2723;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.countdown-unit {
    font-size: 1.05rem;
    font-weight: 600;
    color: #8D6E63;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

.countdown-separator {
    display: flex;
    align-items: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(141, 110, 99, 0.35);
    padding-bottom: 18px;
    animation: blinkColon 1s step-end infinite;
}

@keyframes blinkColon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ========================================
   CTA Buttons
   ======================================== */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-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: left 0.5s;
}

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

.hero-btn--primary {
    background: linear-gradient(135deg, #E65100 0%, #FF8C42 100%);
    color: #ffffff;
    box-shadow:
        0 4px 20px rgba(230, 81, 0, 0.3),
        0 0 0 0 rgba(230, 81, 0, 0);
    animation: ctaGlow 3s ease-in-out infinite 2s;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(230, 81, 0, 0.3), 0 0 0 0 rgba(230, 81, 0, 0.15); }
    50% { box-shadow: 0 4px 30px rgba(230, 81, 0, 0.45), 0 0 0 8px rgba(230, 81, 0, 0); }
}

.hero-btn--primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.hero-btn--primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-btn--outline {
    background: rgba(255, 255, 255, 0.55);
    color: #3E2723;
    border-color: rgba(141, 110, 99, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(230, 81, 0, 0.3);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    color: #3E2723;
    text-decoration: none;
}

.hero-btn--outline:active {
    transform: translateY(-1px) scale(0.98);
}

/* ========================================
   Scroll Indicator — HIDDEN
   ======================================== */
.hero-scroll-indicator {
    display: none;
}

.hero-scroll-indicator:hover {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.hero-scroll-indicator .scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator .scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    animation: scrollBounce 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    60% { transform: translateX(-50%) translateY(14px); opacity: 0.2; }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .hero-main-title {
        font-size: clamp(3.4rem, 6vw, 6rem);
    }

    .hero-info-cards {
        gap: 14px;
    }

    .hero-info-card {
        padding: 16px 24px;
        min-width: 210px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content-wrapper {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 1.1rem;
        padding: 8px 20px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-logos {
        gap: 20px;
        margin-bottom: 20px;
    }

    .hero-logo-img {
        height: 55px;
    }

    .hero-edition {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-main-title {
        font-size: clamp(3rem, 9vw, 4.8rem);
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 2.5px;
        margin-bottom: 24px;
    }

    .hero-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-info-card {
        width: 100%;
        max-width: 360px;
        padding: 14px 22px;
        min-width: unset;
    }

    .hero-info-card:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .hero-countdown {
        margin-bottom: 30px;
    }

    .countdown-boxes {
        gap: 10px;
    }

    .countdown-box {
        min-width: 72px;
        padding: 16px 14px;
    }

    .countdown-value {
        font-size: 2.6rem;
    }

    .countdown-separator {
        font-size: 2rem;
        padding-bottom: 14px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 15px 30px;
    }

    .hero-deco-ring--1 {
        width: 350px;
        height: 350px;
        right: -120px;
        top: -80px;
    }

    .hero-deco-ring--2 {
        width: 250px;
        height: 250px;
        left: -100px;
        bottom: -80px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 7px 16px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-logos {
        gap: 12px;
        margin-bottom: 16px;
    }

    .hero-logo-img {
        height: 42px;
    }

    .hero-edition {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .hero-main-title {
        font-size: clamp(2.6rem, 11vw, 3.8rem);
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-info-cards {
        margin-bottom: 24px;
    }

    .hero-countdown {
        margin-bottom: 24px;
    }

    .countdown-box {
        min-width: 62px;
        padding: 12px 10px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-unit {
        font-size: 0.95rem;
    }

    .hero-info-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-info-card .card-value {
        font-size: 1.3rem;
    }

    .hero-btn {
        font-size: 1.3rem;
        padding: 13px 24px;
    }
}

/* Extra small phones (iPhone SE, Galaxy Z Fold front) */
@media (max-width: 360px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .hero-logos {
        gap: 10px;
        margin-bottom: 12px;
    }

    .hero-logo-img {
        height: 36px;
    }

    .hero-edition {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .hero-main-title {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-info-card {
        padding: 12px 16px;
    }

    .hero-info-card .card-value {
        font-size: 1.2rem;
    }

    .hero-info-card .card-label {
        font-size: 0.95rem;
    }

    .countdown-box {
        min-width: 55px;
        padding: 10px 8px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-unit {
        font-size: 0.85rem;
    }

    .countdown-separator {
        font-size: 1.6rem;
    }

    .hero-btn {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
}
