/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
    background-image: url('../assets/img/Blue_Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 51, 0.3);
}

/* Ripple Animation */
@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: ripple 4s linear infinite;
}

.ripple-circle:nth-child(1) {
    animation-delay: 0s;
}

.ripple-circle:nth-child(2) {
    animation-delay: 1s;
}

.ripple-circle:nth-child(3) {
    animation-delay: 2s;
}

.ripple-circle:nth-child(4) {
    animation-delay: 3s;
}

/* Hero Logo */
.hero-logo {
    margin: 0;
}

.hero-logo-img {
    width: min(100%, 23rem);
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 32px !important;
    line-height: 1.25 !important;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Form Card (Hidden by default) */
.hero-form-card {
    width: 100%;
    max-width: 28rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem 2.5rem;
    animation: fadeIn 0.5s ease-out 0.5s both;
    text-align: left;
    position: relative;
    z-index: 20;
    margin: 0 auto;
    display: none;
}

.hero-form-card.show {
    display: block;
}

/* Logo filter for blue color */
.logo-blue-filter {
    filter: brightness(0) saturate(100%) invert(23%) sepia(99%) saturate(2853%) hue-rotate(216deg) brightness(100%) contrast(106%);
}

/* Mobile: iPhone 12/13/14 (390x844) */
@media (max-width: 390px) and (max-height: 844px) {
    .hero-section {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section .max-w-7xl {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .hero-logo-img {
        width: min(100%, 18.4rem);
    }

    .hero-tagline {
        font-size: 32px !important;
        width: 100%;
        max-width: 100%;
    }

    .hero-section p:not(.hero-tagline) {
        font-size: 16px !important;
    }

    .hero-section .button-1 {
        margin-bottom: 0 !important;
    }
}

