.footer {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 1rem 1rem;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
}

.footer-section h3 {
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0.8rem;
  cursor: default;
}

.footer-section .footer-content {
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}
.footer-section a:hover {
  color: var(--color-accent);
}

/* Footer logosu masaüstü */
.footer-section img,
.footer .logo-svg {
  max-width: 180px;
  max-height: 110px;
  display: block;
  margin: 0 auto 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Sosyal medya ikonlar? */
.footer-social {
  text-align: center;
  margin: 1rem 0;
}

.footer-social .social-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-social .social-links i {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-links a:hover i {
  transform: scale(1.1);
  color: var(--color-accent);
}

/* Mobil düzen ve accordion */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: left;
    align-items: stretch;
  }

  .footer-section {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 0.3rem 0; /* Alt ba?l?klar aras? bo?luk azalt?ld? */
  }

  .footer-section h3.footer-toggle {
    cursor: pointer;
    position: relative;
    padding: 0.3rem 25px 0.3rem 0; /* Ba?l?k yüksekli?i küçültüldü */
    color: #fff;
    font-size: 1.1rem;
  }

  .footer-section h3.footer-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #fff;
  }

  .footer-section.open h3.footer-toggle::after {
    content: '-';
  }

  .footer-section .footer-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 0.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .footer-section.open .footer-content {
    max-height: 500px;
    padding-top: 0.3rem; /* Aç?ld???nda bo?luk azalt?ld? */
  }

  /* Mobilde logo görünürlü?ü ve boyutu */
  .footer .logo-section,
  .footer .logo-section img,
  .footer .logo-svg {
    display: block !important;
    margin: 0 auto 1rem;
    max-width: 150px;
    max-height: 90px;
    height: auto;
  }
}
