/* ==================== CONTACT US PAGE STYLING ==================== */
.recaptcha_wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-page-section {
    padding: 70px 0 90px 0;
    background-color: #f7f9f6;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Cards Side */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid #dcebd4;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
    border-color: #2e7d32;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: #eaf2e8;
    color: #2e7d32;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 14px;
    color: #556058;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Form Side */
.contact-form-col {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #dcebd4;
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.05);
}

.magic-contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 8px;
}

.magic-contact-form > p {
    font-size: 14.5px;
    color: #556058;
    margin-bottom: 25px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a3022;
    margin-bottom: 8px;
}

.form-group label i {
    color: #2e7d32;
    margin-right: 5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #d8e8d3;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    background: #fcfdfc;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
    background: #ffffff;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.45);
}

/* Google Map */
.map-section {
    width: 100%;
    line-height: 0;
    background: #ffffff;
    padding-bottom: 0px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.map-container iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-col {
        padding: 25px;
    }
}