/* Hizmetlerimiz Sayfası Özel Stilleri */

/* Services Hero Banner */
.services-hero {
  position: relative;
  height: 40vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tactical-green);
  border-bottom: 2px solid var(--muted-gold);
  padding-top: 80px;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  filter: grayscale(80%) brightness(0.6);
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--tactical-green), rgba(27, 48, 34, 0.4));
  z-index: 1;
}

/* Zigzag Layout */
.zigzag-section {
  display: flex;
  flex-direction: column;
  gap: 0; /* Removing gap to let them touch or we can add spacing */
}

.zigzag-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(27, 48, 34, 0.1);
  background-color: var(--surface);
}

.zigzag-row:nth-child(even) {
  background-color: white;
}

@media (min-width: 1024px) {
  .zigzag-row {
    flex-direction: row;
  }
  
  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }
}

.zigzag-content {
  flex: 1;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .zigzag-content {
    padding: 80px 64px;
  }
}

@media (min-width: 1024px) {
  .zigzag-content {
    padding: 100px 80px;
  }
}

.zigzag-image-wrapper {
  flex: 1;
  position: relative;
  min-height: 400px;
  background-color: var(--tactical-green);
  overflow: hidden;
}

.zigzag-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  transition: transform 1s ease;
}

.zigzag-row:hover .zigzag-image {
  transform: scale(1.05);
}

.zigzag-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(27,48,34,0.4), transparent);
  mix-blend-mode: multiply;
}

.zigzag-number {
  font-family: var(--font-mono-family);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(27, 48, 34, 0.05);
  position: absolute;
  top: 24px;
  right: 24px;
  pointer-events: none;
}

.zigzag-icon {
  margin-bottom: 24px;
  color: var(--muted-gold);
}

.zigzag-title {
  margin-bottom: 24px;
}

.zigzag-text {
  color: rgba(27, 48, 34, 0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

.zigzag-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: auto;
}

@media (min-width: 768px) {
  .zigzag-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item .material-symbols-outlined {
  color: var(--muted-gold);
  font-size: 20px;
  margin-top: 2px;
}

.feature-text {
  font-size: 14px;
  color: var(--tactical-green);
  font-weight: 500;
}
