.contact-hero {
    background: linear-gradient(rgba(123, 45, 38, 0.9), rgba(123, 45, 38, 0.8)), url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 200px;
    height: 4px;
    background: var(--accent1);
    margin-top: 12px;
    border-radius: 2px;
    position: relative;
    left: 43%;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
}

.form-control {
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e9e9e9;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(123, 45, 38, 0.25);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: var(--bg-sky);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-active .faq-answer {
    max-height: 300px;
    padding: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .map-container {
        height: 300px;
        margin-bottom: 2rem;
    }
}