/* ============================================================
   88 Appliances & AC — 新泽西高地公园家电与空调
   明亮、大气、舒适的中文站点样式
   ============================================================ */

:root {
    --red: #E63946;
    --red-dark: #C92D3A;
    --blue: #0B5ED7;
    --blue-dark: #083D77;
    --blue-light: #3B82F6;
    --accent: #93C5FD;
    --dark-color: #083D77;
    --text: #1E293B;
    --muted: #64748B;
    --bg-soft: #F8FAFC;
    --bg-blue: #EFF5FF;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow: 0 10px 30px rgba(11, 94, 215, 0.08);
    --shadow-lg: 0 18px 50px rgba(11, 94, 215, 0.14);
    --radius: 16px;
    --transition: all 0.3s ease;
    --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; display: block; }

h1, h2, h3 { color: var(--dark-color); line-height: 1.3; font-weight: 800; }

.section { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, #eef4fc 0%, #e7eefb 100%); border-top: 1px solid #e3ebf7; border-bottom: 1px solid #e3ebf7; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-head h2 { font-size: 2.1rem; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(230,57,70,0.28); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }
.btn-quote { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(230,57,70,0.32); }
.btn-quote:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }

/* Floating quote button (all pages) */
.float-quote {
    position: fixed; right: 18px; bottom: 18px; z-index: 1200;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white); font-weight: 800;
    padding: 14px 22px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 10px 26px rgba(230,57,70,0.45);
    animation: floatPulse 2.2s ease-in-out infinite;
}
.float-quote:hover { background: var(--red-dark); color: var(--white); transform: scale(1.05); }
@keyframes floatPulse { 0%,100% { box-shadow: 0 10px 26px rgba(230,57,70,0.45); } 50% { box-shadow: 0 10px 32px rgba(230,57,70,0.75); } }
@media (prefers-reduced-motion: reduce) { .float-quote { animation: none; } }
@media (max-width: 720px) { .float-quote { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 0.95rem; } }

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.92);
    font-size: 0.88rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.92); }
.topbar a:hover { color: var(--accent); }
.topbar .topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: inline-block; color: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.4); border-radius: 20px; padding: 2px 12px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
.lang-switch:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(11,94,215,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; }
.logo a { display: flex; align-items: center; gap: 10px; }
.logo img { height: 72px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.98rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--bg-blue); }
.nav-cta { margin-left: 8px; }
.nav-cta a { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff !important; padding: 13px 30px; border-radius: 50px; font-weight: 700; }
.nav-cta a:hover { background: var(--red-dark); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
    color: var(--white);
    overflow: hidden;
}
.hero::after {
    content: ""; position: absolute; right: -120px; top: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    z-index: 1;
}
/* Hero 背景图轮播（每4秒淡入切换） */
.hero-bg-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* 全屏滑动轮播：每张停留6秒，平滑从右到左滑动切换（新图自右滑入、旧图向左滑出；reduce-motion 也照常运行） */
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; transform: translateX(100%); transition: transform 1.1s ease-in-out; }
.hero-slide.active { transform: translateX(0); }
.hero-slide.exiting { transform: translateX(-100%); }
.hero-slide.no-trans { transition: none; }
/* 左侧文字区域背景模糊：左边模糊、向右渐隐到清晰（不影响右侧家电锐度） */
.hero-bg-slides::before { content: ""; position: absolute; inset: 0; z-index: 1; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); -webkit-mask-image: linear-gradient(to right, #000 0%, #000 30%, transparent 56%); mask-image: linear-gradient(to right, #000 0%, #000 30%, transparent 56%); }
/* 蓝色透明遮罩，全屏统一不透明度 0.24（整体提亮），位于背景之上、文字之下 */
.hero-bg-slides::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(8,43,92,0.24); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; align-items: center; padding-top: 96px; padding-bottom: 96px; }
.hero-text { max-width: 620px; }
.hero-text h1, .hero-text p.lead, .hero-text .hero-points { text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.hero-badge {
    display: inline-block; background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 7px 16px; border-radius: 50px; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: 2.9rem; line-height: 1.18; margin-bottom: 18px; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { font-size: 1.18rem; color: rgba(255,255,255,0.92); margin-bottom: 16px; }
.hero .hero-points { list-style: none; margin: 0 0 28px; display: grid; gap: 10px; }
.hero .hero-points li { display: flex; align-items: center; gap: 10px; font-size: 1.02rem; }
.hero .hero-points li::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: rgba(255,255,255,0.18); color: #fff; border-radius: 50%; font-size: 0.8rem; font-weight: 800; flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero 渐进式入场动画（级联展示 → 保持静止 → 循环重播，由 JS 定时切换 .play 触发） */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero.play .hero-text > *     { animation: heroFadeUp 0.8s ease-out both; }
.hero.play .hero-text > .hero-badge  { animation-delay: 0.2s; }
.hero.play .hero-text > h1           { animation-delay: 0.7s; }
.hero.play .hero-text > p.lead       { animation-delay: 1.2s; }
.hero.play .hero-text > .hero-points { animation-delay: 1.7s; }
.hero.play .hero-text > .hero-actions{ animation-delay: 2.2s; }
.hero.play .hero-visual img { animation: heroFadeUp 1s ease-out 0.6s both; }
/* 展厅标签在白色图片出现后再淡入（仅改透明度，保留居中的 translateX(-50%)） */
@keyframes heroTagIn { from { opacity: 0; } to { opacity: 1; } }
.hero.play .hero-visual .hero-tag { animation: heroTagIn 0.7s ease-out 1.7s both; }
/* 循环重播之间的整体淡出过渡 */
.hero .hero-text, .hero .hero-visual { transition: opacity 0.55s ease; }
.hero.fade-out .hero-text, .hero.fade-out .hero-visual { opacity: 0; }
.hero.instant .hero-text, .hero.instant .hero-visual { transition: none; }
@media (prefers-reduced-motion: reduce) {
    .hero.play .hero-text > *, .hero.play .hero-visual img, .hero.play .hero-visual .hero-tag { animation: none; }
    .hero .hero-text, .hero .hero-visual { transition: none; }
}
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg); padding: 68px 22px; max-width: 460px; width: 100%; height: auto; margin: 0 auto; }
.hero-visual .hero-tag {
    position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
    background: var(--white); color: var(--blue-dark); padding: 10px 22px;
    border-radius: 50px; font-weight: 800; box-shadow: var(--shadow); white-space: nowrap;
    border: 2px solid var(--blue);
}

