/* Hero Section */
#hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary);
}

#hero .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(0.6) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 70, 116, 0.92) 0%, rgba(41, 70, 116, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .text-secondary {
    color: var(--secondary) !important;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
}

/* Feature Cards in Hero */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-feature-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.hero-feature-card h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    #hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        margin-top: 2.5rem;
    }
}