/* ===== Contact Section ===== */
.contact {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}
.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #4a5568;
    text-align: center;
    margin-bottom: 0.75rem;
}
.contact-heading .accent {
    color: #2d6a7a;
    font-weight: 800;
    font-style: italic;
}
.contact-subheading {
    text-align: center;
    font-size: 0.95rem;
    color: #5a6577;
    margin-bottom: 3rem;
}
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-left, .contact-right {
    flex: 1;
}

/* Form Styles */
.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 0.35rem;
}
.contact-form-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: #2d6a7a;
    margin-bottom: 1.75rem;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1a2744;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #2d6a7a;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    display: block;
    width: 100%;
    padding: 0.85rem 2rem;
    background: #1a2744;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.btn-submit:hover { background: #2d3f5e; }

/* Office Info */
.contact-office-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1a2744;
    margin-bottom: 1.25rem;
}
.contact-office-title strong {
    font-weight: 800;
}
.office-info {
    list-style: none;
    margin-bottom: 1.5rem;
}
.office-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: #5a6577;
    line-height: 1.6;
}
.office-info li strong {
    color: #1a2744;
    font-weight: 600;
}
.office-info li a {
    color: #2d6a7a;
    text-decoration: none;
    transition: color 0.2s;
}
.office-info li a:hover {
    color: #1a2744;
    text-decoration: underline;
}
.info-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid #6ba3aa;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Map */
.contact-map {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1.5px solid #e2e8f0;
}
.contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* Business Hours */
.business-hours h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 0.5rem;
}
.business-hours p {
    font-size: 0.875rem;
    font-style: italic;
    color: #2d6a7a;
    line-height: 1.7;
}

/* ===== Responsive: Contact ===== */
@media (min-width: 640px) {
    .form-row {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .contact-content { flex-direction: row; gap: 4rem; }
    .contact-heading { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .contact { padding: 5rem 3rem 6rem; }
}
