/* ─────────────────────────────────────────
   NBK Touristic — services.css
───────────────────────────────────────── */

/* ─────────────────────────
   SECTION
───────────────────────── */
.services-section {
  background: #ffffff;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Arka plan dekoratif daire */
.services-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,173,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ─────────────────────────
   BAŞLIK
───────────────────────── */
.services-head {
  text-align: center;
  margin-bottom: 64px;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a5fad;
  margin-bottom: 14px;
}
.services-eyebrow::before,
.services-eyebrow::after {
  content: '';
  width: 24px; height: 2px;
  background: #1a5fad;
  border-radius: 2px;
  opacity: 0.4;
}

.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.1;
}
.services-title span { color: #1a5fad; }

.services-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #7a8fa6;
  font-weight: 400;
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─────────────────────────
   GRID
───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─────────────────────────
   KART
───────────────────────── */
.service-card {
  position: relative;
  background: #f8fafd;
  border: 1px solid #e4ecf5;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  overflow: hidden;
  transition: background 0.35s ease,
              border-color 0.35s ease,
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a5fad, #2e7dd1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 16px 16px;
}

.service-card:hover {
  background: #ffffff;
  border-color: rgba(26,95,173,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26,95,173,0.1);
}
.service-card:hover::after {
  transform: scaleX(1);
}

/* İkon kutu */
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #eff5fc;
  border: 1px solid rgba(26,95,173,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: #1a5fad;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.service-card:hover .service-icon {
  background: #1a5fad;
  border-color: #1a5fad;
  transform: rotate(-6deg) scale(1.1);
}
.service-card:hover .service-icon svg {
  stroke: #ffffff;
}

/* Metin */
.service-body { display: flex; flex-direction: column; gap: 6px; }

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f1c2e;
  line-height: 1.2;
  transition: color 0.2s;
}
.service-card:hover .service-name { color: #1a5fad; }

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7a8fa6;
  font-weight: 400;
  line-height: 1.65;
}

/* ─────────────────────────
   SCROLL REVEAL
───────────────────────── */
.services-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services-head.services-reveal      { transition-delay: 0s; }
.service-card.services-reveal:nth-child(1) { transition-delay: 0.05s; }
.service-card.services-reveal:nth-child(2) { transition-delay: 0.13s; }
.service-card.services-reveal:nth-child(3) { transition-delay: 0.21s; }
.service-card.services-reveal:nth-child(4) { transition-delay: 0.29s; }
.service-card.services-reveal:nth-child(5) { transition-delay: 0.37s; }
.service-card.services-reveal:nth-child(6) { transition-delay: 0.45s; }
.service-card.services-reveal:nth-child(7) { transition-delay: 0.53s; }
.service-card.services-reveal:nth-child(8) { transition-delay: 0.61s; }
.service-card.services-reveal:nth-child(9) { transition-delay: 0.69s; }

/* ─────────────────────────
   RESPONSIVE
───────────────────────── */
@media (max-width: 1024px) {
  .services-inner { padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-section { padding: 56px 0 64px; }
  .services-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 24px 20px; }
}