/* REPLACE your existing hero section CSS with this updated version */

/* Hero Section - Fixed Top Spacing */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Mobile: Start 10% from top */
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 1.5rem;
    width: 100%;
    /* Mobile: Center content properly */
    min-height: 80vh;
    justify-content: center;
}

/* HERO TITLE & SUBTITLE */
.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    padding-top: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* MOBILE PERFECT - Updated Responsive Design */
@media (max-width: 768px) {
    .hero {
        /* Mobile: Exactly 10% from top */
        padding-top: 10vh !important;
        padding-bottom: 10vh !important;
        min-height: calc(100vh - 20vh);
        align-items: flex-start; /* Start from top */
        padding-top: 12vh; /* Fine-tune for mobile */
    }
    
    .hero-content {
        gap: 1rem;
        padding: 0 15px;
        /* Remove min-height, let content flow naturally */
        min-height: auto;
        justify-content: flex-start;
        padding-top: 2rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 10vh !important;
        padding-bottom: 5vh !important;
    }
    
    .hero-content {
        padding: 1rem 10px;
        gap: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .btn {
        max-width: 280px;
    }
}

/* NEW HERO ELEMENTS */
.hero-tagline {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-highlight {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
    color: white;
    padding: 1rem 0.5rem;
}

.stat h3 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-highlight {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
        margin: 0.75rem 0;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat {
        flex: 1;
        min-width: 90px;
        padding: 0.75rem 0.25rem;
    }
}
.stat h3 {
    color: white;  /* This forces ALL emojis white */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}
