/* ===== Theme: 科技蓝 (Tech Blue) =====
 * 骨架特征: 无边框纯阴影 | 中圆角(6px) | 柔软阴影 | 全圆角按钮 | 窄长线标题装饰 | 标准间距
 * 配色: 深海蓝 + 科技青 — 冷静专业
 */

body[data-theme="blue"] {
    --primary: #1E3A5F;
    --primary-light: #2563A0;
    --primary-dark: #0F1F33;
    --accent: #0891B2;
    --accent-green: #0891B2;
    --accent-green-light: #ECFEFF;
    --bg-dark: #0F172A;
    --bg-alt: #F0F9FF;
    --text: #1E293B;
    --text-light: #64748B;
    --border: #E2E8F0;
    --text-white: #F1F5F9;
    /* 骨架变量 */
    --radius: 6px;
    --radius-sm: 4px;
    --shadow: 0 2px 12px rgba(0,0,0,.06);
    --shadow-hover: 0 8px 24px rgba(0,0,0,.1);
    --footer-cols: 2fr 1fr 1.5fr 1.5fr;  /* 4列：公司简介/服务区域/热门产品/联系我们(含扫码)；末尾列加宽容纳二维码 */
}

/* 卡片：无边框，仅阴影 */
body[data-theme="blue"] .combo-item,
body[data-theme="blue"] .cert-item,
body[data-theme="blue"] .product-card,
body[data-theme="blue"] .scenario-card,
body[data-theme="blue"] .adv-card,
body[data-theme="blue"] .project-item,
body[data-theme="blue"] .gallery-item,
body[data-theme="blue"] .areas-compact .province-group,
body[data-theme="blue"] .faq-card,
body[data-theme="blue"] .article-item {
    border: none;
}

/* 按钮：全圆角（pill造型） */
body[data-theme="blue"] .btn {
    border-radius: 30px;
}

/* 标题装饰：窄长线居中 */
body[data-theme="blue"] .section-title::after {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* 场景卡片顶部色条：标准 */
body[data-theme="blue"] .scenario-card {
    border-top-width: 3px;
    border-top-color: var(--accent);
}

/* Hero */
body[data-theme="blue"] .hero {
    background: linear-gradient(135deg, #0F1F33 0%, #1E3A5F 50%, #2563A0 100%);
}

/* Navbar：实色+轻微阴影 */
body[data-theme="blue"] .navbar {
    background: var(--primary);
    box-shadow: 0 2px 12px rgba(30,64,175,.15);
}

/* Section 间距：标准 */
body[data-theme="blue"] .section {
    padding: 60px 0;
}

/* H1 标准 */
body[data-theme="blue"] .hero h1 {
    font-size: 2rem;
    font-weight: 800;
}

/* Footer：深色简约 */
body[data-theme="blue"] .site-footer {
    background: var(--bg-dark);
    color: #94A3B8;
}
body[data-theme="blue"] .site-footer h4 {
    color: #E2E8F0;
    font-size: 1rem;
    margin-bottom: 12px;
}
body[data-theme="blue"] .site-footer a {
    color: #94A3B8;
}
body[data-theme="blue"] .site-footer a:hover {
    color: #38BDF8;
}
body[data-theme="blue"] .footer-bottom {
    border-top: 1px solid rgba(148,163,184,.2);
    color: #64748B;
}

/* 产品卡片hover：青色边框提示 */
body[data-theme="blue"] .product-card:hover,
body[data-theme="blue"] .combo-item:hover,
body[data-theme="blue"] .project-item:hover {
    border: 1px solid #38BDF8;
}
