.footer-main {
  background: #101522;
  color: #d1d5db;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-right {
  display: flex;
  flex: 2 1 500px;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #60a5fa;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-social a {
  color: #fff;
  font-size: 1.8rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-copy {
  border-top: 1px solid #2d3748;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
}

/* ✅ Mobil görünüm */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-right {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-social a {
    font-size: 1.5rem;
    margin-right: 0.8rem;
  }
}
