 /* Newsletter Alanı */
.newsletter {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#newsletterForm {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Inputlar */
#newsletterForm input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  width: 180px;
  transition: 0.3s ease;
}

#newsletterForm input::placeholder {
  color: rgba(255,255,255,0.6);
}

#newsletterForm input:focus {
  outline: none;
  border-color: #9f5afd;
  box-shadow: 0 0 10px rgba(159,90,253,0.5);
  background: rgba(255,255,255,0.12);
}

/* Buton */
#newsletterForm button {
  background: linear-gradient(135deg, #9f5afd, #6c2bd9);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

#newsletterForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(159,90,253,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  #newsletterForm {
    flex-direction: column;
    width: 100%;
  }

  #newsletterForm input {
    width: 100%;
  }

  #newsletterForm button {
    width: 100%;
  }
}

.footer-iletisim {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
}

.footer-iletisim-baslik {
    margin-bottom: 15px;
    color: #fff;
}

.footer-iletisim-adres {
    margin-bottom: 10px;
}

.footer-icon {
    margin-right: 8px;
    font-size: 18px;
}

.footer-icon-phone {
    color: #25D366;
}

.footer-icon-mail {
    color: #e63946;
}

.footer-iletisim-telefon,
.footer-iletisim-mail {
    margin-bottom: 8px;
}


.fa-fax::before {
  content: "\f1ac" !important;
  font-size: 20px !important;
  margin-right: 5px !important;
 }
 
 

.fa-envelope::before {
  content: "\f0e0" !important;
  font-size: 20px !important;
  margin-right: 5px !important;
  margin-left: 7px !important;
}

.well.footer {
  background: #0f1318;
  padding: 60px 0 0;
  color: #ddd;
  border: none;
}

.mega-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: transparent;
  font-size: 14px;
}