.site-footer {
  position: relative;
  padding: 40px 0 40px;
  color: white;
  overflow: hidden;
  text-align: left;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #000000ff 50%, #000000ff 100%);
  z-index: -2;
}

.footer-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
  z-index: -1;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 0px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 350px;
  height: auto;
}

.footer-logo h3 {
  font-size: 32px;
  font-weight: 900;
  color: #FFD700;
  margin: 0;
}

.footer-logo p {
  margin: 8px 0 0;
  font-size: 15px;
  opacity: 0.9;
}

/* Addresses */
.addresses {
  display: flex;
  gap: 20px;
}

.address {
  flex: 1;
}

.address h4 {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 12px;
  font-weight: 700;
}

.address p {
  line-height: 1.7;
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .addresses {
    flex-direction: column;
  }
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #FFD700;
  border-radius: 2px;
}

/* Contact */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
}

.contact-info i {
  color: #FFD700;
  font-size: 18px;
}

/* ================= SOCIAL LINKS (FIXED) ================= */

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 23px;
  transition: all 0.4s ease;
  text-decoration: none;
}

/* Hover animation */
.social-links a:hover {
  background: #FFD700;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
  text-decoration:none;
}

/* FORCE icon color change on hover */
.social-links a:hover i,
.social-links a:hover {
  color: #000 !important;
}

/* Brand colors BEFORE hover */
.social-links a[aria-label="Facebook"] i {
  color: #1877F2;
}

.social-links a[aria-label="LinkedIn"] i {
  color: #0A66C2;
}

.social-links a[aria-label="X (Twitter)"] {
  color: #000;
  font-weight: 700;
}

/* Instagram Gradient */
.social-links a[aria-label="Instagram"] i {
  background: linear-gradient(
    45deg,
    #F58529,
    #DD2A7B,
    #8134AF,
    #515BD4
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Instagram hover → white icon */
.social-links a[aria-label="Instagram"]:hover i {
  -webkit-text-fill-color: #000;
  color: #000 !important;
  background: none;
}

/* ================= FOOTER LINKS ================= */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFD700;
}

/* Decorative image */
.footer-decor-image {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 400px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.footer-decor-image img {
  width: 100%;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .logo-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 30px;
  }
  .container {
    padding: 0 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .social-links {
    justify-content: center;
  }
}

/* Anchor fallback */
.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}
.footer-corner-logo {
  margin-top: 25px;
  margin-right:18px;
  display: flex;
  justify-content: center;
}

.footer-corner-logo img {
  max-width: 120px;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-corner-logo img:hover {
  transform: scale(1.08);
  opacity: 1;
}
