/* ==============================================
   NETTOYAGE FACADES PAGE - Dedicated Styles
   Only styles specific to this service page
   ============================================== */

/* Service Header Section */
#service-header {
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#service-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

#service-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#service-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-light);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gray-medium);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-blue);
}

.breadcrumb span {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Service Content Section */
.service-content {
  padding: 80px 2rem;
}

.service-overview {
  margin-bottom: 60px;
}

.service-overview h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark-blue);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.service-overview h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.service-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.service-overview strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Services Grid */
.services-included {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.services-included h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-checkmark {
  font-size: 1.5rem;
  color: var(--primary-blue);
  min-width: 30px;
}

.service-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--dark-blue);
}

.service-item p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* Services Grid with Images */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.service-card-image {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 20px;
}

.service-card-content h3 {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* How It Works - Process Steps */
.process-section {
  margin-bottom: 60px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  gap: 30px;
  position: relative;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 93, 163, 0.3);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.step-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.why-choose h2 {
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.why-choose h2::after {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.benefit-item h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.1rem;
}

.benefit-item p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: var(--gray-light);
  padding: 25px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

details:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 15px;
  color: var(--gray-medium);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--light-blue);
  padding: 50px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
  border: 2px solid var(--whatsapp-green);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #service-header {
    padding: 100px 1.5rem 40px;
  }

  .service-content {
    padding: 60px 1.5rem;
  }

  .services-included {
    padding: 30px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    gap: 25px;
  }

  .step-number {
    min-width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .why-choose {
    padding: 40px 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .header-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
  }
}
