/* 郑州桐丘文化传播有限公司 - 前台样式（美化版） */
:root {
  --primary: #9b1c1c;        /* 中国红 */
  --primary-dark: #6b1212;
  --primary-light: #c83b3b;
  --gold: #c9a227;           /* 金色点缀 */
  --gold-light: #e6c656;
  --bg: #faf6f0;             /* 米色背景 */
  --bg-alt: #f4ecdf;          /* 交替背景 */
  --card: #ffffff;
  --text: #2b2b2b;
  --text-soft: #555;
  --muted: #9a9088;
  --border: #ece5d8;
  --shadow-sm: 0 2px 8px rgba(120, 60, 20, 0.06);
  --shadow: 0 6px 24px rgba(120, 60, 20, 0.10);
  --shadow-lg: 0 16px 40px rgba(120, 60, 20, 0.14);
  --radius: 14px;
}

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

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

a { color: var(--primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

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

/* 顶部栏 */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), #4a0e0e);
  color: #fff; font-size: 13px;
  border-bottom: 2px solid var(--gold);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: #ffd; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .contact span { margin-left: 20px; }

/* 主导航 */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff; font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(155, 28, 28, .4);
  transform: rotate(-3deg);
  transition: transform .3s;
}
.brand:hover .logo { transform: rotate(3deg) scale(1.05); }
.brand .name { font-size: 21px; font-weight: 700; color: var(--primary-dark); letter-spacing: 1px; line-height: 1.3; }
.brand .sub { font-size: 11px; color: var(--muted); letter-spacing: 2px; }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 9px 18px; border-radius: 8px; color: #444; font-weight: 500; font-size: 15px;
  position: relative; transition: all .25s;
}
.nav a:hover { background: var(--bg-alt); color: var(--primary); }
.nav a.active { background: var(--primary); color: #fff; box-shadow: 0 3px 10px rgba(155,28,28,.3); }

/* 轮播图 */
.carousel { position: relative; height: 460px; overflow: hidden; background: #1a1a1a; }
.carousel .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
}
.carousel .slide.active { opacity: 1; }
.carousel .slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel .slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 40%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}
.carousel .slide .caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  color: #fff; padding: 70px 60px 36px; font-size: 26px; font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.carousel .dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.carousel .dots button {
  width: 12px; height: 12px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all .35s;
}
.carousel .dots button.active { background: var(--gold-light); width: 34px; border-radius: 6px; box-shadow: 0 0 8px rgba(230,198,86,.6); }
.carousel .arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.3); color:#fff; border:none; cursor:pointer; font-size:24px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s; opacity: .7;
}
.carousel .arrow:hover { background: rgba(0,0,0,.6); opacity: 1; }
.carousel .arrow.prev { left: 20px; } .carousel .arrow.next { right: 20px; }

/* 板块通用 */
.section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-size: 30px; color: var(--primary-dark); position: relative; display: inline-block; padding-bottom: 14px;
  font-weight: 700;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px;
}
.section-title h2::before {
  content: '◆'; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 12px; background: var(--bg); padding: 0 8px;
}
.section-title p { color: var(--muted); margin-top: 10px; font-size: 14px; letter-spacing: 1px; }

