/* ==========================================
   ANA SAYFA ÖZEL STİLLERİ (ŞAHİN HUKUK)
   ================================---------- */

/* --- 1. HERO SLIDER --- */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background-color: var(--bg-navy);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
}

/* --- 2. ÜÇLÜ BİLGİ KARTLARI --- */
.info-cards-section {
  max-width: 1200px;
  margin: -60px auto 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-brown);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-card-header i {
  font-size: 28px;
  color: var(--accent-brown);
}

.info-card-header h3 {
  font-size: 20px;
  color: var(--bg-navy);
  margin: 0;
  font-weight: 700;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  text-align: justify;
}

/* --- 3. ARABULUCULUK TANITIM BÖLÜMÜ --- */
.arabuluculuk-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.arabuluculuk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.arabulucu-img-box {
  position: relative;
  height: 100%;
  min-height: 380px;
}

.arabulucu-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.satisfaction-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  background-color: var(--bg-navy);
  color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  border-top-right-radius: 8px;
}

.satisfaction-badge i {
  color: var(--accent-brown);
  font-size: 24px;
  margin-bottom: 5px;
}

.satisfaction-badge .number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.satisfaction-badge span:not(.number) {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-brown);
  font-weight: 600;
}

.arabulucu-content {
  padding: 40px;
}

.arabulucu-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-brown);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.arabulucu-content h2 {
  font-size: 28px;
  color: var(--bg-navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.arabulucu-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: justify;
}

.btn-luxury {
  display: inline-block;
  background-color: var(--accent-brown);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-luxury:hover {
  background-color: var(--bg-navy);
  color: var(--accent-brown);
}

/* --- 4. ÇALIŞMA ALANLARI 9'LU IZGARA (3x3) --- */
.services-grid-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrapper h2 {
  font-size: 32px;
  color: var(--bg-navy);
  margin-bottom: 0;
  font-weight: 700;
}

.services-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Yan yana 3 kutu */
  gap: 30px;
}

.service-grid-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.service-grid-card i {
  font-size: 32px;
  color: var(--accent-brown);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-grid-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-navy);
  transition: color 0.3s ease;
}

.service-grid-card:hover {
  background-color: var(--bg-navy);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.15);
}

.service-grid-card:hover i,
.service-grid-card:hover span {
  color: var(--accent-brown);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .arabuluculuk-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid-9 {
    grid-template-columns: repeat(2, 1fr); /* Tablette yan yana 2 kutu */
  }

  .info-cards-section {
    margin-top: -15px;
    padding: 0 15px; 
  }
  
  /* --- SLIDER MOBİL KUSURSUZ GÖRÜNÜM --- */
  .hero-slider-container {
    height: 250px;
    display: flex;
    align-items: center;
    background-color: var(--bg-navy);
  }
  
  .hero-slide img {
    object-fit: contain !important;
    object-position: center;
    background-color: var(--bg-navy); 
  }
}

/* Ekstra Küçük Telefon Ekranları İçin İnce Ayar */
@media (max-width: 576px) {
  .hero-slider-container {
    height: 200px;
  }
  
  .services-grid-9 {
    grid-template-columns: 1fr; /* Telefonda alt alta tek kutu */
    gap: 15px;
  }
}