/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 20px;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    color: #1B4332;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    max-width: 500px;
    color: #666;
    line-height: 1.6;
}


/* ================= GRID ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}


/* ================= CONTACT INFO ================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 20px;
    color: #1B4332;
    margin-top: 5px;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #000;
    word-break: break-word;
}

.email-small {
    font-size: .85rem;
    color: #666;
}


/* ================= CONTACT FORM ================= */

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mailchimp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* ================= NAME ROW ================= */

.name-row {
    display: flex;
    gap: 10px;
}

.name-row input {
    flex: 1;
}


/* ================= INPUTS ================= */

.contact-form input,
.contact-form textarea {
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: .3s;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.08);
}


/* ================= BUTTON ================= */

.contact-btn {
    background: #1B4332;
    color: white;
    border: none;
    padding: 13px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.contact-btn:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}


/* ================= FORM NOTE ================= */

.form-note {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 5px;
}


/* ================= MAP ================= */

.map-container {
    margin-top: 70px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border: 0;
}


/* ================= MOBILE ================= */

@media(max-width:768px) {
    .contact-section {
        padding: 120px 15px 60px;
    }
    .section-title {
        font-size: 1.6rem;
        padding-top: 5%;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    .name-row {
        flex-direction: column;
    }
    .contact-form {
        padding: 20px;
    }
    .contact-btn {
        width: 100%;
    }
    .map-container {
        margin-top: 40px;
    }
    .map-container iframe {
        height: 250px;
    }
}