/* 🌙 FOOTER STİLLERİ */
.site-footer {
  background-color: #111;
  color: #ddd;
  font-size: 0.95rem;
  padding: 50px 20px 30px 20px;
  text-align: center;
}

.site-footer h4,
.site-footer h5 {
  color: #e63946;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.site-footer p,
.site-footer .text-muted,
.site-footer .text-secondary {
  color: #ccc;
  margin-bottom: 8px;
}

.site-footer .footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-hours li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.site-footer .social-icon {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.site-footer .social-icon:hover {
  color: #e63946;
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #e63946;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.site-footer a:hover {
  color: #c92d3d;
}

/* Alt Bilgi */
.site-footer .bottom-text {
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 0.85rem;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
    padding: 40px 15px 25px 15px;
  }

  .site-footer .footer-social {
    justify-content: center;
  }

  .site-footer h4,
  .site-footer h5 {
    text-align: center;
  }
}
