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

.hizmetler-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BREADCRUMB */
.hizmetler-breadcrumb-wrap {
  padding-top: 24px;
}

.hizmetler-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C5C9D1;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s;
}
.hizmetler-breadcrumb:hover {
  opacity: 1;
  color: #FFD60A;
}

/* HERO */
.hizmetler-hero {
  text-align: center;
  padding: 40px 0 32px;
}

.hizmetler-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 10, 0.08);
  border: 1px solid rgba(255, 214, 10, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  color: #FFD60A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.hizmetler-eyebrow-pill .dot {
  width: 6px;
  height: 6px;
  background: #FFD60A;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hizmetler-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.yellow-italic {
  color: #FFD60A;
  font-style: italic;
}

.yellow-text {
  color: #FFD60A;
}

.hizmetler-hero-description {
  color: #C5C9D1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 16px;
}

.hizmetler-click-hint {
  color: #FFD60A;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  opacity: 0.85;
}

/* ============ HİZMET GRİDİ ============ */
.hizmetler-grid-wrap {
  padding: 24px 0 48px;
}

.hizmetler-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.hizmet-card {
  background: #34373E;
  border: 1px solid #40444C;
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

.hizmet-card:hover {
  background: #3E4148;
  transform: translateY(-3px);
  border-color: #FFD60A;
}

.hizmet-card.active {
  background: linear-gradient(135deg, #FFD60A 0%, #F5BB00 100%) !important;
  border-color: #FFD60A;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.3);
}

.hizmet-num {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #FFD60A;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.4;
  transition: all 0.2s;
}

.hizmet-card.active .hizmet-num {
  color: #2A2D33;
  opacity: 0.5;
}

.hizmet-icon {
  color: #FFD60A;
  font-size: 36px;
  transition: all 0.2s;
}

.hizmet-card.active .hizmet-icon {
  color: #2A2D33;
}

.hizmet-card:hover .hizmet-icon {
  transform: scale(1.05);
}

.hizmet-name {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  transition: all 0.2s;
}

.hizmet-sub {
  color: #8B8F99;
  font-size: 11px;
  transition: all 0.2s;
}

.hizmet-card.active .hizmet-name,
.hizmet-card.active .hizmet-sub {
  color: #2A2D33;
}

.hizmet-card.active .hizmet-name {
  font-weight: 800;
}

.hizmet-card.active .hizmet-sub {
  opacity: 0.7;
}

.hizmet-line {
  background: #FFD60A;
  height: 2px;
  width: 20px;
  margin: 10px auto 0;
  transition: all 0.2s;
  opacity: 0.7;
}

.hizmet-card.active .hizmet-line {
  background: #2A2D33;
  opacity: 0.5;
  width: 30px;
}

.hizmet-card:hover .hizmet-line {
  opacity: 1;
  width: 30px;
}

/* ============ DETAY PANELİ ============ */
.hizmet-detail-panel {
  background: linear-gradient(135deg, #34373E 0%, #2A2D33 100%);
  border: 1px solid #FFD60A;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 14px;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hizmet-detail-arrow {
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background: #34373E;
  border-top: 1px solid #FFD60A;
  border-left: 1px solid #FFD60A;
  transform: rotate(45deg);
  margin-left: -8px;
  transition: left 0.3s ease;
}

.hizmet-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: #FFD60A;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
}
.hizmet-close-btn:hover {
  background: rgba(255, 214, 10, 0.2);
  transform: rotate(90deg);
}
.hizmet-close-btn i {
  font-size: 18px;
}

.hizmet-detail-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.hizmet-detail-icon-box {
  background: linear-gradient(135deg, #FFD60A 0%, #F5BB00 100%);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 6px 20px rgba(255, 214, 10, 0.25);
}

.hizmet-detail-icon-box i {
  color: #2A2D33;
  font-size: 64px;
}

.hizmet-detail-label {
  color: #2A2D33;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-top: 12px;
}

.hizmet-detail-text {
  padding-right: 50px; /* X butonu için yer */
}

.hizmet-detail-category {
  color: #FFD60A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.hizmet-detail-title {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hizmet-detail-description {
  color: #C5C9D1;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.hizmet-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.hizmet-detail-tag {
  background: rgba(255, 214, 10, 0.1);
  color: #FFD60A;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 214, 10, 0.2);
}

.hizmet-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hizmet-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.hizmet-detail-btn i {
  font-size: 16px;
}
.hizmet-detail-btn.primary {
  background: #FFD60A;
  color: #2A2D33;
}
.hizmet-detail-btn.primary:hover {
  background: #F5BB00;
  transform: translateY(-2px);
}
.hizmet-detail-btn.secondary {
  background: transparent;
  border: 1px solid #FFD60A;
  color: #FFD60A;
}
.hizmet-detail-btn.secondary:hover {
  background: rgba(255, 214, 10, 0.08);
}

/* ============ CTA ============ */
.hizmetler-cta {
  background: linear-gradient(180deg, #25272D 0%, #2A2D33 100%);
  border: 1px solid #40444C;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin: 32px 0 48px;
}

.hizmetler-cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.hizmetler-cta-content p {
  color: #8B8F99;
  font-size: 14px;
  margin: 0 0 24px;
}

.hizmetler-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hizmetler-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.hizmetler-cta-btn i {
  font-size: 18px;
}
.hizmetler-cta-btn.primary {
  background: #FFD60A;
  color: #2A2D33;
}
.hizmetler-cta-btn.primary:hover {
  background: #F5BB00;
  transform: translateY(-2px);
}
.hizmetler-cta-btn.secondary {
  background: transparent;
  border: 1.5px solid #FFD60A;
  color: #FFD60A;
}
.hizmetler-cta-btn.secondary:hover {
  background: rgba(255, 214, 10, 0.08);
  transform: translateY(-2px);
}

/* ============ MOBİL ============ */
@media (max-width: 1024px) {
  .hizmetler-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hizmet-detail-content {
    grid-template-columns: 1fr;
  }
  
  .hizmet-detail-icon-box {
    width: 100%;
    min-height: 120px;
  }
  
  .hizmet-detail-text {
    padding-right: 0;
  }
  
  /* Mobilde ok ortada sabit */
  .hizmet-detail-arrow {
    left: 50% !important;
  }
}

@media (max-width: 640px) {
  .hizmetler-page {
    padding: 0 16px;
  }
  
  .hizmetler-hero {
    padding: 24px 0 20px;
  }
  
  .hizmetler-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .hizmet-card {
    padding: 18px 10px;
  }
  
  .hizmet-icon {
    font-size: 28px;
  }
  
  .hizmet-name {
    font-size: 12px;
  }
  
  .hizmet-sub {
    font-size: 10px;
  }
  
  .hizmet-detail-panel {
    padding: 20px;
  }
  
  .hizmet-detail-title {
    font-size: 18px;
  }
  
  .hizmet-detail-description {
    font-size: 13px;
  }
  
  .hizmetler-cta {
    padding: 32px 22px;
  }
}
</style>
