/* ========== 联系我们页面样式 - Contact Page Styles ========== */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    background-color: #F5F5F3;
}

/* 导航栏固定 */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Hero区域 - 文档风格 */
.contact-hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: #0A0A0A;
    color: white;
}

.contact-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    color: #fff;
}

.contact-hero p {
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* 联系方式卡片 - 文档风格 */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: -30px auto 60px;
    max-width: 1200px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* 复用文档卡片基础样式 */
.doc-card {
    position: relative;
    background: #fff;
    border: 3px solid #0A0A0A;
    padding: 28px 24px 20px;
    box-shadow: 6px 6px 0 #E8E6E3;
    transition: box-shadow .2s, transform .2s;
}
.doc-card:hover {
    box-shadow: 8px 8px 0 #E8E6E3;
    transform: translate(-2px, -2px);
}
.doc-card-label {
    position: absolute;
    top: 0;
    left: 16px;
    background: #0A0A0A;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 14px;
    transform: translateY(-50%);
}
.doc-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 22px;
    color: #0A0A0A;
    margin: 4px 0 14px;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.doc-card-body {
    background: #0A0A0A;
    padding: 18px;
}

/* 联系方式特有样式 */
.doc-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 10px;
}
.doc-contact-row i {
    color: #FF3366;
    font-size: 18px;
    flex-shrink: 0;
}
.doc-contact-row span {
    color: #eee;
    font-size: 15px;
    font-weight: 500;
    word-break: break-all;
}
.doc-contact-note {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #666;
    letter-spacing: .03em;
}

/* 卡片内操作按钮 */
.doc-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF3366;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    margin-bottom: 10px;
}
.doc-contact-btn:hover {
    background: #fff;
    color: #FF3366;
    box-shadow: 0 0 0 2px #FF3366;
}
.doc-contact-btn i { font-size: 13px; }

/* 表单区域 - 文档风格 */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.form-header-brutal {
    text-align: center;
    margin-bottom: 48px;
}

.form-header-brutal h2 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 12px;
    color: #0A0A0A;
}

.form-header-brutal p {
    color: #666;
}

.contact-form-brutal {
    background: #fff;
    border: 3px solid #0A0A0A;
    padding: 40px;
    box-shadow: 8px 8px 0 #E8E6E3;
}

.form-group-brutal {
    margin-bottom: 24px;
}

.form-label-brutal {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0A0A0A;
    margin-bottom: 8px;
}

.form-label-brutal::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FF3366;
    margin-right: 8px;
    vertical-align: middle;
}

textarea.input-brutal {
    resize: vertical;
    min-height: 150px;
}

/* 地图区域 - 文档风格 */
.map-section {
    background: #F5F5F3;
    border-top: 3px solid #0A0A0A;
    border-bottom: 3px solid #0A0A0A;
    padding: 80px 24px;
    margin-top: 60px;
}

.map-container-brutal {
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid #0A0A0A;
    overflow: hidden;
    box-shadow: 6px 6px 0 #E8E6E3;
}

.map-container-brutal iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* FAQ区域 - 文档风格 */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.faq-item-brutal {
    border: 2px solid #0A0A0A;
    margin-bottom: 16px;
    background: #fff;
    transition: all .2s;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0A0A0A;
    transition: all .15s;
}

.faq-question:hover {
    background: #F5F5F3;
    color: #FF3366;
}

.faq-question i {
    font-size: 18px;
    transition: transform .2s;
    color: #FF3366;
}

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

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

.faq-answer-content {
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid rgba(10, 10, 10, .08);
    padding-top: 16px;
}

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

/* 响应式 */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 24px 60px;
    }

    .contact-form-brutal {
        padding: 28px 20px;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .doc-card { margin-bottom: 20px; }
    .doc-card-title { font-size: 19px; }

    .map-container-brutal iframe {
        height: 350px;
    }
}

