/* ============================================================
   Hizmetler Sayfası – hizmetler.css
   ============================================================ */

/* Giriş */
.srv-intro {
  padding: 72px 24px 48px;
  text-align: center;
  background: #fff;
}
.srv-intro__inner {
  max-width: 760px;
  margin: 0 auto;
}
.srv-intro__tag {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b5a48a;
  margin-bottom: 14px;
}
.srv-intro h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
  line-height: 1.2;
}
.srv-intro p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* Hizmet Kartları Grid */
.srv-grid {
  background: #f5f3ef;
  padding: 56px 24px 72px;
}
.srv-grid__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.srv-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .28s ease, box-shadow .28s ease;
  border-top: 3px solid transparent;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.11);
  border-top-color: #ddd0bc;
}
.srv-card__icon {
  width: 64px;
  height: 64px;
  background: #f5f3ef;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #b5a48a;
  flex-shrink: 0;
}
.srv-card__icon svg {
  width: 100%;
  height: 100%;
}
.srv-card__body h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.srv-card__body p {
  font-size: .9rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}
.srv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.srv-card__list li {
  font-size: .82rem;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.srv-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #b5a48a;
  font-weight: 700;
}

/* Süreç */
.srv-process {
  background: #1a1a2e;
  padding: 72px 24px;
  color: #fff;
}
.srv-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.srv-process__inner h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
}
.srv-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.srv-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 0 16px;
  text-align: center;
}
.srv-step__num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(181,164,138,.25);
  line-height: 1;
  margin-bottom: 12px;
}
.srv-step h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ddd0bc;
  margin-bottom: 10px;
}
.srv-step p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.srv-step__arrow {
  align-self: flex-start;
  margin-top: 22px;
  font-size: 2rem;
  color: rgba(181,164,138,.4);
  padding: 0 4px;
}

.active-page {
  color: #b5a48a !important;
}

/* Responsive */
@media (max-width: 900px) {
  .srv-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-step__arrow { display: none; }
  .srv-process__steps { gap: 32px; }
}
@media (max-width: 600px) {
  .srv-grid__inner {
    grid-template-columns: 1fr;
  }
  .srv-step {
    max-width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding-bottom: 28px;
  }
}
