/* ===================== */
/*     Hakkımızda CSS    */
/* ===================== */
:root {
  --accent: #e67e22;
  --dark: #020c3a;
  --light: #f9f9f9;
  --text: #333;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}
.hero p {
  font-size: 1.15rem;
}

/* Başlık */
section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
}
section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Genel metin */
section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}
section p strong {
  color: var(--accent);
}

/* Güven vurgusu */
.trust {
  background: linear-gradient(180deg, #fff, #fef7f1);
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 8px;
}

/* ===================== */
/*       İKONLAR         */
/* ===================== */
.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.about-icon i {
  font-size: 4.5rem;
  color: var(--accent);
}
.about-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: rgba(230, 126, 34, 0.12);
}

/* Vizyon listesi (kutusuz) */
.vision-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.vision-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.9;
}
.vision-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 6px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
}
.vision-list strong {
  color: var(--dark);
}

/* ===================== */
/*         CTA           */
/* ===================== */
.cta {
  background: linear-gradient(135deg, #020c3a, #0b1d57);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta h2,
.cta p {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Butonlar (Fabrika boyutlarıyla aynı) */
.btn-accent {
  background-color: var(--accent);
  border: none;
  color: #fff;
  padding: 10px 20px;     /* Fabrika ile aynı */
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 600;
}
.btn-accent:hover {
  background-color: #cf6d19;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Ortalanmış buton – Fabrika: max-width 280px */
.btn-center {
  display: block;
  margin: 20px auto 0;
  max-width: 280px;       /* 320px -> 280px */
  text-align: center;
}

/* WhatsApp floating (site genelinde varsa dokunmayın) */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
}

/* Animasyon */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .about-icon { width: 120px; height: 120px; }
  .about-icon i { font-size: 3.2rem; }
  section h2 { font-size: 1.6rem; }
}

/* ===================== */
/*  Emniyet şeritleri   */
/* ===================== */

/* 1) CTA içinde yanlışlıkla genişleyen linklerin alt çizgi vermesini engelle */
.cta a:not(.btn) {
  text-decoration: none;
  color: inherit;
}

/* 2) Footer bileşeni (altbolumbilgilendirme.css) altını çizmesin – global güvenlik */
footer.alt-bolum-modern a:not(.btn),
footer.alt-bolum-modern a:not(.btn):hover,
footer.alt-bolum-modern a:not(.btn):visited {
  text-decoration: none !important;
  color: inherit;
}

/* 3) Hakkımızda – CTA buton görünürlük ve BOYUT override'ı */
.cta .btn.btn-accent,
.cta a.btn.btn-accent {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;

  /* Boyut eşitleme (Fabrika) */
  padding: 10px 20px !important;  /* .btn-lg’yi iptal eder */
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border-radius: 6px !important;

  display: inline-block;
  width: auto !important;          /* .w-100’ü iptal eder (masaüstü) */
  max-width: 280px;                /* Fabrika ile aynı */
}

/* Hover / Active */
.cta .btn.btn-accent:hover,
.cta a.btn.btn-accent:hover {
  background-color: #cf6d19 !important;
  border-color: #cf6d19 !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.cta .btn.btn-accent:active,
.cta a.btn.btn-accent:active {
  background-color: #cf6d19 !important;
  border-color: #cf6d19 !important;
}

/* Odak görünürlüğü */
.cta .btn.btn-accent:focus-visible,
.cta a.btn.btn-accent:focus-visible {
  outline: 2px solid rgba(230,126,34,.5);
  outline-offset: 2px;
}

/* 4) D-GRID genişletmesini kapat: butonun taş gibi sabit kalması için */
.cta .d-grid > .btn.btn-accent {
  justify-self: center;           /* grid germesin */
  width: auto !important;         /* w-100’ü iptal et */
  max-width: 280px;               /* Fabrika ile aynı */
  padding: 10px 20px !important;  /* güvence */
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border-radius: 6px !important;
  display: inline-block;
}
.cta .d-grid > .btn.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Mobile’da istersen yine full genişlik */
@media (max-width: 576px) {
  .cta .d-grid > .btn.btn-accent {
    justify-self: stretch;
    width: 100% !important;
    max-width: none;
    display: block;
  }
}

/* ===================== */
/* WhatsApp Floating Btn */
/* ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background-color: #25D366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  text-decoration: none;
}
/* Küçük ekran ayarı */
@media (max-width: 576px){
  .whatsapp-float{
    width: 70px;
    height: 70px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .whatsapp-float img{
    width: 36px; height: 36px;
  }
}
/* Hareket hassasiyeti */
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ transition: none; }
}
/* Yazdırmada gizle */
@media print{
  .whatsapp-float{ display: none !important; }
}