.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #003366 0%, #000000 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    max-height: 500px;
    border: 4px solid rgba(0, 168, 255, 0.3);
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(0, 168, 255, 0.6);
}

.hero-stats-badge {
    animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .hero-image {
        max-height: 350px;
        margin-top: 2rem;
    }
    
    .hero-stats-badge {
        display: none;
    }
}
