/* ==== FOOTER ==== */
.footer {
    background-color: white;
    color: black;
    padding: 3rem 2rem 1rem;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Footer Ana Konteyner */
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    gap: 2rem;
    max-width: 2000px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .footer-container > div {
    flex: 1 1 250px;
    min-width: 250px;
  }
  
  /* Logo */
  .footer-about .footer-logo {
    width: 300px;
    margin-bottom: 1rem;
  }
  
  /* Hakkımızda yazısı */
  .footer-about p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: black;
  }
  
  /* İletişim Bilgileri */
  .footer-contact {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
  }
  
  .footer-contact li {
    margin-bottom: 0.5rem;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #009ef7;
  }
  
  /* Hizmetler ve Çalışma Saatleri Başlıkları */
  .footer-services h3,
  .footer-hours h3 {
    color: #009ef7;
    margin-bottom: 1rem;
  }
  
  /* Hizmetler ve Çalışma Saatleri Listeleri */
  .footer-services ul,
  .footer-hours ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
  }
  
  /* Liste Elemanları */
  .footer-services ul li,
  .footer-hours ul li {
    margin-bottom: 0.5rem;
  }
  
  /* ==== Services Linkleri ==== */
  .footer-services ul li a {
    position: relative;
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .footer-services ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #009ef7;
    transition: width 0.3s ease;
  }
  
  .footer-services ul li a:hover {
    color: #009ef7;
  }
  
  .footer-services ul li a:hover::after {
    width: 100%;
  }
  
  /* ==== Footer Alt Kısım ==== */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  
  /* Sosyal Medya İkonları */
  .footer-socials {
    margin-bottom: 1rem;
  }
  
  /* Sosyal Medya Linkleri */
  .footer-socials a {
    color: #009ef7;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-socials a:hover {
    color: #db3214;
    transform: scale(1.2); /* Hover olunca %20 büyüsün */
  }
  
  /* ===== FOOTER RESPONSIVE ===== */


/* Tablet ve küçük ekranlar (≤768px) */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1.5rem; /* yatay boşluk daralıyor */
  }

  /* Tüm bölümler tek sütuna iner, ortalanır */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 1.5rem;
  }

  /* Alt kısım ortalanır */
  .footer-bottom {
    padding-top: 1.5rem;
  }

  /* Sosyal ikonlar satıra ortalanır */
  .footer-socials {
    justify-content: center;
  }
  .footer-socials a {
    margin: 0 0.5rem;
  }

  /* Kopya yazısı biraz küçültülür */
  #footer-copy {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* Küçük telefonlar (≤576px) */
@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0.5rem 1rem;
  }

  /* Daha sıkışık gap */
  .footer-container {
    gap: 1rem;
  }

  /* Logo daha da küçülür */
  .footer-about .footer-logo {
    width: 200px !important;
    margin: 0 auto 1rem;
  }

  /* Metin ve ikonlar küçülür */
  .footer-contact li,
  .footer-services ul li,
  .footer-hours ul li {
    font-size: 0.8rem;
  }
  .footer-socials a {
    font-size: 1.3rem;
  }

  /* Copyright altına biraz boşluk */
  #footer-copy {
    margin-top: 1rem;
  }
}