/* Contact page styles */

/* Page header */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/resources/operation.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4.5rem;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.header-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact info */
.contact-section {
    padding: 6rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.info-icon .icon {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-text {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-subtext {
    font-size: 1rem;
    color: var(--text-light);
}

/* Contact form */
.contact-form {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color)/10;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Follow us */
.follow-us {
    padding: 6rem 0;
    text-align: center;
    background-color: #f8f9fa;
}

.follow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.follow-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.qr-item {
    text-align: center;
}

.qr-placeholder {
    width: 160px;
    height: 160px;
    background-color: #ff6b8b;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.qr-item p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

/* 确保页脚样式不被覆盖 */
.footer {
    background-color: #2c2c2c !important;
}

.footer-content {
    background-color: #2c2c2c !important;
} 