/* ===== ADD THIS TO YOUR style.css OR <style> TAG ===== */
/* Contact Section Variables & Styles */

.contact-section {
    padding: 160px 0 0;
    background: #ffffff;
}

.contact-section .section-label {
    display: inline-block;
    background: rgba(59, 103, 191, 1);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.contact-section .section-title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #0f1f2e;
    line-height: 1.25;
    margin-bottom: 14px;
}

.contact-section .section-title span { color: #3b67bf; }

.contact-section .section-subtitle {
     font-family: "Nunito", sans-serif;
    color: #94a3b8;
    font-size: 20px;
    max-width: 70%;
    margin: 0 auto;
}

/* CARD GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 0 24px;
}


/* FORM CARD */
.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-card h3 {
    font-size: 22px;
    color: #0f1f2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-card .form-group { margin-bottom: 18px; }

.form-card .form-group label {
    font-family: "Source Sans 3", sans-serif;;
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.form-card .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 21px !important;
    font-size: 14px;
    color: #0f1f2e;
    background: #ffffff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: none !important;
}

.form-card .form-control:focus {
    border-color: #2ecc96 !important;
    box-shadow: 0 0 0 3px rgba(46,204,150,0.15) !important;
}

.form-card .form-control::placeholder { color: #cbd5e1; }

.form-card textarea.form-control { resize: vertical; min-height: 100px; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #3b67bf !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
    background: #1f9966 !important;
    transform: translateY(-1px);
}

.recaptcha-wrap { margin-bottom: 16px; }

/* INFO CARD */
.info-card {
 background: linear-gradient(135deg, #d4f5e6 0%, #a8edcf 55%, #9be8e4 100%);

    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-card h3 {
      font-family: "Nunito", sans-serif;
    font-size: 40px;
    color: #212529;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-card p.subtitle {
    color: #94a3b8;
    font-size: 18px;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    border-radius: 50% !important;
  width: 65px;
    height: 65px;
    border: 2px solid white;
    /*border-radius: 12px;*/
    background: #3b67bf;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #fff;
}

.info-text p.label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3b67bf;
    margin-bottom: 4px;
}

.info-text p.value {
       font-family: "Nunito", sans-serif;
     font-weight: 700;
    font-size: 18px;
    color: #212529;
    line-height: 1.5;
    margin: 0;
}

.contact-section .divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* MAP */
.map-section {
    max-width: 1641px;
    margin: 32px auto 0;
    padding: 0 24px 60px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    height: 380px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* TOAST MESSAGES */
.toast-msg {
    display: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    align-items: center;
    gap: 10px;
}
.toast-msg.show { display: flex; }
.toast-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.toast-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 768px) {
        .contact-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .form-card, .info-card {
        padding: 20px;
        width:100%
    }
.info-icon {
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
}
.info-text p.value {
   
    font-size: 13px;
}
button, a {
        font-size: 14px;
    }
}
