/* ===================================
   首页样式 - 深色豪华主题
   房源信息发布平台
   =================================== */
@charset "UTF-8";

/* 全局容器 */
.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.zh_main {
  overflow-x: hidden;
}

/* ===================================
   Hero Section
   =================================== */
.zh_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  overflow: hidden;
}

.zh_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.zh_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
  z-index: 2;
}

.zh_hero_container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.zh_hero_content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.zh_hero_badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 30px;
}

.zh_hero_title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.zh_hero_title_highlight {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zh_hero_description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

.zh_hero_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* ===================================
   Buttons
   =================================== */
.zh_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.zh_btn_primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f0f0f;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.zh_btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.zh_btn_secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zh_btn_secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.zh_btn_outline {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.zh_btn_outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.zh_btn_large {
  padding: 20px 44px;
  font-size: 18px;
}

/* ===================================
   Section Styles
   =================================== */
.zh_properties,
.zh_commercial,
.zh_features,
.zh_stats,
.zh_cta {
  padding: 120px 0;
}

.zh_properties {
  background: #0f0f0f;
}

.zh_commercial {
  background: #1a1a1a;
}

.zh_features {
  background: #0f0f0f;
}

.zh_stats {
  background: #1a1a1a;
  position: relative;
}

.zh_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.zh_stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.zh_section_header {
  text-align: center;
  margin-bottom: 80px;
}

.zh_section_badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}

.zh_section_title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.zh_section_subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
}

.zh_section_footer {
  margin-top: 60px;
  text-align: center;
}

/* ===================================
   Property Cards
   =================================== */
.zh_properties_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.zh_property_card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zh_property_card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.zh_property_image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.zh_property_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_property_card:hover .zh_property_image img {
  transform: scale(1.1);
}

.zh_property_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f0f0f;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.zh_property_badge_commercial {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
}

.zh_property_content {
  padding: 30px;
}

.zh_property_title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}

.zh_property_description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 25px;
}

.zh_property_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_property_location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.zh_property_location i {
  color: #d4af37;
}

.zh_property_link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.zh_property_link:hover {
  gap: 12px;
}

/* ===================================
   Features Section
   =================================== */
.zh_features_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.zh_feature_card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.zh_feature_card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.zh_feature_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 32px;
  transition: all 0.3s ease;
}

.zh_feature_card:hover .zh_feature_icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.1);
}

.zh_feature_title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.zh_feature_description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===================================
   Stats Section
   =================================== */
.zh_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.zh_stat_card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.zh_stat_card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.zh_stat_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 28px;
}

.zh_stat_number {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.zh_stat_label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===================================
   CTA Section
   =================================== */
.zh_cta {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  position: relative;
  overflow: hidden;
}

.zh_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.zh_cta_content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.zh_cta_title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.zh_cta_description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 50px;
}

.zh_cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
  .zh_properties_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_features_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_hero {
    min-height: 80vh;
  }

  .zh_hero_container {
    padding: 0 20px;
  }

  .zh_hero_title {
    font-size: 42px;
  }

  .zh_hero_description {
    font-size: 16px;
  }

  .zh_hero_buttons {
    flex-direction: column;
    width: 100%;
  }

  .zh_btn {
    width: 100%;
    justify-content: center;
  }

  .zh_section_title {
    font-size: 36px;
  }

  .zh_section_subtitle {
    font-size: 16px;
  }

  .zh_properties,
  .zh_commercial,
  .zh_features,
  .zh_stats,
  .zh_cta {
    padding: 80px 0;
  }

  .zh_properties_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_features_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_stats_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .zh_cta_title {
    font-size: 36px;
  }

  .zh_cta_description {
    font-size: 16px;
  }

  .zh_cta_buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .zh_hero_title {
    font-size: 32px;
  }

  .zh_section_title {
    font-size: 28px;
  }

  .zh_property_image {
    height: 220px;
  }

  .zh_stat_number {
    font-size: 40px;
  }
}
