/* Remove gap from MudBlazor container for this page */
.visa-hero-section ~ * .mud-container {
    padding-top: 0 !important;
}

/* Visa Hero Section */
.visa-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 3rem;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.visa-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.visa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(53, 104, 89, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(53, 104, 89, 0.9) 100%);
    z-index: 1;
}

.visa-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.visa-hero-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Badge */
.visa-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FD5523 0%, #e04a20 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Hero Title */
.visa-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    text-align: center;
}

/* Hero Subtitle */
.visa-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Hero Features */
.visa-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .feature-item i {
        font-size: 1.25rem;
        color: #FD5523;
    }

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .visa-hero-section {
        height: 55vh;
        min-height: 350px;
    }

    .visa-hero-title {
        font-size: 2.75rem;
    }

    .visa-hero-subtitle {
        font-size: 1.25rem;
    }

    .visa-hero-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .visa-hero-section {
        height: 50vh;
        min-height: 350px;
        margin-bottom: 2rem;
    }

    .visa-hero-title {
        font-size: 2.25rem;
    }

    .visa-hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .visa-hero-content {
        padding: 1.5rem;
    }

    .visa-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .visa-hero-section {
        height: 45vh;
        min-height: 320px;
    }

    .visa-hero-title {
        font-size: 1.875rem;
    }

    .visa-hero-subtitle {
        font-size: 1rem;
    }

    .visa-hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1rem;
    }

    .visa-hero-content {
        padding: 1rem;
    }

    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

        .feature-item i {
            font-size: 1rem;
        }
}

/* Decorative Element */
.visa-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #356859 0%, #FD5523 50%, #356859 100%);
    z-index: 3;
}

.visa-a {
    text-decoration: none;
}

.visa-a a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}
