/* ============================================
   FOOTER STYLES — Full Responsive
   ============================================ */

/* ── Outer wrapper ── */
#site-footer {
  background-color: var(--bg-site-dark);   /* #0E0D0C — 1 token, 1 place */
  width: 100%;
}

.footer-wrap {
  max-width: var(--max-width);             /* 1300px */
  margin: 0 auto;
  padding: 50px 32px 0;                   /* 50px top as specified */
}

/* ══════════════════════════════════════════════
   CTA BANNER CARD
══════════════════════════════════════════════ */
.footer-cta-card {
  position: relative;
  width: 100%;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background-image: url('../images/footer-bg.webp');
  background-size: cover;
  background-position: center;
  background-color: #1a1106;              /* fallback */
  border: 1px solid rgba(226, 159, 41, 0.14);
  box-shadow: 0 0 0 1px rgba(226, 159, 41, 0.10),
              inset 0 0 80px rgba(0, 0, 0, 0.30);
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px 56px;
  min-height: 250px;
}

.footer-cta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 159, 41, 0.10);
  border-radius: 50%;
  border: 1.5px solid rgba(226, 159, 41, 0.40);
}
.footer-cta-icon img { width: 44px; height: 44px; object-fit: contain; }

.footer-cta-text { flex: 1; }

.footer-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 50px;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.footer-cta-text h2 span { color: var(--primary); }

.footer-cta-text p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  letter-spacing: 0;
  margin: 0;
}

/* ── All footer buttons share the same height/font ── */
.footer-cta-btn,
.footer-brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.footer-cta-btn { flex-shrink: 0; }
.footer-cta-btn:hover,
.footer-brand-btn:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.footer-cta-btn:active,
.footer-brand-btn:active { transform: translateY(0); }

/* ══════════════════════════════════════════════
   3-COLUMN INFO SECTION   (70px gap below CTA)
══════════════════════════════════════════════ */
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
  padding-bottom: 48px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.footer-col {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* ── Shared heading (Contact Info / Quick Links) ── */
.footer-col-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: auto;
  letter-spacing: 0;
  color: var(--primary);                  /* #E29F29 */
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   CONTACT INFO COL
══════════════════════════════════════════════ */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;                              /* 20px gap between email & phone */
}

/* Email — Inter Medium 20px LH 28 LS 0 white, clickable */
.f-email {
  font-family: var(--font-body);
  font-weight: 400;                       /* Medium */
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.f-email:hover { color: var(--primary); }

/* Phone — Inter Medium 20px LH 28 LS 0 primary color, clickable */
.f-phone {
  font-family: var(--font-body);
  font-weight: 500;                       /* Medium */
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--primary);                  /* #E29F29 */
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.f-phone:hover { color: #FFFFFF; }

/* ══════════════════════════════════════════════
   BRAND / CENTER COL
══════════════════════════════════════════════ */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Logo image — white version, 100% height (natural) */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;                    /* 14px gap logo → tagline */
}
.footer-logo img {
  height: auto;
  width: auto;
  max-height: 100%;
  display: block;
  margin-top: -18px;
}

/* Tagline text */
.footer-brand-tagline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 28px;                    /* 28px gap tagline → button */
  text-align: center;
}

/* ══════════════════════════════════════════════
   QUICK LINKS COL
══════════════════════════════════════════════ */
.footer-links-col { text-align: center; }

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;                              /* 15px gap between items */
  margin-top: 15px;                       /* 15px gap heading → first item */
}

/* Quick links — Inter Regular 18px LH 40 LS 0 white, hover primary */
.footer-nav a {
  font-family: var(--font-body);
  font-weight: 400;                       /* Regular */
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════
   COPYRIGHT BAR
══════════════════════════════════════════════ */
.footer-bottom {
  border-top: 1px solid rgba(226, 159, 41, 0.14);  /* #E29F29 at 14% opacity, 1px */
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-weight: 400;       /* Regular */
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #FFFFFF;         /* 100% white */
  margin: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* ── Tablet landscape ≤ 1100px — tighten padding ── */
@media (max-width: 1100px) {
  .footer-cta-inner {
    padding: 44px 40px;
    gap: 32px;
  }
  .footer-cta-text h2 { font-size: 34px; line-height: 44px; }
}

/* ── Tablet portrait ≤ 900px — stack CTA, 2-col info ── */
@media (max-width: 900px) {
  .br-hide { display: none; }

  /* CTA card stacks vertically */
  .footer-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    gap: 24px;
  }
  .footer-cta-icon  { display: none; }
  .footer-cta-text  { text-align: center; }
  .footer-cta-text h2 { font-size: 28px; line-height: 38px; }
  .footer-cta-text p  { font-size: 16px; line-height: 26px; }
  .footer-cta-btn { width: auto; min-width: 200px; }

  /* Info grid: brand full-width on top, contact + links below */
  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    order: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
  }

  /* Scale down fonts a touch for tablet */
  .f-email,
  .f-phone { font-size: 17px; }
  .footer-nav a { font-size: 16px; line-height: 36px; }
}

/* ── Small tablet / large phone ≤ 680px ── */
@media (max-width: 680px) {
  .footer-info {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }
  .footer-brand {
    grid-column: auto;
    order: 0;
    border-bottom: none;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    margin-top: 8px;
  }
  /* Dividers between cols */
  .footer-contact,
  .footer-links-col {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ── Mobile ≤ 480px ── */
@media (max-width: 480px) {
  .footer-wrap {
    padding: 32px 16px 0;
  }

  /* CTA card */
  .footer-cta-inner { padding: 32px 20px; gap: 20px; }
  .footer-cta-text h2 { font-size: 22px; line-height: 30px; }
  .footer-cta-text p  { font-size: 14px; line-height: 22px; }
  .footer-cta-btn { width: 100%; padding: 0 20px; }

  /* Info */
  .footer-info { margin-top: 36px; }

  /* Contact */
  .f-email, .f-phone { font-size: 16px; }

  /* Quick links */
  .footer-nav a { font-size: 15px; line-height: 32px; }

  /* Brand button */
  .footer-brand-btn { width: 100%; max-width: 280px; }

  /* Copyright */
  .footer-bottom p { font-size: 0.75rem; }
}