/* 快捷入口 */
.quick-entry { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.quick-entry a {
  background: var(--card); border-radius: var(--radius); padding: 28px 14px 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; color: var(--text);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.quick-entry a::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.quick-entry a:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quick-entry a:hover::before { transform: scaleX(1); }
.quick-entry .icon {
  font-size: 36px; margin-bottom: 10px;
  display: inline-block; transition: transform .3s;
}
.quick-entry a:hover .icon { transform: scale(1.15); }
.quick-entry .label { font-size: 15px; font-weight: 600; color: var(--primary-dark); }
.quick-entry .sub-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* 最新动态 */
.dynamic { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .3s; }
.panel:hover { box-shadow: var(--shadow-lg); }
.panel-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.panel-head::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.panel-head h3 { font-size: 17px; display: flex; align-items: center; gap: 8px; }
.panel-head h3::before { content: '▎'; color: var(--gold-light); }
.panel-head a { color: #ffe; font-size: 13px; transition: gap .2s; }
.panel-head a:hover { color: var(--gold-light); }
.panel-body { padding: 6px 24px; }
.list-item {
  padding: 16px 0; border-bottom: 1px dashed var(--border); display: flex; justify-content: space-between; gap: 12px;
  transition: padding-left .25s;
}
.list-item:hover { padding-left: 8px; }
.list-item:last-child { border-bottom: none; }
.list-item .t { flex: 1; }
.list-item .t a { color: var(--text); font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-item .t a:hover { color: var(--primary); }
.list-item .meta { color: var(--muted); font-size: 12px; margin-top: 4px; }
.list-item .date {
  color: var(--muted); font-size: 13px; white-space: nowrap;
  background: var(--bg-alt); padding: 4px 10px; border-radius: 6px; height: fit-content;
}
.tag-pin { display: inline-block; background: var(--primary); color:#fff; font-size:11px; padding:2px 8px; border-radius:4px; margin-right:6px; font-weight: 500; }

/* 合作联系横幅 */
.coop-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: 18px; padding: 48px 40px; text-align: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.coop-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,39,.2) 0%, transparent 70%); border-radius: 50%;
}
.coop-banner::after {
  content: ''; position: absolute; bottom: -40%; left: -10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%); border-radius: 50%;
}
.coop-banner h2 { font-size: 28px; margin-bottom: 12px; position: relative; z-index: 1; }
.coop-banner .phone { font-size: 38px; font-weight: 700; letter-spacing: 3px; color: #ffe27a; position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.coop-banner p { opacity: .92; margin-top: 10px; position: relative; z-index: 1; }

/* 页脚 */
.site-footer { background: #2b2020; color: #cbb; padding: 48px 0 24px; margin-top: 40px; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
}
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.site-footer h4::before { content: '◆'; color: var(--gold); font-size: 10px; }
.site-footer p { font-size: 14px; margin-bottom: 8px; color: #b0a6a0; }
.site-footer a { color: #cbb; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .copyright { border-top: 1px solid #4a3a3a; margin-top: 28px; padding-top: 20px; text-align: center; font-size: 13px; color: #887; }

/* 列表页 */
.page-banner {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a0e0e 50%, #3a0808 100%);
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,162,39,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0%, transparent 40%);
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner h1 { font-size: 34px; letter-spacing: 3px; position: relative; z-index: 1; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.page-banner .crumb { position: relative; z-index: 1; margin-top: 10px; font-size: 13px; opacity: .8; }
.page-banner .crumb a { color: var(--gold-light); }

.filter-bar {
  background: var(--card); border-radius: 12px; padding: 16px 24px; margin: -36px auto 28px;
  position: relative; z-index: 5; box-shadow: var(--shadow); display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  max-width: 1200px;
}
.filter-bar a, .filter-bar span {
  padding: 7px 20px; border-radius: 20px; font-size: 14px; color: #555; background: var(--bg-alt);
  transition: all .25s; font-weight: 500;
}
.filter-bar a:hover { background: var(--primary-light); color: #fff; }
.filter-bar a.active { background: var(--primary); color: #fff; box-shadow: 0 3px 10px rgba(155,28,28,.3); }
.search-box { margin-left: auto; display: flex; gap: 8px; }
.search-box input { padding: 7px 14px; border: 1px solid var(--border); border-radius: 20px; width: 220px; font-size: 14px; transition: border-color .2s; }
.search-box input:focus { outline: none; border-color: var(--primary); }
.search-box button { padding: 7px 18px; border: none; border-radius: 20px; background: var(--primary); color:#fff; cursor: pointer; font-size: 14px; transition: background .2s; }
.search-box button:hover { background: var(--primary-dark); }

.list-card {
  background: var(--card); border-radius: 12px; padding: 20px 26px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: transform .25s, box-shadow .25s; border-left: 4px solid transparent;
}
.list-card:hover { transform: translateX(6px); box-shadow: var(--shadow); border-left-color: var(--gold); }
.list-card .t { flex: 1; }
.list-card .t a { font-size: 17px; font-weight: 600; color: var(--text); }
.list-card .t a:hover { color: var(--primary); }
.list-card .meta { color: var(--muted); font-size: 13px; margin-top: 5px; }
.list-card .date { color: var(--muted); font-size: 13px; white-space: nowrap; background: var(--bg-alt); padding: 5px 12px; border-radius: 6px; }

.news-list-item {
  background: var(--card); border-radius: 12px; overflow: hidden; margin-bottom: 20px;
  box-shadow: var(--shadow-sm); display: flex; gap: 0;
  transition: transform .25s, box-shadow .25s;
}
.news-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-list-item .thumb { width: 240px; height: 160px; flex-shrink: 0; background: linear-gradient(135deg, var(--bg-alt), #e8dcc8); position: relative; }
.news-list-item .thumb img { width:100%; height:100%; object-fit: cover; transition: transform .5s; }
.news-list-item:hover .thumb img { transform: scale(1.05); }
.news-list-item .info { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.news-list-item .info h3 { font-size: 19px; margin-bottom: 10px; color: var(--text); }
.news-list-item .info .summary { color: #777; font-size: 14px; flex: 1; }
.news-list-item .info .foot { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.news-list-item .info .read {
  color: var(--primary); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px; transition: gap .2s;
}
.news-list-item .info .read:hover { gap: 8px; }
.news-empty { text-align:center; padding: 70px 20px; color: var(--muted); font-size: 16px; }
.news-empty::before { content: '📭'; display: block; font-size: 48px; margin-bottom: 16px; opacity: .5; }

/* 成就卡片 */
.ach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ach-card {
  background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s; border: 1px solid var(--border);
}
.ach-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ach-card .cover { height: 210px; background: linear-gradient(135deg, var(--bg-alt), #ddd); overflow: hidden; position: relative; }
.ach-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ach-card:hover .cover img { transform: scale(1.08); }
.ach-card .cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3));
}
.ach-card .body { padding: 18px 22px 22px; }
.ach-card .body h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.ach-card .body .loc { color: var(--text-soft); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.ach-card .body .time { color: var(--primary); font-size: 13px; margin-top: 6px; display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* 详情页 */
.detail-wrap {
  background: var(--card); border-radius: 16px; box-shadow: var(--shadow); padding: 48px;
  margin: 36px auto; position: relative;
}
.detail-wrap::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
  border-radius: 0 0 4px 4px;
}
.detail-title { font-size: 28px; color: var(--primary-dark); text-align: center; margin-bottom: 16px; font-weight: 700; }
.detail-meta {
  text-align: center; color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--border);
  padding-bottom: 24px; margin-bottom: 32px;
}
.detail-meta span { margin: 0 8px; }
.detail-content { font-size: 16px; line-height: 2.1; color: #333; }
.detail-content p { margin-bottom: 16px; }
.detail-content img { margin: 20px auto; border-radius: 10px; box-shadow: var(--shadow-sm); }
.back-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 32px;
  color: var(--primary); font-weight: 600; transition: gap .2s;
}
.back-link:hover { gap: 10px; color: var(--primary-dark); }

/* 新闻图集轮播 */
.gallery { position: relative; max-width: 780px; margin: 28px auto; }
.gallery .viewport { overflow: hidden; border-radius: 12px; box-shadow: var(--shadow); }
.gallery .track { display: flex; transition: transform .5s ease; }
.gallery .track img { width: 100%; flex-shrink: 0; height: 480px; object-fit: cover; }
.gallery .nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.4); color:#fff; border:none; cursor:pointer; font-size:22px;
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.gallery .nav:hover { background: rgba(0,0,0,.7); }
.gallery .nav.prev { left: 12px; } .gallery .nav.next { right: 12px; }
.gallery .thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.gallery .thumbs img { width: 72px; height: 52px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: .55; transition: opacity .25s, transform .25s; }
.gallery .thumbs img:hover { opacity: .8; transform: translateY(-2px); }
.gallery .thumbs img.active { opacity: 1; border: 2px solid var(--primary); }

/* 合作表单 */
.coop-form {
  max-width: 660px; margin: 28px auto; background: var(--card); border-radius: 16px;
  padding: 40px; box-shadow: var(--shadow); position: relative;
}
.coop-form::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 0 0 3px 3px;
}
.coop-form .field { margin-bottom: 20px; }
.coop-form label { display: block; margin-bottom: 7px; font-weight: 600; color: var(--primary-dark); font-size: 15px; }
.coop-form .req { color: var(--primary); }
.coop-form input, .coop-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.coop-form input:focus, .coop-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(155,28,28,.1); }
.coop-form textarea { min-height: 120px; resize: vertical; }
.coop-form button {
  width: 100%; padding: 15px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; border-radius: 10px;
  font-size: 17px; font-weight: 600; cursor: pointer; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(155,28,28,.3);
}
.coop-form button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(155,28,28,.4); }
.coop-form button:disabled { background: #bbb; cursor: not-allowed; box-shadow: none; }
.alert-success { background: #e7f6e9; color: #1d7a35; padding: 16px 22px; border-radius: 10px; margin-bottom: 22px; text-align: center; border-left: 4px solid #1d7a35; }
.alert-error { background: #fdeaea; color: var(--primary); padding: 16px 22px; border-radius: 10px; margin-bottom: 22px; text-align: center; border-left: 4px solid var(--primary); }
.reg-count { text-align:center; color: var(--muted); margin-top: 18px; font-size: 14px; }

/* 分页 */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 36px 0 20px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); background: #fff; color: #555; font-size: 14px;
  transition: all .2s;
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }
.pagination .disabled { color: #bbb; cursor: not-allowed; }

/* 滚动渐入动画 */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 404 页面 */
.page-404 {
  min-height: 420px; display: flex; align-items: center; justify-content: center;
  padding: 70px 20px; text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(201,162,39,.08), transparent 60%);
}
.page-404-inner .code {
  font-size: 120px; font-weight: 800; line-height: 1; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-404-inner .tip { font-size: 18px; color: var(--text-soft); margin: 16px 0 28px; }
.page-404-inner .home-btn {
  display: inline-block; padding: 12px 34px; border-radius: 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  font-weight: 600; box-shadow: 0 6px 18px rgba(155,28,28,.3); transition: transform .25s, box-shadow .25s;
}
.page-404-inner .home-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(155,28,28,.4); color: #fff; }

/* 客服服务卡片 */
.cs-service { text-align: center; }
.cs-intro { font-size: 17px; color: var(--text-soft); margin-bottom: 24px; }
.cs-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 660px; margin: 0 auto; }
.cs-card {
  background: linear-gradient(160deg, #fbf5ea, #f3e9d6); border-radius: 16px; padding: 30px 24px;
  border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.cs-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cs-ico {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 6px 16px rgba(155,28,28,.3); transition: transform .3s;
}
.cs-card:hover .cs-ico { transform: scale(1.08) rotate(-6deg); }
.cs-card h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 18px; }
.cs-phone { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.cs-hours { color: var(--muted); font-size: 13px; margin-top: 6px; }
.cs-desc { color: var(--muted); margin-top: 6px; font-size: 14px; line-height: 1.7; }
.cs-link { display: inline-block; margin-top: 12px; color: var(--primary); font-weight: 600; transition: gap .2s; }
.cs-link:hover { color: var(--primary-dark); }

@media (max-width: 860px) {
  .nav { display: none; }
  .quick-entry { grid-template-columns: repeat(3, 1fr); }
  .dynamic { grid-template-columns: 1fr; }
  .ach-grid { grid-template-columns: 1fr; }
  .news-list-item { flex-direction: column; }
  .news-list-item .thumb { width: 100%; height: 200px; }
  .carousel { height: 280px; }
  .carousel .slide .caption { padding: 50px 24px 24px; font-size: 20px; }
  .detail-wrap { padding: 28px 20px; }
  .coop-form { padding: 28px 20px; }
  .page-banner { height: 160px; }
  .page-banner h1 { font-size: 26px; }
  .section { padding: 36px 0; }
  .section-title h2 { font-size: 24px; }
  .cs-cards { grid-template-columns: 1fr; }
  .page-404-inner .code { font-size: 84px; }
}
@media (max-width: 520px) {
  .quick-entry { grid-template-columns: repeat(2, 1fr); }
  .coop-banner { padding: 32px 20px; }
  .coop-banner .phone { font-size: 30px; }
}
