/* Page Header Styles */
.business-header {
  background-image: url("../../img/business/catering/banner.jpg");
  height: 40vh;
  margin-top: 0;
  margin-bottom: 60px;
  background-position: center center;
}

/* Service Introduction Styles */
.service-intro {
  padding: 80px 0;
}

.service-image {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.service-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Product Profile Styles */
.product-profile {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 600;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.product-tabs {
  margin-top: 40px;
}

.nav-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-pills .nav-link {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
  padding: 15px 25px;
  margin: 5px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: #f1f1f1;
}

.nav-pills .nav-link.active {
  background-color: #0d6efd;
  color: white;
}

.product-category-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 30px;
  margin-top: 20px;
}

.category-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-content h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

.product-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.product-tag {
  background-color: #e9ecef;
  color: #495057;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

.category-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

/* Product Specifications and Technical Guarantee Styles */
.specs-guarantee {
  padding: 80px 0;
}

.specs-box,
.guarantee-box {
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.specs-box h2,
.guarantee-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.specs-item,
.guarantee-item {
  display: flex;
  margin-bottom: 25px;
}

.specs-icon,
.guarantee-icon {
  font-size: 1.8rem;
  color: #0d6efd;
  flex-shrink: 0;
  margin-right: 20px;
}

.specs-content h3,
.guarantee-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.specs-content p,
.guarantee-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* Customer Value Styles */
.customer-value {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .service-content h2 {
    font-size: 2rem;
  }

  .category-img img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-intro {
    padding: 60px 0;
  }

  .service-content {
    padding: 20px 0;
    margin-top: 30px;
  }

  .category-content {
    padding: 20px 0 0;
  }

  .specs-box,
  .guarantee-box {
    margin-bottom: 30px;
  }

  .value-card {
    margin-bottom: 30px;
  }
}

/* Fancy Introduction Box */
.fancy-intro {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #0d6efd;
}

.fancy-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.fancy-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
}

.fancy-intro strong {
  color: #0d6efd;
  font-weight: 600;
}
