/* Service Detail Page Custom Styling */

/* Service Features Styling */
.service-features {
  margin-top: 40px;
}

.service-features h3 {
  color: #190a32;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.service-features h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #b68c5a 0%, #d4af37 100%);
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-title {
  color: #190a32;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.feature-description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Service Section */
.why-choose-service {
  margin-top: 40px;
}

.why-choose-service h3 {
  color: #190a32;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.why-choose-service h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #b68c5a 0%, #d4af37 100%);
}

.advantage-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #b68c5a;
  margin-bottom: 20px;
}

.advantage-item h4 {
  color: #190a32;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.advantage-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #190a32 0%, #2c1a4a 100%);
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.contact-cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-cta p {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 25px;
}

.contact-cta .btn {
  background: linear-gradient(135deg, #b68c5a 0%, #d4af37 100%);
  border: none;
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(182, 140, 90, 0.4);
  color: #fff;
}

/* Sidebar Styling */
.services-sidebar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}

.widget-title {
  color: #190a32;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #b68c5a;
}

.services-menu-toggle {
  /* width: 100%; */
  display: flex !important;
  /* align-items: center; */
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.services-menu-toggle .toggle-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.services-menu-toggle .fa {
  transition: transform 0.3s ease;
}

.services-menu-toggle.open .fa {
  transform: rotate(180deg);
}

.services-categories.is-closed {
  display: none;
}

.services-categories.is-open {
  display: block;
}

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

.services-categories li {
  margin-bottom: 8px;
}

.services-categories li a {
  font-family: 'PT Serif', serif;
  color: #555;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 15px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.services-categories li a:hover,
.services-categories li.active a {
  background: #1A285F;
  color: #fff;
}

.brochures-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.brochures-box h4 {
  color: #190a32;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.brochures-box .text {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.theme-btn {
  background: linear-gradient(135deg, #b68c5a 0%, #d4af37 100%);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(182, 140, 90, 0.4);
  color: #fff;
}

.theme-btn i {
  margin-right: 8px;
}

/* Breadcrumb Styling */
.breadcrumb-area {
  background: linear-gradient(135deg, #190a32 0%, #2c1a4a 100%);
  padding: 58px 0 0 0;
  position: relative;
}

.breadcrumb-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('/img/bg/service-bg.png') center/cover; */
  opacity: 0.1;
}

.breadcrumb-title h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: #b68c5a;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #b68c5a;
  content: ">";
}

/* RTL Support */
[dir="rtl"] .service-features h3::after,
[dir="rtl"] .why-choose-service h3::after,
[dir="rtl"] .widget-title::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .advantage-item {
  border-left: none;
  border-right: 4px solid #b68c5a;
}

[dir="rtl"] .theme-btn i {
  margin-right: 0;
  margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-features h3,
  .why-choose-service h3 {
    font-size: 24px;
  }
  
  .feature-item,
  .advantage-item {
    padding: 20px;
  }
  
  .contact-cta {
    padding: 30px 20px;
  }
  
  .contact-cta h3 {
    font-size: 24px;
  }
  
  .breadcrumb-title h2 {
    font-size: 28px;
  }
  
  .services-sidebar {
    margin-bottom: 20px;
  }
}
