/* =====================================================
   FOOTER COMPONENT - .ft scope
   ===================================================== */

.ft{
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,14,25,0.65);
  backdrop-filter: blur(10px);
}

.ft-inner{
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr);
  gap: 24px;
  padding: 40px 0;
}

/* BRAND */
.ft-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;          /* footer'da taşmasın */
}

.ft-logo img{
  max-width: 140px;          /* 🔴 EN ÖNEMLİ SATIR */
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ft-name{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .3px;
}

.ft-desc{
  margin-top: 10px;
  max-width: 38ch;
  line-height: 1.6;
  opacity: 0.9;
}

/* LINKS */
.ft-links h4,
.ft-contact h4{
  margin: 0 0 10px;
  font-size: 15px;
}

.ft-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ft-links a{
  text-decoration: none;
  color: rgba(234,240,255,0.9);
  opacity: 0.85;
}
.ft-links a:hover{
  opacity: 1;
  color: #ffffff;
}

/* CONTACT */
.ft-contact{
  display: grid;
  gap: 10px;
}

.ft-contact a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(234,240,255,0.9);
  opacity: 0.9;
}
.ft-contact a:hover{
  opacity: 1;
  color: #ffffff;
}

.ft-contact svg{
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
  color: #9fdcff;
}

/* SOCIAL */
.ft-social{
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.ft-social a{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  transition: transform .25s ease, border-color .25s ease;
}

.ft-social a:hover{
  transform: translateY(-2px);
  border-color: rgba(72,170,255,0.35);
}

.ft-social svg{
  width: 18px;
  height: 18px;
}

/* BOTTOM */
.ft-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .ft-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .ft-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ft{
    margin-top: 56px;
  }
}
