
/* PATCH 013 - Ultra premium footer */

.site-footer,
footer{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 0%,rgba(215,168,79,.12),transparent 28%),
    radial-gradient(circle at 85% 100%,rgba(20,88,106,.18),transparent 34%),
    linear-gradient(135deg,#06172d 0%,#0b2340 52%,#071b33 100%) !important;
  color:#fff !important;
  border-top:1px solid rgba(241,209,133,.14);
}

.site-footer:before,
footer:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 120px
    );
  opacity:.35;
}

.site-footer .container,
footer .container{
  position:relative;
  z-index:2;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
footer h2,
footer h3,
footer h4{
  color:#fff !important;
  letter-spacing:-.02em;
}

.site-footer p,
.site-footer a,
.site-footer li,
footer p,
footer a,
footer li{
  color:rgba(255,255,255,.72) !important;
  transition:.22s ease;
}

.site-footer a:hover,
footer a:hover{
  color:#f1d185 !important;
  transform:translateX(2px);
}

.site-footer .brand,
footer .brand{
  margin-bottom:18px;
}

.site-footer .brand img,
footer .brand img{
  max-width:260px;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

/* Footer sütun düzeni */
.site-footer .footer-grid,
footer .footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:38px;
  padding:70px 0 28px;
}

.site-footer .footer-card,
footer .footer-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.site-footer ul,
footer ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.site-footer ul li,
footer ul li{
  margin-bottom:12px;
}

.site-footer ul li a,
footer ul li a{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.site-footer ul li a:before,
footer ul li a:before{
  content:"✦";
  color:#d7a84f;
  font-size:10px;
}

/* İletişim kutuları */
.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.footer-contact-item .icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#d7a84f,#f1d185);
  color:#071b33;
  font-weight:900;
  box-shadow:0 10px 24px rgba(215,168,79,.22);
}

/* Alt copyright */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.footer-bottom strong{
  color:#f1d185;
  font-weight:800;
}

/* Sosyal ikonlar */
.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 26px rgba(0,0,0,.18);
}

.footer-social a:hover{
  background:linear-gradient(135deg,#d7a84f,#f1d185);
  color:#071b33 !important;
  transform:translateY(-3px);
}

/* Beyaz mod */
body.light-mode .site-footer,
body.light-mode footer{
  background:
    radial-gradient(circle at 15% 0%,rgba(215,168,79,.10),transparent 28%),
    linear-gradient(180deg,#f6f8f9 0%,#edf2f4 100%) !important;
  color:#17272d !important;
}

body.light-mode .site-footer h2,
body.light-mode .site-footer h3,
body.light-mode .site-footer h4,
body.light-mode footer h2,
body.light-mode footer h3,
body.light-mode footer h4{
  color:#17272d !important;
}

body.light-mode .site-footer p,
body.light-mode .site-footer a,
body.light-mode footer p,
body.light-mode footer a{
  color:#4e5f66 !important;
}

body.light-mode .site-footer .footer-card,
body.light-mode footer .footer-card,
body.light-mode .footer-contact-item{
  background:rgba(255,255,255,.72) !important;
  border-color:rgba(7,27,51,.08) !important;
  box-shadow:0 14px 35px rgba(7,27,51,.08);
}

body.light-mode .footer-bottom{
  border-top-color:rgba(7,27,51,.08);
  color:#66777d;
}

/* Responsive */
@media(max-width:1080px){
  .site-footer .footer-grid,
  footer .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
}

@media(max-width:720px){
  .site-footer .footer-grid,
  footer .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }
}
