/* =====================
   HİZMET SAYFALARI
   ===================== */

/* Hero */
.hizmet-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #274e78 60%, #1a5276 100%);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hizmet-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.back-link {
  display: inline-block;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.back-link:hover { color: #fff; }

.hizmet-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.hizmet-hero-icon svg { width: 100%; height: 100%; }

.hizmet-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.hizmet-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Content Grid */
.hizmet-content { padding-top: 70px; padding-bottom: 80px; }

.hizmet-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.hizmet-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.hizmet-main > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* List */
.hizmet-list { display: flex; flex-direction: column; gap: 22px; }
.hizmet-list-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.hizmet-list-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(240,165,0,.08);
}
.hizmet-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.hizmet-list-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 5px;
}
.hizmet-list-item p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* Sidebar */
.hizmet-side { display: flex; flex-direction: column; gap: 24px; }

.hizmet-cta-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.hizmet-cta-box h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hizmet-cta-box p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-bottom: 20px;
}

.diger-hizmetler {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.diger-hizmetler h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.diger-hizmetler ul { display: flex; flex-direction: column; gap: 4px; }
.diger-hizmetler a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.diger-hizmetler a:hover { background: #fff; color: var(--gold); }

/* Responsive */
@media (max-width: 800px) {
  .hizmet-grid {
    grid-template-columns: 1fr;
  }
  .hizmet-side { order: -1; }
  .hizmet-cta-box { display: none; }
}

@media (max-width: 640px) {
  .hizmet-hero { padding: 44px 0 52px; }
  .hizmet-hero-icon { width: 60px; height: 60px; }
}
