/* footer.css */

.footer{
  background: linear-gradient(135deg,#002060,#001742);
  color:#fff;
  padding-top:60px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 15px;
}

/* Üst Alan */
.footer__top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

/* Logo */
.footer__brand{
  max-width:260px;
}

.footer__logo{
  height:60px;
  margin-bottom:15px;
}

.footer__slogan{
  color:#B8860B;
  font-weight:600;
}

/* Kolonlar */
.footer__columns{
  display:flex;
  gap:40px;
  flex:1;
  flex-wrap:wrap;
}

.footer__col{
  display:flex;
  flex-direction:column;
  min-width:180px;
}

.footer__title{
  font-weight:700;
  margin-bottom:15px;
}

.footer__col a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  margin-bottom:10px;
  font-size:14px;
  transition:.2s;
}

.footer__col a:hover{
  color:#fff;
}

/* License - GÜNCELLENDİ: Yan yana iki sütun */
.footer__license{
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,.15);
  border-bottom:1px solid rgba(255,255,255,.15);
}

.footer__license .container{
  display:flex;
  gap:50px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.footer__license-left{
  flex:2;
  min-width:250px;
}

.footer__license-left h3{
  margin-bottom:15px;
  font-weight:600;
}

.footer__license-left a{
  display:inline-block;
}

.footer__license-left img{
  max-width:100%;
  height:auto;
}

.footer__license-right{
  flex:2;
  min-width:250px;
}

.footer__license-right p{
  color:rgba(255,255,255,.75);
  font-size:18px;
  line-height:1.6;
  margin:0;
}

/* Fotoğraflar için yeni stil */
.footer__license-right .secure-images {
  display: flex;
  align-items: center;
  gap: 20px;  /* Fotoğraflar arası boşluk */
  margin-top: 20px;
  flex-wrap: wrap; /* Mobilde alta geçmesi için */
}



/* Responsive için */
@media (max-width: 768px) {
  .footer__license-right .secure-images {
    gap: 15px;
    justify-content: center;
  }
  
  .footer__license-right .secure-images img {
    height: 50px; /* Mobilde biraz küçült */
  }
}

/* Bottom */
.footer__bottom{
  padding:40px 0;
}

.footer__bottomInner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
  color:rgba(255,255,255,.65);
}

/* Responsive */
@media (max-width: 900px){
  .footer__top{
    flex-direction:column;
  }

  .footer__columns{
    gap:30px;
  }

  .footer__license .container{
    flex-direction:column;
    gap:30px;
  }

  .footer__bottomInner{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}