/* Hizmetlerimiz Sayfası Özel Stilleri */

/* Zigzag Section */
.zigzag-section {
  background-color: #fff;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid rgba(15, 31, 56, 0.06);
}
/* Çapraz (Zigzag) dizilim için Order kullanımı */
.zigzag-row.reverse .zigzag-content {
  order: 2;
}
.zigzag-row.reverse .zigzag-image-wrapper {
  order: 1;
}

/* Mobilde çaprazlık iptal olur, hepsi standart hizaya girer */
@media (max-width: 1024px) {
  .zigzag-row,
  .zigzag-row.reverse {
    grid-template-columns: 1fr;
  }
  .zigzag-content, 
  .zigzag-row.reverse .zigzag-content {
    order: 2; /* Mobilde yazı hep altta */
  }
  .zigzag-image-wrapper, 
  .zigzag-row.reverse .zigzag-image-wrapper {
    order: 1; /* Mobilde resim hep üstte */
  }
}

/* Content side */
.zigzag-content {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #fff;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .zigzag-content {
    padding: 44px 28px;
    order: 2;
  }
  .zigzag-number {
    font-size: 64px;
    top: 12px;
    right: 18px;
  }
  .zigzag-row.reverse .zigzag-number {
    left: 18px;
  }
}

/* Large faded number */
.zigzag-number {
  font-family: var(--font-h-family);
  font-size: 82px;
  font-weight: 900;
  color: rgba(15, 31, 56, 0.04);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 30px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.zigzag-row.reverse .zigzag-number {
  right: auto;
  left: 30px;
}

/* Icon */
.zigzag-icon {
  width: 64px;
  height: 64px;
  background: rgba(196, 155, 85, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-accent);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.zigzag-row:hover .zigzag-icon {
  background: var(--brand-accent);
  color: white;
}

/* Title */
.zigzag-title {
  font-family: var(--font-h-family);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Text */
.zigzag-text {
  color: rgba(15, 31, 56, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Features */
.zigzag-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-primary);
}

.feature-item .material-symbols-outlined {
  font-size: 20px;
  color: var(--brand-accent);
  flex-shrink: 0;
}

/* Image side */
.zigzag-image-wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .zigzag-image-wrapper {
    height: 300px;
    order: 1;
  }
}

.zigzag-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Gold accent corner */
.zigzag-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--brand-accent);
  transition: width 0.5s ease;
}

.zigzag-row:hover .zigzag-accent {
  width: 100%;
}

/* Arrow link */
.srv-lux-arrow {
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.srv-lux-arrow:hover {
  color: var(--brand-accent);
}
.srv-lux-arrow-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.srv-lux-arrow-icon {
  font-size: 18px;
  color: var(--brand-accent);
}
