/* ============================================================================
   FOOTER SECTION CSS - TEMİZ & DÜZENLİ VERSİYON
   ============================================================================ */

/* Footer Area */
.footer-area {
  background: #000000;
  position: relative;
}

.footer-area .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Main */
.footer-main {
  padding: 60px 0 40px;
}

/* Row yapısı - Flexbox kullanarak */
.footer-main .row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

/* Footer Widget Sütunları */
.footer-main .col-lg-4 {
  flex: 1;
  max-width: 350px;
}

.footer-main .col-lg-2 {
  flex: 0 0 180px;
}

.footer-main .col-lg-3 {
  flex: 0 0 220px;
}

/* Footer Widget */
.footer-widget {
  /* Temiz görünüm için ekstra stil yok */
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-height: 55px;
  width: auto;
  display: block;
}

/* Footer Widget Text */
.footer-widget p {
  font-size: 15px;
  line-height: 1.7;
  color: #bdc3c7;
  margin-bottom: 30px;
  text-align: justify;
}

/* Footer Widget Title */
.footer-widget h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

/* Başlık altında mavi çizgi */
.footer-widget h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #007bff;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: block;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #000000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #ffffff;
}

.footer-social a i {
  font-size: 16px;
}

/* Footer Contact */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact .contact-item i {
  width: 20px;
  color: #007bff;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact .contact-item span {
  color: #bdc3c7;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  background: #000000;
  padding: 25px 0;
  border-top: 1px solid #000000;
}

.footer-bottom .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .col-lg-6,
.footer-bottom .col-md-6 {
  flex: 1;
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.footer-bottom-links {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.footer-bottom-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-main .row {
    gap: 40px;
  }

  .footer-main .col-lg-4 {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-main .row {
    gap: 30px;
  }

  .footer-main .col-lg-4,
  .footer-main .col-lg-2,
  .footer-main .col-lg-3 {
    flex: 1 1 calc(50% - 15px);
    max-width: none;
  }

  /* Logo alanı tam genişlik */
  .footer-main .col-lg-4:first-child {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 25px;
  }

  .footer-area .container {
    padding: 0 15px;
  }

  .footer-main .row {
    flex-direction: column;
    gap: 30px;
  }

  .footer-main .col-lg-4,
  .footer-main .col-lg-2,
  .footer-main .col-lg-3 {
    flex: none;
    max-width: 100%;
  }

  .footer-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-widget p {
    font-size: 14px;
    margin-bottom: 25px;
    text-align: left;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-contact .contact-item span {
    font-size: 14px;
  }

  .footer-bottom .row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 35px 0 20px;
  }

  .footer-widget h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-widget p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footer-logo img {
    max-height: 45px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-social {
    gap: 10px;
    margin-top: 20px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
  }

  .footer-social a i {
    font-size: 14px;
  }

  .footer-contact .contact-item {
    margin-bottom: 15px;
  }

  .footer-contact .contact-item i {
    font-size: 14px;
  }

  .footer-contact .contact-item span {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 13px;
  }

  .footer-bottom-links {
    gap: 15px;
  }
}
