/* --- CONTACT SECTION WRAPPER --- */
.contact-section-modern {
    padding: 100px 0;
    background: #ffffff; /* Contrast against the tinted pricing section */
    position: relative;
}

/* Section Header Alignment */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* --- THE CONTENT GRID --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* --- LEFT COLUMN: INFO CARDS & MAP --- */
.info-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(11, 74, 153, 0.2);
}

.info-text h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
}

.info-text p,
.info-text a {
    margin: 0;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 0; /* Removes weird iframe gap */
}

/* --- RIGHT COLUMN: MODERN FORM --- */
.modern-contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 15px;
    background: #fcfdfe;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 74, 153, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.submit-btn:hover {
    background: #083a7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 74, 153, 0.3);
}

.submit-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translate(5px, -5px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .contact-section-modern {
        padding: 60px 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modern-contact-form {
        padding: 30px 20px;
    }
}