/* 联系我们页样式 */

.page-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/media/GettyImages-153765931.jpg');
    padding: 120px 0;
    text-align: center;
    color: white;
}

.contact-info-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.contact-info-box h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-control {
    border-radius: 0;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--theme-color);
}

.map-container {
    height: 400px;
    width: 100%;
    background-color: #eee;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   21. FAQ / Accordion
   =================================== */

.accordion .card {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.accordion .card-header {
    background-color: white;
    border-bottom: none;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.accordion .btn-link:hover {
    color: var(--theme-color);
    background-color: #f8f9fa;
}

.accordion .btn-link::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion .btn-link:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion .card-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}