/* ===============================
   ELITE FOOTER
================================ */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.elite-footer {
  background: linear-gradient(90deg, #002d5b, #00a862);
  color: white;
  padding: 60px 0 0px;
  position: relative;
  width: 100%;
  margin: 0;
  display: block;
  font-family: 'Outfit', sans-serif;
}

/* Top Gold Line */
.footer-top-border {
  position: absolute;
  top: 0;
  left: 2%;
  right: 2%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

/* Footer Grid Container */
.footer-container {
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Branding Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 220px;
}

.footer-logo-img {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.brand-main {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: white;
  display: block;
}

.brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: white;
  margin-top: 5px;
  display: block;
}

.brand-mission {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.6;
  max-width: 300px;
  margin-top: 20px;
}

/* Footer Headings */
.elite-footer h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Links Styling */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

/* Contact Items */
.contact-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 5px;
  font-weight: 800;
}

.contact-item p {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.social-link i {
  font-size: 1.05rem;
}

/* Platform-specific brand colours */
.social-link[aria-label="Instagram"] {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
}
.social-link[aria-label="Snapchat"] {
  background: #FFFC00;
  border-color: #FFFC00;
  color: #000;
}
.social-link[aria-label="TikTok"] {
  background: #010101;
  border-color: #010101;
}
.social-link[aria-label="X"] {
  background: #000000;
  border-color: #000000;
}
.social-link[aria-label="Facebook"] {
  background: #1877F2;
  border-color: #1877F2;
}
.social-link[aria-label="YouTube"] {
  background: #FF0000;
  border-color: #FF0000;
}
.social-link[aria-label="Phone"] {
  background: #10b981;
  border-color: #10b981;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-content {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .social-link {
    width: 38px;
    height: 38px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
}