/* =============================================================
   GATE & GUIDE — SITE FOOTER STYLE
   ============================================================= */

.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
}

/* Split Orange & Green Top Border */
.footer-top-border {
  height: 1px;
  background: linear-gradient(
    to right,
    var(--color-orange) 0%,
    var(--color-orange) 50%,
    var(--color-green) 50%,
    var(--color-green) 100%
  );
}

/* 4-Column Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}

/* Column 1: Brand Info */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.footer-brand .brand-link:hover {
  transform: translateY(-1px);
}
.footer-brand .brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-light);
}
.footer-brand .brand-name span {
  color: var(--color-orange);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 244, 240, 0.4);
  line-height: 1.7;
  max-width: 200px;
  margin-bottom: 2rem;
}

/* Social icons container */
.footer-socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(249, 123, 61, 0.08);
  transform: translateY(-2px);
}

/* Link Columns (Products & Company) */
.footer-nav-col {
  display: flex;
  flex-direction: column;
}

/* Footer Column Labels */
.footer-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  flex-shrink: 0;
}
.footer-label-orange {
  color: var(--color-orange);
}
.footer-label-orange::before {
  background-color: var(--color-orange);
}
.footer-label-green {
  color: var(--color-green);
}
.footer-label-green::before {
  background-color: var(--color-green);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(245, 244, 240, 0.45);
  text-decoration: none;
  margin-bottom: 0.875rem;
  transition: color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.01em;
}
.footer-nav-list a:hover {
  color: var(--color-text-light);
  transform: translateX(3px);
}

/* Column 4: Contact & App Downloads */
.footer-contact {
  display: flex;
  flex-direction: column;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-symbol {
  font-size: 1.05rem;
  color: var(--color-orange);
  margin-top: 0.1rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.contact-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.6;
}
.contact-val {
  color: rgba(245, 244, 240, 0.75);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-val:hover {
  color: var(--color-text-light);
}

/* App downloads block */
.app-download-block {
  display: flex;
  flex-direction: column;
}
.app-download-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.3);
  margin-bottom: 0.875rem;
  margin-top: 1.75rem;
}
.app-buttons-row {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.app-pill-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  fill: currentColor;
}
.app-pill-orange {
  border: 1px solid rgba(249, 123, 61, 0.35);
  background: rgba(249, 123, 61, 0.06);
  color: rgba(245, 244, 240, 0.7);
}
.app-pill-orange .app-pill-icon {
  color: var(--color-orange);
}
.app-pill-orange:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(249, 123, 61, 0.10);
}
.app-pill-green {
  border: 1px solid rgba(0, 192, 96, 0.35);
  background: rgba(0, 192, 96, 0.06);
  color: rgba(245, 244, 240, 0.7);
}
.app-pill-green .app-pill-icon {
  color: var(--color-green);
}
.app-pill-green:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: rgba(0, 192, 96, 0.10);
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(245, 244, 240, 0.25);
  font-weight: 300;
}
.footer-legal-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer-legal-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(245, 244, 240, 0.25);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-legal-link:hover {
  color: rgba(245, 244, 240, 0.6);
}
.footer-legal-sep {
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-body);
  font-size: 0.78rem;
  user-select: none;
}

/* -------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1279px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
