/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.section-banner {
    background-color: #1a1a1a;
    padding: 30px 0;
    margin-bottom: 60px;
}

.section-banner h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #0056b3;
}

/* Contact Form */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background: #0056b3;
}

/* Business Hours */
.business-hours {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.business-hours h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.business-hours p {
    color: #666;
    margin-bottom: 2rem;
}

.hours-location {
    margin-bottom: 2rem;
}

.hours-location h4 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

.hours-list strong {
    color: #333;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .contact-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .section-banner h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-section {
        padding: 100px 0 60px;
    }

    .section-banner {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .business-hours {
        padding: 30px 20px;
    }
}
