/* Custom styles for DanZhouDaiMa website */

/* Top contact bar */
.top-contact-bar {
  background: #2c3e50;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-contact-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact-bar a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}
.top-contact-bar a:hover {
  color: #f39c12;
}

/* Navbar brand text */
.navbar-brand-text {
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.2;
  max-width: 280px;
}
.navbar-brand-text:hover {
  color: #f39c12;
}

/* Service card */
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  margin: 15px 0 10px;
  color: #2c3e50;
}
.service-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 32px;
}

/* About section */
.about-section {
  padding: 60px 0;
  background: #f8f9fa;
}

/* History timeline */
.history-item {
  border-left: 3px solid #333;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #333;
}
.history-item h4 {
  color: #333;
  margin-bottom: 5px;
}
.history-item p {
  color: #333;
}

/* Stats box */
.stats-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.stats-box h2 {
  font-size: 48px;
  margin: 0;
}
.stats-box p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* Brand list */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.brand-tag {
  background: #f0f0f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  display: inline-block;
  margin: 5px;
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card h4 {
  color: #2c3e50;
  margin-top: 0;
}
.product-card ul {
  padding-left: 20px;
}
.product-card ul li {
  margin-bottom: 8px;
}

/* Feature box */
.feature-box {
  background: #333;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.feature-box i {
  font-size: 48px;
  margin-bottom: 15px;
}

/* Pricing item */
.pricing-item {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.pricing-item h4 {
  color: #333;
}
.pricing-item ul {
  list-style: none;
  padding: 0;
}
.pricing-item ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Contact info box */
.contact-info-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.contact-info-box h4 {
  color: #333;
  margin-top: 0;
}

/* Contact info */
.contact-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.contact-info h4 {
  color: #333;
  margin-top: 0;
}

/* Icon colors */
.icon-black {
  color: #333;
}
.icon-size-lg {
  font-size: 48px;
}

/* Placeholder image */
.placeholder-img {
  background: #f0f0f0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.placeholder-img span {
  font-size: 24px;
  color: #333;
}

/* Slider placeholder */
.slider-placeholder {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section backgrounds */
.bg-light {
  background: #f8f9fa;
}

/* Text center utility */
.text-center {
  text-align: center;
}
.text-center-row {
  text-align: center;
  margin-bottom: 30px;
}

/* Section title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Padding utilities */
.pt-40 {
  padding-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-40 {
  margin-top: 40px;
}

/* Quality assurance icons */
.qa-icon {
  font-size: 48px;
  color: #333;
}

/* Page title section */
.page-title-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-bottom: 40px;
}
