/* =====================================================
   INDEX.CSS — Ana Sayfa Stilleri
===================================================== */

/* HERO Bölümü */
.hero-section {
  background: linear-gradient(135deg, #002b5c, #005eff);
  color: #fff;
  text-align: center;
  padding: 80px 20px; /* 🔹 Öncekinden daha kısa */
  margin-top: -60px; /* 🔹 Navbar altına daha yakın */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero-title {
  font-size: 2.5rem; /* 🔹 Öncekinden biraz daha küçük */
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.1rem; /* 🔹 Küçültüldü */
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background: #ffcc00;
  color: #002b5c;
  padding: 10px 22px; /* 🔹 Biraz daha küçük buton */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffe066;
  transform: scale(1.05);
}

/* HAKKIMIZDA Bölümü */
.about-section {
  padding: 80px 20px;
  background: #f5f8fb;
  text-align: center;
  margin-top: 20px; /* 🔹 Navbar ve hero arasına boşluk */
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about-content h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  background: #1d81e6;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.10s ease;
}

.btn-secondary:hover {
  background: #005fa3;
  color: #ffffff !important;   /* YAZI RENGİNİ SABİTLE */
  transform: translateY(-3px);
}


/* ÖZELLİKLER Bölümü */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background: transparent !important;   /* Arka planı tamamen kaldırır */
  box-shadow: none !important;          /* Gizli gölge efektlerini temizler */
}


.features-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .features-grid {
    gap: 20px;
  }
}

/* ============================================================
   PREMIUM REFERANS BÖLÜMÜ — 6 Kart İçin Optimize (Final Version)
============================================================== */
.refs-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #4685cd;
  margin-bottom: 10px;
}

.refs-subtitle {
  font-size: 1.15rem;
  color: #0a0101;
  margin-bottom: 50px;
}

.refs-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* KART TASARIMI */
.ref-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #e7eaf3;
  cursor: pointer;
}

/* Hover'da hafif premium efekt */
.ref-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* GÖRSEL Alanı */
.ref-icon img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;

  /* ARTIK SÖNÜK DEĞİL */
  filter: grayscale(0%);
  opacity: 1;

  transition: 0.35s ease-in-out;
}

/* Hover'da hafif parlama efekti */
.ref-card:hover .ref-icon img {
  transform: scale(1.07);
  filter: brightness(1.15);
}

/* Başlık */
.ref-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #002b5c;
}

/* Açıklama */
.ref-card p {
  font-size: 1.08rem;            /* Biraz büyütüldü */
  color: #2c2c2c;                /* Saf siyah yerine daha profesyonel koyu gri */
  margin-top: 12px;
  line-height: 1.65;             /* Okunabilirliği artırır */
  font-weight: 500;              /* Metni daha güçlü yapar */
  letter-spacing: 0.3px;         /* Harf aralığı ile netlik artırıldı */
}

@media (max-width: 768px) {
  .ref-icon img {
    width: 120px;
    height: 120px;
  }
  .refs-title {
    font-size: 2rem;
  }
}


/* =======================================================
   SSS – Glassmorphism Flip Card (Premium + Gold Border)
======================================================= */

