/* ===== 整装定制页面专属样式 ===== */

/* Lucide 图标通用样式 */
.lucide-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke-width: 2;
}

.adv-icon i,
.inc-icon i,
.step-icon i {
  width: 2.2rem;
  height: 2.2rem;
  color: #c9a050;
  stroke-width: 1.5;
}

.adv-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fdf8ee;
  margin-left: auto;
  margin-right: auto;
}

.inc-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf8ee;
  margin-left: auto;
  margin-right: auto;
}

.step-icon {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Banner */
.zz-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/banner1.jpg') center/cover no-repeat;
  overflow: hidden;
}

.zz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,50,80,0.6) 100%);
}

.zz-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.zz-hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.zz-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.zz-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.zz-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.zz-hero-btns .btn-primary {
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, #c9a050, #a67c28);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201,160,80,0.4);
}

.zz-hero-btns .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,160,80,0.5);
}

.zz-hero-btns .btn-secondary {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.zz-hero-btns .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.zz-hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a050;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ===== 整装优势 ===== */
.zz-advantages {
  padding: 5rem 0;
  background: #f8f7f4;
}

.zz-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.zz-adv-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.zz-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: #c9a050;
}


.zz-adv-card h3 {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.zz-adv-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===== 整装套餐 ===== */
.zz-packages {
  padding: 5rem 0;
  background: #fff;
}

.zz-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.zz-pkg-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.zz-pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.1);
}

.zz-pkg-card.featured {
  border: 2px solid #c9a050;
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(201,160,80,0.2);
}

.zz-pkg-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.pkg-header {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.pkg-header.pkg-basic {
  background: linear-gradient(135deg, #4a6741, #5a8a4f);
}

.pkg-header.pkg-mid {
  background: linear-gradient(135deg, #8b5a2a, #c9a050);
}

.pkg-header.pkg-premium {
  background: linear-gradient(135deg, #2c3e50, #4a6fa5);
}

.pkg-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.pkg-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pkg-price {
  margin-bottom: 0.5rem;
}

.pkg-price-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pkg-price-unit {
  font-size: 1rem;
  opacity: 0.9;
}

.pkg-desc {
  font-size: 0.9rem;
  opacity: 0.85;
}

.pkg-body {
  padding: 1.5rem;
  flex: 1;
}

.pkg-body h4 {
  font-size: 0.95rem;
  color: #333;
  margin: 1.2rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.pkg-body h4:first-child {
  margin-top: 0;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-list li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  position: relative;
}

.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a050' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pkg-footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.btn-pkg {
  display: inline-block;
  width: 100%;
  padding: 0.85rem;
  background: #333;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-pkg:hover {
  background: #111;
  transform: translateY(-1px);
}

.btn-pkg-featured {
  background: linear-gradient(135deg, #c9a050, #a67c28);
}

.btn-pkg-featured:hover {
  background: linear-gradient(135deg, #a67c28, #8b5a2a);
}

.zz-pkg-note {
  margin-top: 2.5rem;
  padding: 1.2rem 2rem;
  background: #fdf8ee;
  border: 1px solid #f0dea0;
  border-radius: 8px;
  text-align: center;
}

.zz-pkg-note p {
  color: #8b5a2a;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== 全包含项目 ===== */
.zz-includes {
  padding: 5rem 0;
  background: #f8f7f4;
}

.zz-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.zz-inc-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.zz-inc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}


.zz-inc-card h3 {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.zz-inc-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ===== 品牌展示 ===== */
.zz-brands {
  padding: 5rem 0;
  background: #fff;
}

.zz-brand-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.brand-cat {
  text-align: center;
}

.brand-cat h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #c9a050;
  display: inline-block;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.brand-tags span {
  padding: 0.4rem 1rem;
  background: #f8f7f4;
  border: 1px solid #e8e4dc;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s;
}

.brand-tags span:hover {
  background: #c9a050;
  color: #fff;
  border-color: #c9a050;
}

/* ===== 服务流程 ===== */
.zz-process {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #2c4a6a 100%);
  color: #fff;
}

.zz-process .section-header .section-en {
  color: rgba(255,255,255,0.4);
}

.zz-process .section-header .section-title {
  color: #fff;
}

.zz-process .section-header .section-desc {
  color: rgba(255,255,255,0.7);
}

.zz-process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 3.5rem;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  font-size: 0.8rem;
  color: #c9a050;
  margin-bottom: 0.5rem;
  font-weight: 700;
}



.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== 户型报价 ===== */
.zz-pricing {
  padding: 5rem 0;
  background: #f8f7f4;
}

.zz-pricing-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.zz-pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.zz-pricing-table th {
  background: linear-gradient(135deg, #333, #555);
  color: #fff;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.zz-pricing-table th:nth-child(3) {
  background: linear-gradient(135deg, #8b5a2a, #c9a050);
}

.zz-pricing-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.zz-pricing-table tr:hover td {
  background: #fdf8ee;
}

.zz-pricing-table td:first-child {
  font-weight: 600;
  color: #333;
  text-align: left;
}

.zz-pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.zz-pricing-cta p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.zz-pricing-cta .btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #c9a050, #a67c28);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201,160,80,0.4);
}

.zz-pricing-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,160,80,0.5);
}

/* ===== FAQ ===== */
.zz-faq {
  padding: 5rem 0;
  background: #fff;
}

.zz-faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #c9a050;
}

.faq-q {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  transition: background 0.3s;
}

.faq-q:hover {
  background: #fdf8ee;
}

.faq-arrow {
  font-size: 1.2rem;
  color: #999;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: #c9a050;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

.faq-a p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ===== CTA ===== */
.zz-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #c9a050, #8b5a2a);
  text-align: center;
  color: #fff;
}

.zz-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.zz-cta p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.zz-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.zz-cta-btns .btn-primary {
  padding: 1rem 2.5rem;
  background: #fff;
  color: #8b5a2a;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.zz-cta-btns .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.zz-cta-btns .btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.zz-cta-btns .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 1rem 2.5rem !important;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .zz-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .zz-pkg-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .zz-pkg-card.featured { transform: none; }
  .zz-pkg-card.featured:hover { transform: translateY(-5px); }
  .zz-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .zz-process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .zz-hero { min-height: 70vh; }
  .zz-hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.5rem; }
  .zz-adv-grid { grid-template-columns: 1fr; }
  .zz-includes-grid { grid-template-columns: 1fr; }
  .zz-process-steps { grid-template-columns: repeat(2, 1fr); }
  .zz-pricing-table { margin-left: -1rem; margin-right: -1rem; }
  .zz-brand-categories { grid-template-columns: repeat(2, 1fr); }
  .zz-hero-btns { flex-direction: column; align-items: center; }
  .zz-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .zz-process-steps { grid-template-columns: 1fr; }
  .zz-hero-stats { gap: 1rem; }
  .stat-item { min-width: 70px; }
  .zz-brand-categories { grid-template-columns: 1fr; }
}
