:root {
  --navy: #0B1B2B;
  --gold: #0090ff;
  --gold-dark: #01d4ed;
  --white: #FFFFFF;
  --grey-bg: #F5F7FA;
  --grey-text: #6B7280;
  --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Footer Social Section */
/* Footer Social Section */
.footer-social {
  text-align: center;
  padding: 2rem 0;
  background: #000000;
  color: var(--whiteglf);
}

.footer-contact a {
  display: inline-block;
  margin: 0 1rem;
  color: var(--whiteglf);
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  opacity: 0.8;
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-contact i {
  margin-right: 8px;
}

/* Social Icons */
.footer-social-icons {
  margin-top: 1.5rem;
}

.footer-social-icons a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  transition: 0.4s ease;
  text-decoration: none;
}

/* OFFICIAL BRAND COLORS */
.footer-social-icons a.facebook {
  background: #1877F2; /* Facebook Blue */
}

.footer-social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, 
      #fdf497 0%, #fdf497 5%, 
      #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social-icons a.linkedin {
  background: #0A66C2; /* LinkedIn Blue */
}

.footer-social-icons a.youtube {
  background: #FF0000; /* YouTube Red */
}

/* Hover */
.footer-social-icons a:hover {
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-contact a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer-social-icons a {
    margin: 8px;
  }
}