/* ==================== 页面头部 ==================== */
.page-header {
    padding: 160px 40px 80px;
    text-align: center;
    background: var(--bg-cream);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', 'Microsoft YaHei', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== 联系信息 ==================== */
.contact-section {
    padding: 100px 40px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* 联系信息卡片 */
.contact-info {
    padding: 50px;
    background: var(--bg-cream);
}

.info-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', 'Microsoft YaHei', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.info-content h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
}

/* 社交媒体 */
.social-links {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.social-links h4 {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* 联系表单 */
.contact-form {
    padding: 20px 0;
}

.form-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', 'Microsoft YaHei', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group label span {
    color: #c44;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-submit {
    padding: 18px 50px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
}

/* ==================== 门店地图 ==================== */
.stores-section {
    padding: 100px 40px;
    background: var(--bg-cream);
}

.stores-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', 'Microsoft YaHei', serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.store-card {
    background: white;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid transparent;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary);
}

.store-country {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.store-name {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', 'Microsoft YaHei', serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.store-type {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.store-address {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.store-hours {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.store-link:hover {
    gap: 12px;
}

.store-link svg {
    width: 16px;
    height: 16px;
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 100px 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-gray);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}