/* ========== 导航栏增强样式 ========== */
.brutal-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.brutal-menu { position: relative; display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.brutal-menu > li { position: relative; }
.brutal-menu-link { display: flex; align-items: center; gap: 4px; padding: 8px 16px; font-family: var(--brutal-font-sans); font-weight: 600; font-size: 14px; color: var(--brutal-text-primary); text-decoration: none; transition: all 0.2s ease; border: 2px solid transparent; position: relative; }
.brutal-menu-link:hover { color: var(--brutal-accent-red); border-color: transparent; background: rgba(255,51,102,0.05); }
.brutal-menu-link::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0; height:3px; background:#FF3366; transition:width 0.3s; }
.brutal-menu-link:hover::after { width:80%; }
.brutal-dropdown { display:none; position:absolute; top:100%; left:0; min-width:200px; background:var(--brutal-bg-secondary); border:2px solid var(--brutal-border-black); padding:12px 0; box-shadow:var(--brutal-shadow-lg); z-index:9999; margin-top:4px; }
.brutal-dropdown-item { display:block; padding:10px 20px; color:var(--brutal-text-secondary); font-size:13px; text-decoration:none; transition:all 0.15s; font-family:var(--brutal-font-sans); }
.brutal-dropdown-item:hover { color:var(--brutal-accent-red); background:rgba(255,51,102,0.06); padding-left:24px; }
.brutal-mobile-menu { display:none; border-top:2px solid var(--brutal-border-light); background:var(--brutal-bg-secondary); }
.brutal-mobile-list { list-style:none; margin:0; padding:16px 24px; }
.brutal-mobile-list li a { display:block; padding:12px 0; color:var(--brutal-text-primary); font-size:15px; font-weight:600; text-decoration:none; border-bottom:1px solid var(--brutal-border-light); font-family:var(--brutal-font-sans); }
.brutal-hamburger { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:36px; height:36px; background:transparent; border:2px solid var(--brutal-border-black); cursor:pointer; padding:6px; transition:all 0.2s; }
.brutal-hamburger span { display:block; width:100%; height:2px; background:var(--brutal-text-black); transition:all 0.3s; }
.brutal-hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.brutal-hamburger.active span:nth-child(2) { opacity:0; }
.brutal-hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
@media (max-width:768px) {
    .brutal-hamburger { display:flex; }
    .brutal-menu { display:none; }
    .brutal-mobile-menu.display-block { display:block !important; }
}

/* ========== 恢复系统默认鼠标光标 ========== */
* { cursor: auto !important; }
body { cursor: default !important; }
a, button, .btn, input, textarea, select { cursor: pointer !important; }
.cursor-wrapper, .cursor-dot, .cursor-ring { display: none !important; }

/* ========== Footer样式 ========== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-new { background-color: #0A0A0A; color: #CCCCCC; padding: 70px 0 30px; border-top: 3px solid #0A0A0A; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-brand { flex-shrink: 0; margin-right: 60px; max-width: 360px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { width: 42px; height: 42px; object-fit: contain; border: none; }
.footer-brand-name { font-family: var(--brutal-font-serif); font-size: 20px; font-weight: 800; color: #FFFFFF; }
.footer-brand-desc { font-size: 14px; color: #888888; line-height: 1.7; margin: 0; }
.footer-links-wrap { display: flex; flex: 1; justify-content: flex-end; gap: 60px; }
.footer-links-col { min-width: 100px; }
.footer-col-title { font-family: var(--brutal-font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #666666; margin-bottom: 20px; }
.footer-col-label { font-family: var(--brutal-font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #555555; margin-bottom: 8px; display: block; }
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a { color: #AAAAAA; font-size: 14px; text-decoration: none; transition: color 0.2s ease; display: block; padding: 3px 0; }
.footer-links-list a:hover { color: var(--brutal-accent-red); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-copyright { color: #777777; font-size: 13px; margin: 0; line-height: 2; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.footer-copyright a { color: #777777; text-decoration: none; transition: color 0.2s ease; }
.footer-copyright a:hover { color: var(--brutal-accent-red); }

.footer-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 16px;
	padding: 16px 24px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 4px;
}
.badge-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	font-weight: 600;
	color: #AAAAAA;
	padding: 6px 14px;
	background: rgba(0,0,0,0.3);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 3px;
	transition: all 0.25s ease;
	white-space: nowrap;
}
.badge-item img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	flex-shrink: 0;
}
@media(max-width:992px){.footer-main{flex-direction:column;gap:36px}.footer-brand{margin-right:0;text-align:center;max-width:100%}.footer-logo-wrap{justify-content:center}.footer-links-wrap{flex-wrap:wrap;justify-content:center;gap:32px}.footer-links-col{min-width:calc(50% - 16px)}}
@media(max-width:576px){.footer-links-col{min-width:100%;text-align:center}.footer-copyright{flex-direction:column;gap:4px}}
