/* Breadcrumb Styling */
.breadcrumb-nav {
  background: #f8f9fa;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Service Hero Section */
.service-hero-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-intro {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Service Highlights and CTA Buttons */

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  color: #28a745;
  flex-shrink: 0;
}

.service-cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--dark-orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-orange);
  border-color: var(--dark-orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: white;
}

.service-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-placeholder {
  background: #e9ecef;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder svg {
  width: 64px;
  height: 64px;
  color: #adb5bd;
}

/* Service Details Section */
.service-details {
  padding: 4rem 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.service-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-section h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.rich-content {
  line-height: 1.8;
  color: #333;
}

.rich-content p {
  margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.benefits-list li:hover {
  transform: translateX(5px);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: #28a745;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* FAQ Styling */
.service-faq h2 {
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1rem;
  cursor: pointer;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #007bff;
}

.faq-item summary {
  font-weight: 600;
  color: #2c3e50;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #007bff;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Sidebar Styling */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.25rem;
}

.booking-card {
  background: linear-gradient(135deg, var(--grey-gradient) 0%, var(--black) 100%);
  color: white;
  top: 20px;
}

.booking-card h3,
.booking-card p,
.booking-card strong {
  color: white;
}

.price-display {
  text-align: center;
  padding: 1rem;
  margin: 1rem 0;
  background: rgb(0 0 0 / 50%);
  border-radius: 6px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.duration-options {
  margin: 1rem 0;
  padding: 1rem;
  background: rgb(0 0 0 / 50%);
  border-radius: 6px;
}

.duration-options ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

.duration-options li {
  padding: 0.25rem 0;
}

.price-details {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0.5rem 0;
}

.btn-block {
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

.contact-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

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

.related-services li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.related-services li:last-child {
  border-bottom: none;
}

.related-services a {
  color: #007bff;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-services a::after {
  content: "→";
}

.related-services a:hover {
  color: #0056b3;
}

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

.trust-list li {
  padding: 0.5rem 0;
  color: #555;
}

/* CTA Section */
.service-cta-section {
  background-image: linear-gradient(to right, #252e37, #384553, #252e37);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .service-hero-grid,
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .service-cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    text-align: center;
  }
  
  .booking-card {
    position: static;
  }
}