/* ================= GENERAL ================= */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a3d3c;
}

p.subtext {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #555;
}

/* ================= LAYOUT ================= */
.contact-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* ================= FORM ================= */
.contact-form {
    flex: 1 1 520px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

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

.contact-form button {
    background: #ffcc00;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* ================= CONTACT INFO ================= */
.contact-info {
    flex: 1 1 380px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Individual contact box */
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

/* Icon box */
.contact-icon {
    min-width: 48px;
    height: 48px;
    background: #ffcc00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

/* Text */
.contact-text h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: #1a3d3c;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ================= MAP ================= */
.map {
    margin-top: 25px;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}