/* ==========================================================================
   CXO GLOBAL ALLIANCE - SHARED FOOTER STYLES (footer.css)
   Reusable across all pages
   ========================================================================== */

:root {
  --footer-bg: #08182b;
  --footer-darker: #05111f;
  --footer-gold: #e5a83b;
  --footer-gold-hover: #f5be5d;
  --footer-text: rgba(255, 255, 255, 0.82);
  --footer-text-muted: rgba(255, 255, 255, 0.6);
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --footer-font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.site-footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding: 70px 0 30px 0;
  border-top: 1px solid var(--footer-border);
  font-family: var(--footer-font-body);
  position: relative;
  z-index: 10;
}

.footer-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Column Header */
.footer-col-title {
  font-family: var(--footer-font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--footer-gold);
  margin-bottom: 22px;
  position: relative;
}

/* About / Brand Column */
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--footer-text);
  margin-bottom: 18px;
}

.footer-working-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--footer-gold);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--footer-gold);
}

.footer-working-hours svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Links List */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--footer-gold);
  transform: translateX(4px);
}

/* Contact Details */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--footer-text);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--footer-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--footer-gold);
}

.global-locations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.location-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Follow Us Column */
.footer-tagline {
  font-size: 0.88rem;
  color: var(--footer-text);
  margin-bottom: 20px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background-color: var(--footer-gold);
  border-color: var(--footer-gold);
  color: var(--footer-darker);
  transform: translateY(-3px);
}

.social-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--footer-border);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--footer-text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-link {
  font-size: 0.8rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: var(--footer-gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}
