/* Two Column Hero Layout */
.hero-two-column {
    display: grid;
    grid-template-columns: 1fr; /* single column so the form appears below */
    gap: 40px;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-column {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center; /* center content now that layout is single column */
}

.hero-form-column {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Column Styling */
.hero-content-column .hero-badge {
    margin-bottom: 30px;
}

.hero-content-column .hero-title {
    text-align: center;
    margin-bottom: 25px;
}

.hero-content-column .hero-subtitle {
    text-align: center;
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-content-column .hero-stats {
    justify-content: center;
    margin-bottom: 40px;
}

.hero-content-column .hero-cta {
    justify-content: center;
}

/* Form Column Styling */
.hero-form-column .side-form {
    max-width: 760px; /* wider form */
    margin: 0 auto; /* centered */
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-two-column {
        gap: 30px;
        padding: 30px 0;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-column {
        text-align: center;
    }
    
    .hero-content-column .hero-title {
        text-align: center;
    }
    
    .hero-content-column .hero-subtitle {
        text-align: center;
    }
    
    .hero-content-column .hero-stats {
        justify-content: center;
    }
    
    .hero-content-column .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-two-column {
        gap: 30px;
        padding: 30px 0;
    }
    
    .hero-content-column .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-content-column .hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-content-column .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-two-column {
        gap: 20px;
        padding: 20px 0;
    }
}
