/* =================================== */
/* CONTACT PAGE STYLES                 */
/* =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Form side is slightly wider */
    gap: 60px;
    align-items: start;
}

/* Left Side: Info */
.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-list i {
    font-size: 20px;
    color: #C5A059; /* Gold */
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.info-list h4 {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #0A2342;
    margin-bottom: 5px;
}

.info-list p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 250px;
    border: 1px solid #eee;
    filter: grayscale(50%); /* Slightly muted map looks more professional */
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Right Side: Form */
.contact-form-wrapper {
    background: #F8F9FA;
    padding: 40px;
    border-top: 4px solid #0A2342;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-instruction {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C5A059; /* Gold focus ring */
}

.form-group textarea {
    resize: vertical;
}

.btn-form {
    width: 100%;
    padding: 14px;
    background-color: #0A2342;
    color: #fff;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-form:hover {
    background-color: #C5A059;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}