/* ---------- Quick info strip (浅色过渡条) ---------- */
.info-strip { background: linear-gradient(180deg, #ffffff 0%, var(--bg-blue) 100%); color: var(--text); border-bottom: 1px solid var(--border); }
.info-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 26px 20px; }
.info-strip .info-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.info-strip .info-item .ico { font-size: 1.4rem; width: 50px; height: 50px; flex-shrink: 0; background: #fff; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.info-strip .info-item strong { display: block; font-size: 1.05rem; color: var(--dark-color); }
.info-strip .info-item span { font-size: 0.9rem; color: var(--muted); }
.info-strip a { color: var(--blue); }
.info-strip a:hover { color: var(--blue-dark); }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px; transition: var(--transition);
    box-shadow: var(--shadow); height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(11,94,215,0.35); }
.card .card-ico {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--bg-blue); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); }
.card .card-link { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--blue); }
.card .card-link:hover { color: var(--blue-dark); }

/* ---------- Image feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row + .feature-row { margin-top: 64px; }
.feature-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.feature-text .eyebrow { color: var(--blue); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.82rem; }
.feature-text h2 { font-size: 1.9rem; margin: 10px 0 16px; }
.feature-text p { color: var(--muted); margin-bottom: 14px; }
.feature-list { list-style: none; display: grid; gap: 10px; margin: 18px 0 24px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; }
.feature-list li::before { content: "✓"; color: var(--blue); font-weight: 800; flex-shrink: 0; }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 20px; text-align: center; }
.stat .num { font-size: 2.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat .label { margin-top: 8px; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ---------- Brand chips ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-chip {
    background: var(--white); border: 1px solid var(--border);
    padding: 12px 26px; border-radius: 50px; font-weight: 800;
    color: var(--blue-dark); box-shadow: var(--shadow); font-size: 1.05rem;
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(8,61,119,0.88));
    color: #fff; padding: 30px 16px 14px; font-weight: 700; font-size: 0.95rem;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; position: relative; box-shadow: var(--shadow); }
.step::before {
    counter-increment: step; content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; background: var(--blue); color: #fff;
    border-radius: 50%; font-weight: 900; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff; text-align: center;
}
.cta-band .container { padding: 60px 20px; }
.cta-band h2 { color: #fff; font-size: 2.1rem; margin-bottom: 12px; }
.cta-band p { font-size: 1.12rem; color: rgba(255,255,255,0.92); margin-bottom: 26px; }
.cta-band .btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.22); }
.cta-band .btn-primary:hover { background: var(--red-dark); color: #fff; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline:hover { background: #fff; color: var(--blue); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #fff; text-align: center; padding: 64px 20px;
}
.page-hero h1 { color: #fff; font-size: 2.5rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 14px; }
.breadcrumb a { color: var(--accent); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info .info-block { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .info-block .ico { width: 48px; height: 48px; flex-shrink: 0; background: var(--bg-blue); color: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-info .info-block h4 { margin-bottom: 4px; font-size: 1.08rem; }
.contact-info .info-block p, .contact-info .info-block a { color: var(--muted); }

.contact-form {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: 10px; font-size: 1rem; font-family: inherit; margin-bottom: 16px;
    background: var(--bg-soft); transition: var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--blue); background: #fff;
    box-shadow: 0 0 0 3px rgba(11,94,215,0.13);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { width: 100%; justify-content: center; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow); }
.faq-q { padding: 18px 22px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--dark-color); }
.faq-q .mark { color: var(--blue); font-size: 1.4rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .mark { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- About values ---------- */
.value-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ---------- Notice / promo ---------- */
.notice {
    background: var(--bg-blue); border-left: 4px solid var(--red);
    border-radius: 12px; padding: 20px 24px; margin: 0 auto; max-width: 820px;
}
.notice strong { color: var(--red); }

