/* Unified Services Page Styling */

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 80px auto 0;
  color: #666;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #611b1b;
  
}

.breadcrumb span {
  color: #333;
  font-weight: 500;
}

/* Service Detail Hero */
.service-hero {
  position: relative;
  max-width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #611b1b 0%, #0f172a 70%, #1e3a8a 100%);
  margin-bottom: 3rem;
}

.service-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.service-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
}

.service-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  text-align: center;
}

/* Service Content */
.service-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.overview-section {
  background: linear-gradient(135deg, rgba(97, 27, 27, 0.05) 0%, rgba(15, 23, 42, 0.05) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(97, 27, 27, 0.1);
  margin-bottom: 3rem;
  text-align: center;
}

.overview-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.description-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.description-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.features-section,
.benefits-section,
.gallery-section,
.specifications-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.service-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  border-radius: 2px;
}

/* Features & Benefits Lists */
.features-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features-list li,
.benefits-list li {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
  min-height: 80px;
}

.features-list li:hover,
.benefits-list li:hover {
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.15);
  border-color: #00bcd4;
  transform: translateY(-4px);
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  color: white;
  border-radius: 50%;
  margin-right: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Gallery Section */
/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slides-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 3px;
  user-select: none;
  z-index: 100;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 188, 212, 0.8);
}

.slide-dots {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: #00bcd4;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Specifications Grid */
.specifications-section {
  padding-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.spec-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: #00bcd4;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.25);
  transform: translateY(-4px);
}

.spec-card h4 {
  font-size: 1.05rem;
  color: #00bcd4;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #00bcd4;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.spec-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #611b1b 0%, #0f172a 70%, #1e3a8a 100%);
  color: white;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0 0;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-box p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  color: white;
}

.cta-box .btn {
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Service Hero Section */
/* Service Hero Section */
.service-hero-section {
  position: relative;
  height: 400px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 0;
  margin: 80px 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.service-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.service-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  color: white;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.service-hero-overlay p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Services Overview */
.services-overview {
  padding: 3rem 2rem;
  background: #f8f9fa;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.overview-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Services Section */
.main-services-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.main-services-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-align: center;
  position: relative;
}

.main-services-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.2);
  border-color: #667eea;
}

.service-item:hover .service-image {
  transform: scale(1.05);
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  border-color: #00bcd4;
}

.service-icon {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #00bcd4 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  margin-left: auto;
  margin-right: auto;
}

.service-item h3 {
  font-size: 1.3rem;
  color: #667eea;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-decoration-color: #667eea;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Service Process */
.service-process {
  padding: 4rem 2rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

.service-process h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-align: center;
  position: relative;
}

.service-process h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.step h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4rem 2rem;
  background: #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-align: center;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-card p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #00bcd4 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
}

.cta-section-services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section-services p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Related Services Section */
.related-services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 70%, #ffffff 100%);
  max-width: 100%;
  margin-top: 3rem;
}

.related-services h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: rgb(0, 0, 0);
  text-align: center;
  position: relative;
}

.related-services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #00bcd4 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.related-services .grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-services .card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.related-services .card h3 {
  font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.related-services .card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.related-services .card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-services .card a:hover {
  color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #611b1b 0%, #0f172a 70%, #1e3a8a 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 100%;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  background: #00bcd4;
  color: white;
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* CTA Section */
.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #00bcd4 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
}

.cta-section-services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section-services p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive Design */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .features-list,
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .features-list li,
  .benefits-list li {
    padding: 1.25rem;
    min-height: 85px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: 280px;
    margin-bottom: 1.5rem;
  }

  .service-hero-content {
    padding: 1.5rem 1rem;
  }

  .service-hero-content h1 {
    font-size: 1.6rem;
  }

  .service-hero-content p {
    font-size: 0.95rem;
  }

  .service-content {
    padding: 0 1rem;
  }

  .overview-section {
    padding: 1.5rem 1rem;
  }

  .description-section {
    padding: 1.5rem 0;
  }

  .features-section,
  .benefits-section,
  .gallery-section {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .features-list,
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-list li,
  .benefits-list li {
    padding: 1rem;
    min-height: auto;
  }

  .checkmark {
    min-width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .service-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .slideshow-container {
    margin: 1rem auto;
  }

  .prev, .next {
    padding: 10px 12px;
    font-size: 14px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .related-services .grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 2.5rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0.4rem auto;
  }

  .service-hero-section {
    height: 260px;
    margin: 80px 1rem 0;
  }

  .service-hero-overlay h1 {
    font-size: 1.8rem;
  }

  .service-hero-overlay p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .main-services-section,
  .service-process,
  .why-choose-us {
    padding: 2rem 1rem;
  }

  .services-overview {
    padding: 2rem 1rem;
  }

  .overview-description {
    font-size: 1rem;
  }

  .breadcrumb {
    padding: 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-icon {
    font-size: 1rem;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    height: 220px;
  }

  .service-hero-content h1 {
    font-size: 1.3rem;
  }

  .service-hero-content p {
    font-size: 0.85rem;
  }

  .service-content h2 {
    font-size: 1.2rem;
  }

  .service-hero-section {
    height: 220px;
    margin: 80px 0 0;
    border-radius: 0;
  }

  .service-hero-overlay h1 {
    font-size: 1.4rem;
  }

  .service-hero-overlay p {
    font-size: 0.9rem;
  }

  .main-services-section h2,
  .service-process h2,
  .why-choose-us h2,
  .cta-section-services h2 {
    font-size: 1.4rem;
  }

  .service-item h3 {
    font-size: 1.05rem;
  }

  .service-icon {
    font-size: 0.95rem;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    line-height: 44px;
  }

  .cta-section-services,
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-box {
    padding: 1.5rem 1rem;
  }

  .cta-box h3 {
    font-size: 1.2rem;
  }

  .features-list,
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-list li,
  .benefits-list li {
    padding: 1rem;
    min-height: auto;
    font-size: 0.9rem;
  }

  .checkmark {
    min-width: 24px;
    height: 24px;
    margin-right: 0.6rem;
  }
}
