:root {
  --footer-bg: #1a202c;
  --accent: #ff6f61;
  --light: #f7fafc;
  --muted: #a0aec0;
}

/* Footer genel */
.site-footer {
  background: var(--footer-bg);
  color: var(--light);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  margin-top: 80px;
}

/* Dalgalı ayırıcı */
.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* İçerik blokları */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Her bölüm */
.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  position: relative;
}
.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--muted);
  line-height: 1.5;
}

/* Linkler */

.site-footer .footer-links ul {
  padding-left: 0 !important;
  margin: 0 !important;
}

.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover {
  color: var(--accent);
}

/* İletişim ve sosyal */
.footer-contact p {
  margin-bottom: 8px;
  color: var(--muted);
}
.social-icons {
  margin-top: 12px;
}
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: var(--light);
  font-size: 1.1rem;
  transition: color .3s, transform .3s;
}
.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Alt telif */
.footer-bottom {
  text-align: center;
  padding: 16px 20px;
  background: rgba(0,0,0,0.2);
  font-size: 0.875rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    padding: 40px 20px;
    gap: 30px;
  }
}
