/* ==========================================================================
   SINGLE SERVICE PAGE STYLES (single-service.php) - LOGO GREEN COLOR
   ========================================================================== */

.single-service-hero {
  padding: 60px 0 40px;
  background: #fff;
  text-align: center;
}

.service-hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.single-service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0;
  color: #1d617b;
  line-height: 1.2;
}

.section-divider-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: #1d617b;
  text-align: center;
  margin: 0 auto 50px;
  position: relative;
}

.section-divider-title::before,
.section-divider-title::after {
  content: none !important;
  display: none !important;
}

.service-what-is-it,
.service-competitive-edge {
  padding: 60px 0;
  background: #fff;
}

.service-what-we-do {
  padding: 60px 0;
  background: #f8f9fa;
}

.what-is-it-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  text-align: justify;
}

.what-is-it-content p {
  margin: 0 0 20px;
}

.what-is-it-content p:last-child {
  margin-bottom: 0;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.what-we-do-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.what-we-do-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.wwd-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(29, 97, 123, 0.08);
}

.wwd-icon i {
  font-size: 36px;
  color: #1d617b;
}

.what-we-do-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d617b;
  margin: 0 0 15px;
  line-height: 1.3;
}

.what-we-do-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  text-align: justify;
}

.competitive-edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.edge-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 12px;
  line-height: 1.3;
}

.edge-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
  text-align: justify;
}

.service-contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-contact-wrapper {
  grid-template-columns: 1fr 450px;
}

/* Responsive */
@media (max-width: 1024px) {
  .what-we-do-grid,
  .competitive-edge-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .single-service-hero {
    padding: 50px 15px 30px;
  }

  .service-hero-icon {
    width: 80px;
    height: 80px;
  }

  .service-what-is-it,
  .service-what-we-do,
  .service-competitive-edge {
    padding: 50px 15px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .what-we-do-card {
    padding: 35px 25px;
  }

  .service-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero-icon {
    width: 70px;
    height: 70px;
  }

  .single-service-hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .wwd-icon {
    width: 60px;
    height: 60px;
  }

  .wwd-icon i {
    font-size: 30px;
  }

  .what-we-do-card {
    padding: 30px 20px;
  }
}