.faq-cards-container {
  margin: 80px auto;
  max-width: 1200px;
  padding: 15px 20px;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* Kart dış katman */
.faq-card {
  perspective: 1200px;
  transition: transform 0.35s ease;
}

.faq-card:hover {
  transform: translateY(-6px);
}

/* Flip alanı */
.faq-card-inner {
  position: relative;
  width: 100%;
  height: 170px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.faq-card:hover .faq-card-inner {
  transform: rotateY(180deg);
}

/* Kart yüzleri (GOLD BORDER EKLENDİ) */
.faq-card-front,
.faq-card-back {
  position: absolute;
  width: 100%;
  height: 170px;
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;

  /* Glassmorphism Base */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* GOLD BORDER */
  border: 2px solid rgba(255, 204, 0, 0.9);

  /* Hafif gölge */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover GOLD PARLAMA efekti */
.faq-card:hover .faq-card-front {
  box-shadow:
    0 0 12px rgba(255, 204, 0, 0.7),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Ön yüz yazı */
.faq-card-front h3 {
  font-size: 1.15rem;
  color: #003d8f;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;
}

/* Arka yüz — GOLD + GRADIENT */
.faq-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #003d8f, #007aff);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 22px;

  /* Geri yüz için gold border ve hafif glow */
  border: 2px solid rgba(255, 204, 0, 0.9);
  box-shadow:
    0 0 14px rgba(255, 204, 0, 0.7),
    0 18px 45px rgba(0, 0, 0, 0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-card-inner,
  .faq-card-front,
  .faq-card-back {
    height: 150px;
  }
}


/* ==========================================================
   PROFKAROT – İstatistik Alanı (Premium + Gold Border)
========================================================== */

.stats {
  background: linear-gradient(135deg, #003d8f, #005eff);
  padding: 70px 20px;
  margin: 60px auto;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  /* GOLD BORDER */
  border: 3px solid rgba(255, 204, 0, 0.9);

  /* GOLD GLOW */
  box-shadow:
    0 0 18px rgba(255, 204, 0, 0.45),
    0 18px 45px rgba(0, 0, 0, 0.25);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffcc00;
  margin-bottom: 10px;
  letter-spacing: 1px;

  /* Gold Glow */
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.7);
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e6e6e6;
}

/* Mobil */
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2.2rem;
  }
}

/* ==========================================================
   EKİBİMİZ – Uzman Kadro (Premium 3D Tilt)
========================================================== */

.team-section {
  margin: 80px auto;
  padding: 50px 20px;
  max-width: 1200px;
  text-align: center;
}

.team-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #003d8f;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 45px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Kart */
.team-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 25px 20px;
  border-radius: 20px;

  /* GOLD BORDER */
  border: 2px solid rgba(255, 204, 0, 0.9);

  /* GÖLGE */
  box-shadow:
    0 0 12px rgba(255, 204, 0, 0.35),
    0 8px 25px rgba(0, 0, 0, 0.15);

  transition: all 0.35s ease;
  text-align: center;
  cursor: pointer;

  /* 3D Tilt için */
  transform-style: preserve-3d;
  will-change: transform;
}


/* Fotoğraf kapsayıcı */
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;          /* Daire dışına taşanı gizler */
  border: 3px solid #ffcc00;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fotoğraf */
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* Kafayı kadrajın üst kısmına alır */
  display: block;
}



/* İsim */
.team-card h3 {
  font-size: 1.25rem;
  color: #003d8f;
  font-weight: 800;
  margin-bottom: 5px;
}

/* Rol */
.team-card .role {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Deneyim */
.team-card .exp {
  font-size: 0.95rem;
  color: #007aff;
  font-weight: 700;
}


/* =======================================================
   SERTİFİKALAR & YETKİNLİKLER
======================================================= */

.cert-section {
  margin: 80px auto;
  padding: 60px 20px;
  max-width: 1200px;
  text-align: center;
  background: #ffffff;
  border-radius: 22px;
  border: 2px solid #ffcc00;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.cert-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #003d8f;
  margin-bottom: 10px;
}

.cert-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 45px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 25px 20px;
  border: 2px solid #ffcc00;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cert-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

.cert-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003d8f;
  line-height: 1.35;
}


/* =======================================================
   PREMIUM TÜRKİYE HARİTA MODÜLÜ (Geliştirilmiş)
======================================================= */

.service-map-section {
  background: #ffffff;
  padding: 70px 40px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 80px auto;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  border: 1px solid #e6e9f0;
}

.map-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #003d8f;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.map-subtitle {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 40px;
}

.map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;

  /* Premium Border + Shadow */
  border: 2px solid #d8dfea;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Hover Efekti – Kutuyu Yükseltir */
.map-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border-color: #b7c4d9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.leaflet-control-attribution {
    display: none !important;
}


/* Mobil Uyum */
@media (max-width: 768px) {
  .service-map-section {
    padding: 40px 20px;
  }

  .map-wrapper {
    height: 300px;
  }

  .map-title {
    font-size: 1.9rem;
  }
}

 .marker-cluster-small {
    background-color: rgba(0,153,255,0.6);
  }
  .marker-cluster-medium {
    background-color: rgba(0,153,255,0.7);
  }
  .marker-cluster-large {
    background-color: rgba(0,153,255,0.85);
  }

  .marker-cluster div {
    background-color: #0099ff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid #ffffff;
  }
