/* Services Hero Section */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/assets/img/hero-img.jpg");
  filter: brightness(0.6);
}

.services-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 10rem 2rem 6rem 2rem;
  max-width: 900px;
  width: 100%;
}

/* Service Sections */
.service-section {
  padding: 6rem 0;
  position: relative;
}

.service-section-alt {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
}

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

.service-grid-reverse {
  direction: rtl;
}

.service-grid-reverse > * {
  direction: ltr;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.service-content {
  position: relative;
}

/* Service Features */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-feature:hover {
  background: var(--card);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bg);
}

/* Service Image */
.service-image {
  position: relative;
}

.service-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  aspect-ratio: 4/3;
}

.service-image-wrapper img {
  transition: transform 0.6s ease;
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.service-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
  text-align: center;
  min-width: 140px;
}

@media (max-width: 1023px) {
  .service-stat-card {
    right: 1.5rem;
    bottom: -1rem;
  }
}

@media (max-width: 640px) {
  .service-section {
    padding: 4rem 0;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--bg);
}

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

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cta-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(80, 156, 53, 0.1);
  transform: translateY(-4px);
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.cta-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--bg);
}