/* ---------- Legal pages (隐私政策/服务条款) ---------- */
.legal-content h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--muted); margin-bottom: 14px; line-height: 1.9; }

/* ---------- Footer (美式高端家居服务风格) ---------- */
.site-footer { background: #0B4EA2; color: #fff; }
.footer-main { padding: 76px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1.2fr 1fr 1fr; gap: 56px; }

.footer-col h4 { color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: 0; margin-bottom: 18px; padding-bottom: 6px; position: relative; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; }

/* 品牌栏 */
.footer-brand-logo { display: block; width: 212px; max-width: 100%; height: auto; margin-bottom: 22px; }
.footer-brand-desc { color: rgba(255,255,255,0.75); line-height: 1.85; font-size: 0.96rem; margin-bottom: 16px; }
.footer-brand-desc strong { color: #fff; font-weight: 600; }
.footer-service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.footer-service-list li { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-service-list li:not(:last-child)::after { content: "·"; color: rgba(255,255,255,0.3); margin-left: 14px; }

/* 联系栏 */
.footer-contact-item { display: flex; gap: 13px; margin-bottom: 16px; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item .fc-ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.footer-contact-item > div { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 8px; row-gap: 2px; }
.footer-contact-item .fc-label { color: rgba(255,255,255,0.62); font-size: 0.92rem; letter-spacing: 0; margin-bottom: 0; flex-shrink: 0; }
.footer-contact-item .fc-val { color: #fff; line-height: 1.55; font-size: 0.95rem; }
.footer-contact-item .fc-val a { color: #fff; transition: var(--transition); }
.footer-contact-item .fc-val a:hover { color: rgba(255,255,255,0.75); }
.footer-phone .fc-val a { color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: 0; }
.footer-phone .fc-val a:hover { color: rgba(255,255,255,0.85); }

/* 营业时间栏 */
.footer-hours-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-hours-item:first-of-type { padding-top: 0; }
.footer-hours-item:last-child { border-bottom: none; }
.footer-hours-day { color: #fff; font-weight: 600; margin-bottom: 3px; }
.footer-hours-time { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-hours-time { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* 快速导航栏 */
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { color: rgba(255,255,255,0.72); width: fit-content; transition: color 0.3s ease, transform 0.3s ease; }
.footer-nav a:hover { color: #fff; transform: translateX(4px); }

/* 版权区（更深蓝，形成层次） */
.footer-bottom { background: #06183A; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; padding-bottom: 22px; }
.footer-copy { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-legal a:hover { color: #fff; }
.footer-partner-row { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 14px; padding-bottom: 18px; justify-content: center; }
.footer-partner { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: center; }
.footer-partner a { color: rgba(255,255,255,0.72); }
.footer-partner a:hover { color: #fff; }

/* Footer 各栏依次淡入 */
.site-footer .footer-col.reveal { transition-duration: 0.7s; }
.site-footer .footer-col.reveal:nth-child(2) { transition-delay: 0.12s; }
.site-footer .footer-col.reveal:nth-child(3) { transition-delay: 0.24s; }
.site-footer .footer-col.reveal:nth-child(4) { transition-delay: 0.36s; }

/* ---------- Google Reviews / Testimonials ---------- */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 14px; }
.reviews-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.reviews-rating .g-logo { font-weight: 800; font-size: 1.25rem; }
.reviews-rating .g-logo .b { color: #4285F4; } .reviews-rating .g-logo .r { color: #EA4335; }
.reviews-rating .g-logo .y { color: #FBBC05; } .reviews-rating .g-logo .g { color: #34A853; }
.reviews-rating .score { font-weight: 900; font-size: 1.5rem; color: var(--dark-color); }
.stars { color: #FBBC05; letter-spacing: 2px; font-size: 1.1rem; }
.reviews-rating .count { color: var(--muted); font-size: 0.95rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; height: 100%;
}
.review-card .r-head { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1.2rem; background: var(--blue);
}
.review-card .r-meta { flex: 1; }
.review-card .r-name { font-weight: 700; color: var(--dark-color); }
.review-card .r-date { font-size: 0.82rem; color: var(--muted); }
.review-card .r-head .g-badge { margin-left: auto; font-weight: 800; font-size: 0.95rem; }
.review-card .g-badge .b { color: #4285F4; } .review-card .g-badge .r { color: #EA4335; }
.review-card .g-badge .y { color: #FBBC05; } .review-card .g-badge .g { color: #34A853; }
.review-card .r-stars { color: #FBBC05; letter-spacing: 1px; }
.review-card .r-text { color: var(--text); line-height: 1.75; }
.reviews-cta { text-align: center; margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.review-hidden { display: none; }
.reviews-grid.expanded .review-hidden { display: flex; animation: heroFadeUp 0.5s ease-out both; }

@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ---------- Hours table ---------- */
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; }
.hours-list .time { color: var(--muted); }
.footer-section .hours-list li { border-color: rgba(255,255,255,0.12); }
.footer-section .hours-list .time { color: rgba(255,255,255,0.78); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero .hero-points { justify-items: center; }
    .hero .hero-points li { justify-content: center; }
    .hero-actions { justify-content: center; }
    .feature-row { grid-template-columns: 1fr; gap: 28px; }
    .feature-row.reverse .feature-text { order: 0; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: repeat(2,1fr); }
    .stats .container { grid-template-columns: repeat(2,1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 720px) {
    .topbar .container { justify-content: center; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
        background: #fff; flex-direction: column; align-items: flex-start;
        padding: 80px 24px 24px; gap: 6px; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.32s ease; overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; }
    .nav-cta { margin: 8px 0 0; }
    .logo img { height: 56px; }
    .menu-toggle { display: flex; z-index: 1100; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero h1 { font-size: 2.1rem; }
    .section-head h2 { font-size: 1.7rem; }
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .info-strip .container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .value-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { padding: 60px 0 50px; }
    .footer-bottom .container { flex-direction: column; text-align: center; justify-content: center; }
    .section { padding: 52px 0; }
}

/* ============ FAQ 常见问题（details/summary） ============ */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(11,94,215,0.35); }
.faq-item > summary { cursor: pointer; list-style: none; padding: 20px 58px 20px 24px; font-weight: 700; font-size: 1.06rem; color: var(--dark-color); position: relative; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; }
.faq-item[open] > summary { color: var(--blue); }
.faq-item[open] > summary::after { content: "\2212"; }
.faq-answer { padding: 0 24px 22px; color: var(--muted); }
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul { margin: 10px 0 0 20px; }
.faq-answer li { margin-bottom: 6px; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* ============ 服务区域 ============ */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); transition: var(--transition); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(11,94,215,0.35); }
.area-card strong { display: block; color: var(--dark-color); font-size: 1.08rem; margin-bottom: 4px; }
.area-card span { color: var(--muted); font-size: 0.92rem; }
.area-note { text-align: center; color: var(--muted); margin-top: 28px; }
.area-note a { color: var(--blue); font-weight: 700; }

@media (max-width: 720px) {
    .area-grid { grid-template-columns: 1fr; }
    .faq-item > summary { font-size: 1rem; padding: 18px 50px 18px 18px; }
    .faq-answer { padding: 0 18px 20px; }
}
