/* ============================================
   DERELİ MARİNA — Modern Footer Styling
   Primary Brand Accent: #F18315
   ============================================ */

.site-footer {
  background: #121118;
  color: rgba(236, 232, 225, 0.75);
  padding: 4.5rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 131, 21, 0.4), rgba(241, 131, 21, 0.2), transparent);
}

/* ---- Grid ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.95fr 1.35fr;
  gap: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---- Brand ---- */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.footer-brand img {
  filter: drop-shadow(0 2px 8px rgba(241, 131, 21, 0.25));
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 1.5rem;
  color: rgba(236, 232, 225, 0.65);
}

/* ---- Social icons ---- */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(236, 232, 225, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: #F18315;
  border-color: #F18315;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(241, 131, 21, 0.4);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---- Col headings ---- */
.footer-col h4 {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #F18315;
  border-radius: 2px;
}

/* ---- Quick Links List ---- */
.footer-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
}

.footer-quick-links li a {
  font-size: 0.88rem;
  color: rgba(236, 232, 225, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-quick-links li a:hover {
  color: #F18315;
  transform: translateX(4px);
}

/* ---- Contact List (With Primary Colored Icons) ---- */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(241, 131, 21, 0.12);
  border: 1px solid rgba(241, 131, 21, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F18315;
  margin-top: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-item:hover .footer-contact-icon {
  background: #F18315;
  border-color: #F18315;
  transform: scale(1.08) translateY(-1px);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(241, 131, 21, 0.35);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-content {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(236, 232, 225, 0.75);
}

.footer-contact-content a {
  color: rgba(236, 232, 225, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-content a:hover {
  color: #F18315;
}

.footer-contact-content span.sep {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.25);
}

/* ---- Bottom bar ---- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(236, 232, 225, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(236, 232, 225, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #F18315;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-contact-col {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-contact-col {
    grid-column: span 1;
  }
  .footer-col p {
    max-width: none;
  }
  .site-footer {
    padding: 3.5rem 0 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }
}
