/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.94), rgba(10, 30, 48, 0.9)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 30%;
    padding: 140px 0 80px;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px var(--shadow);
    transition: 0.3s;
    height: 100%;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px var(--shadow);
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
}

/* Map Container */
.map-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

/* FAQ Section */
.faq-item {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: none;
}

.faq-answer.show {
    display: block;
}