/* ================= CONTACT SECTION ================= */

.contact-section {
    background-color: #f8fafc;
    padding: 5rem 0 0;
}

/* Main Grid */
.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #1e293b;
}

.contact-details strong {
    color: #0f172a;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-size: 0.95rem;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 0.9rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #1e40af;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Map */
.map-container {
    margin-top: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }
}
