/* ========================================= */
/* ULTRA MODERN FOOTER & YÜZEN BUTONLAR      */
/* ========================================= */

.modern-footer {
  background-color: #0f172a;
  color: #94a3b8;
  font-family: 'Manrope', sans-serif;
  position: relative;
  margin-top: 80px;
}

/* Üstteki gradient ince hareketli çizgi */
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ca8a04 0%, #fef08a 50%, #ca8a04 100%);
  background-size: 200% auto;
  animation: shineBorder 4s linear infinite;
}

@keyframes shineBorder {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

/* Brand Column */
.footer-logo {
  margin-bottom: 24px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 90%;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-socials a:hover {
  background: #eab308;
  color: #0f172a;
  border-color: #eab308;
  transform: translateY(-3px);
}

/* Headings */
.footer-heading {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: #eab308;
  border-radius: 2px;
}

/* Navigation Links */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 15px;
}
.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.footer-nav a i {
  font-size: 10px;
  color: #eab308;
  transition: transform 0.3s ease;
}
.footer-nav a:hover { color: #eab308; }
.footer-nav a:hover i { transform: translateX(4px); }

/* Contact Info */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact-info li i {
  color: #eab308;
  font-size: 18px;
  margin-top: 3px;
}
.footer-contact-info li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact-info li a:hover { color: #eab308; }

/* Bottom Bar */
.footer-bottom {
  background: #0b1120;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.bottom-flex p { margin: 0; font-size: 14px; color: #e2e8f0; }
.bottom-flex strong { color: #cbd5e1; font-weight: 600; }
.developer a { color: #fef08a; text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.developer a:hover { color: #fef08a; }

/* Yüzen İletişim Butonları (Telefon & WhatsApp) */
.phone-wrapper {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 999;
}

.floating-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.floating-button.phone {
  background-color: #111;
  border: 2px solid #eab308;
}

.floating-button.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background-color: #25d366;
  z-index: 999;
  border: 2px solid transparent;
}

.floating-button i {
  font-size: 24px;
  color: #fff;
}

.floating-button:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* --- RESPONSIVE EKRAN UYUMLULUĞU --- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brand-col { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .footer-top { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-logo img { margin: 0 auto; }
  .brand-col { text-align: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .links-col, .contact-col { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-nav a { justify-content: center; }
  .footer-contact-info li {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .footer-contact-info li i {
    margin-top: 0;
    margin-bottom: 4px;
  }
  .bottom-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  /* Mobilde yüzen butonların footer üzerine binmesini engeller */
  .phone-wrapper { bottom: 80px; }
  .floating-button.whatsapp { bottom: 80px; }
}