.hero-section {
    position: relative;
    background: linear-gradient(to right, rgba(0, 113, 206, 0.95), rgba(0, 113, 206, 0.8)), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: min(300px, 35vh);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-tagline {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0071CE;
    background: #FFC220;
    border-radius: 9999px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 194, 32, 0.3);
    background: #ffcd4d;
}

.hero-cta i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s ease forwards 0.6s;
}

.hero-image img {
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    object-fit: cover;
}

.featured-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #FFC220;
    color: #0071CE;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards 1s;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    background: white;
    border-radius: 50%;
}

.floating-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: float 20s infinite;
}

.floating-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
    animation: float 15s infinite reverse;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(20px, 0);
    }
    75% {
        transform: translate(10px, 10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 1.25rem 0;
    }
    
    .hero-image {
        margin-top: 0.75rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        width: auto;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .hero-title {
        margin-bottom: 0.375rem;
    }
    
    .hero-tagline {
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-tagline,
    .hero-cta,
    .hero-image,
    .featured-tag,
    .floating-element {
        animation: none;
        transform: none;
        opacity: 1;
    }
}