/* Enhanced Hero Section Styles - Uniformed to Site Colors */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.2) contrast(1.1) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 149, 255, 0.35) 0%,
        rgba(64, 169, 255, 0.25) 50%,
        rgba(100, 181, 255, 0.35) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: heroSlideDown 1s ease-out 0.5s both;
}

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

.hero-badge i {
    color: #ffc107;
    font-size: 1rem;
    animation: spin 3s linear infinite;
}

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

.hero-title {
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: #e9ecef;
    margin-bottom: 0.5rem;
    animation: heroSlideLeft 1s ease-out 0.7s both;
}

@keyframes heroSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0;
    animation: heroSlideRight 1s ease-out 0.9s both;
}

@keyframes heroSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffc107;
    font-style: italic;
    margin-top: 0.5rem;
    animation: heroSlideUp 1s ease-out 1.1s both;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f8f9fa;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeIn 1s ease-out 1.3s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: heroSlideUp 1s ease-out 1.5s both;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero.btn-primary {
    background: #007bff;
    color: white;
}

.btn-hero.btn-primary:hover {
    background: #0056b3;
}

.btn-hero.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-hero.btn-secondary:hover {
    background: #545b62;
}

.btn-hero.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #fff;
}

.btn-hero.btn-outline:hover {
    background: #fff;
    color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 3rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .btn-hero {
        min-width: auto;
        width: 100%;
        max-width: 260px;
    }
}
