/* Contact Page Specific Styles */
.contact-container {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.page-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 6px;
    height: fit-content;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 12px;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details .detail-label {
    font-weight: 700;
    display: inline-block;
    width: 80px;
}

.office-hours {
    margin-bottom: 30px;
}

.office-hours h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.office-hours p {
    margin-bottom: 8px;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
}

.contact-social-link:hover {
    background-color: #1a1a1a;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #333;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #333;
    color: white;
    border: none;
    padding: 14px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

.map-container {
    margin-top: 60px;
    border-radius: 6px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-info {
        padding: 25px;
    }

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

@media (max-width: 480px) {
    .contact-container {
        margin: 30px auto 60px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.3rem;
    }

    .map-container {
        height: 300px;
        margin-top: 40px;
    }
}