/* --- FOOTER (Görsele Birebir Uygun) --- */
footer {
  background-color: var(--footer-bg);
  color: #94a3b8;
  padding: 60px 0 40px 0;
  min-height: auto;
  display: block;
}

/* Footer Üst Kısım: Logo ve Slogan */
.footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.footer-logo {
  background-color: transparent;
  color: #0a2558;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-slogan {
  color: #64748b;
  font-size: 1rem;
  font-weight: 400;
}

/* Footer Grid: Menüler ve Copyright */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr; /* Son kolon daha geniş */
  gap: 20px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: #94a3b8;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

/* Sağ Taraf - Copyright ve Sosyal Medya */
.footer-right-col {
  text-align: right;
}

.copyright-header {
  color: white;
  font-family: "Playfair Display", serif; /* Görseldeki tırnaklı font */
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.copyright-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.social-text-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-text-links a {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #94a3b8;
}
.social-text-links a:hover {
  color: white;
}

/* Ayırıcı Çizgi */
.footer-divider {
  border: 0;
  border-top: 1px solid #1e293b;
  margin-bottom: 40px;
}

/* Alt Kısım - Newsletter ve Resim */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-office-img {
  width: 160px;
  height: 100px;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.footer-big-text {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: white;
  line-height: 1.2;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.newsletter-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}

.newsletter-wrapper {
  display: flex;
  gap: 10px;
}

.newsletter-wrapper input {
  background: transparent;
  border: 1px solid #334155;
  padding: 12px 20px;
  border-radius: 50px;
  color: white;
  outline: none;
  width: 250px;
}

.newsletter-wrapper .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* --- FLOATING CHAT --- */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(21, 76, 189, 0.4);
  cursor: pointer;
  z-index: 9999;
  font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-right-col {
    text-align: left;
    grid-column: span 2;
  }
  .social-text-links {
    justify-content: flex-start;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-bottom-right {
    align-items: flex-start;
    width: 100%;
  }
  .newsletter-wrapper {
    width: 100%;
  }
  .newsletter-wrapper input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* Mobilde basitlik için gizledim */
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-sub {
    text-align: left;
    margin-top: 20px;
  }
  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }
  .testimonial-content {
    flex-direction: column;
  }
  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
  }
}