/* HERO SECTION */
.hero {
  background: url("../web-img/service/banner.webp") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--black);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--black);
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 20px 0 100px 0;
  background: var(--bg-light);
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.services-overview > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay i {
  font-size: 3rem;
  color: var(--primary);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-content > p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.service-features i {
  color: var(--primary);
  font-size: 0.9rem;
}

.service-btn {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

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

/* PROCESS SECTION */
.process {
  padding: 100px 0;
  background: var(--bg-main);
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* BENEFITS SECTION */
.benefits {
  padding: 100px 0;
  background: var(--bg-light);
}

.benefits-content {
  gap: 60px;
  align-items: center;
}

.benefits-text {
  flex: 1;
}

.benefits-text h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.benefits-list {
  display: grid;
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.benefit-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefits-image {
  flex: 1;
}

.benefits-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }

  .benefits-content {
    flex-direction: column;
    gap: 40px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .service-content {
    padding: 20px;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .benefits-list {
    gap: 20px;
  }

  .benefit-item {
    gap: 15px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
