/*--------------------------------------------------------------
# Service Detail Page - Modern Styling
--------------------------------------------------------------*/

/* Section Spacing */
.section {
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Service Header
--------------------------------------------------------------*/
.service-header {
  margin-bottom: 40px;
}

.service-header img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.service-header img:hover {
  transform: scale(1.02);
}

/* Service icon and title styles removed - using inline typography only */

/*--------------------------------------------------------------
# Service Description
--------------------------------------------------------------*/
.service-description {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}

.service-description h2,
.service-description h3,
.service-description h4 {
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-description h2 {
  font-size: 2rem;
  padding-bottom: 10px;
  border-bottom: 3px solid #fcc01b;
}

.service-description h3 {
  font-size: 1.5rem;
}

.service-description h4 {
  font-size: 1.25rem;
}

.service-description p {
  margin-bottom: 20px;
}

.service-description ul,
.service-description ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.service-description li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-description strong {
  color: #1f2937;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Service Features
--------------------------------------------------------------*/
.service-features h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.service-features h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fcc01b 0%, #e6a800 100%);
  border-radius: 2px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fcc01b 0%, #e6a800 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  border-color: #fcc01b;
  box-shadow: 0 8px 25px rgba(252, 192, 27, 0.12);
  transform: translateY(-5px);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item i {
  font-size: 2rem;
  color: #fcc01b;
  margin-bottom: 15px;
}

.feature-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.feature-item .text-muted {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Service Benefits
--------------------------------------------------------------*/
.service-benefits h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.service-benefits h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fcc01b 0%, #e6a800 100%);
  border-radius: 2px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefits-list li {
  padding: 20px 30px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.05rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:hover {
  background: #fef2f2;
  padding-left: 40px;
}

.benefits-list li i {
  font-size: 1.5rem;
  color: #fcc01b;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Service CTA Box
--------------------------------------------------------------*/
.service-cta {
  margin-top: 50px;
}

.cta-box {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(252, 192, 27, 0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
  background-size: cover;
  opacity: 0.3;
}

.cta-box h4 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
  position: relative;
}

.cta-box .btn {
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(252, 192, 27, 0.3);
  position: relative;
}

.cta-box .btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(252, 192, 27, 0.4);
  color: white;
}

/*--------------------------------------------------------------
# Sidebar Cards
--------------------------------------------------------------*/
.sidebar-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.sidebar-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #fcc01b;
}

.sidebar-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  margin-top: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #fef2f2;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.8rem;
  color: #fcc01b;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  color: #1f2937;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-item p {
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Related Services
--------------------------------------------------------------*/
.related-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-service-item {
  display: flex;
  align-items: center;
  padding: 18px;
  background: #f9fafb;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-service-item:hover {
  background: white;
  border-color: #fcc01b;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(252, 192, 27, 0.1);
}

.related-service-item i {
  color: #fcc01b;
  font-size: 1.3rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.related-service-item span {
  flex: 1;
  font-weight: 600;
}

.related-service-item .bi-arrow-right {
  color: #6b7280;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.related-service-item:hover .bi-arrow-right {
  transform: translateX(5px);
  color: #fcc01b;
}

/*--------------------------------------------------------------
# Why Choose List
--------------------------------------------------------------*/
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  padding: 15px 0;
  color: #4b5563;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.why-choose-list li:hover {
  color: #1f2937;
  padding-left: 10px;
}

.why-choose-list i {
  color: #10b981;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 192, 27, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 192, 27, 0.4);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .service-header img {
    max-height: 350px;
  }

  .service-description {
    padding: 30px;
  }

  .cta-box {
    padding: 40px 30px;
  }

  .sidebar-card {
    padding: 30px;
  }
}

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

  .service-header img {
    max-height: 300px;
    border-radius: 16px;
  }

  .service-description {
    padding: 25px;
    font-size: 1rem;
  }

  .service-description h2 {
    font-size: 1.75rem;
  }

  .feature-item {
    padding: 25px;
  }

  .benefits-list li {
    padding: 18px 20px;
  }

  .benefits-list li:hover {
    padding-left: 25px;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .cta-box h4 {
    font-size: 1.75rem;
  }

  .cta-box p {
    font-size: 1rem;
  }

  .sidebar-card {
    padding: 25px;
  }

  .sidebar-card h4 {
    font-size: 1.3rem;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-item i {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}
