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

/* ─────────────────────────
   FOOTER WRAPPER
───────────────────────── */
.site-footer {
  background: #0f1c2e;
  position: relative;
  overflow: hidden;
}

/* Dekoratif arka plan */
.site-footer::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,173,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.site-footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,95,173,0.5), transparent);
}

/* ─────────────────────────
   ANA İÇERİK
───────────────────────── */
.footer-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 52px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}

/* ─────────────────────────
   SOL KOLON — Logo + TÜRSAB
───────────────────────── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
  transition: opacity 0.2s;
}
.footer-logo img:hover { opacity: 0.85; }

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.7;
  max-width: 280px;
}

/* TÜRSAB rozetleri */
.footer-tursab {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tursab-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.tursab-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tursab-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.tursab-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.tursab-badge img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.tursab-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tursab-badge-title {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}
.tursab-badge-no {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #4fa3e0;
}

/* ─────────────────────────
   ORTA KOLON — Hızlı linkler
───────────────────────── */
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links li a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-links li:last-child a { border-bottom: none; }
.footer-links li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #1a5fad;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-links li a:hover {
  color: rgba(255,255,255,0.9);
  gap: 12px;
}
.footer-links li a:hover::before { opacity: 1; }

/* ─────────────────────────
   SAĞ KOLON — İletişim
───────────────────────── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(26,95,173,0.15);
  border: 1px solid rgba(26,95,173,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-icon svg {
  width: 15px; height: 15px;
  stroke: #4fa3e0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fc-body { display: flex; flex-direction: column; gap: 2px; }
.fc-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.fc-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}
a.fc-value:hover { color: #4fa3e0; }

/* ─────────────────────────
   ALT BAR
───────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────
   RESPONSIVE
───────────────────────── */
@media (max-width: 1024px) {
  .footer-main { padding: 52px 32px 48px; gap: 40px; }
  .footer-bottom-inner { padding: 18px 32px; }
}
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    gap: 40px;
  }
  .footer-bottom-inner {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tursab-badges { flex-direction: row; }
  .tursab-badge { flex: 1; }
}
@media (max-width: 480px) {
  .tursab-badges { flex-direction: column; }
}

.footer-copy-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copy-link:hover {
  color: rgba(255,255,255,0.8);
}