/* ═══════════════════════════════════════════════════════════════ */
/* CONTACT CARDS LAYOUT - ENSURE PROPER GRID DISPLAY */
/* ═══════════════════════════════════════════════════════════════ */

/* Ensure cards-form-wrapper displays appointment + form side by side */
.cards-form-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem 1rem;
}

/* Responsive cards row - mobile first */
.contact-cards-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Contact form - mobile first */
.contact-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px 24px !important;
}

/* Tablet: 2-column form */
@media (min-width: 768px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop: 3-column cards row */
@media (min-width: 1025px) {
    .contact-cards-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .cards-form-wrapper {
        padding: 2rem 3rem !important;
    }
}

/* Full-width form groups */
.form-group.full {
    grid-column: span 1 !important;
}

@media (min-width: 768px) {
    .form-group.full {
        grid-column: span 2 !important;
    }
}

.form-group .radio-group {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.95rem 1.2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    /* text-align: center; */
}
.form-group .radio-group label {
    /* margin-left: 1.1rem; */
    display: inline-flex;
    align-items: center;
    gap: 6px;
}