.footer-section {
  /* background: var(--primary-gradient); */
  background: var(--black-soft);
  color: white;
  /* position: relative; */
  overflow: hidden;
}

.footer-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

/* .footer-logo {
  text-align: center;
  margin-bottom: 3rem;
} */

.footer-logo-icon {
  width: 80px;
  height: 80px;
  background: var(--warning-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #2c3e50;
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--warning-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  padding-top: 17px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  position: relative;
}

.footer-column h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--warning-gradient);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a i {
  color: var(--warning-gradient);
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  /* gap: 1rem;
  margin-bottom: 1.2rem; */
  color: rgba(255, 255, 255, 0.9);
}

.contact-icon-footer {
  width: 24px;
  height: 40px;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
}

/* .contact-info h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
} */

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

/* .social-links-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link-footer {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
} */

.social-link-footer:hover {
  background: var(--warning-gradient);
  color: #2c3e50;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}
.copyright-section {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.copyright-text a {
  color: var(--warning-gradient);
  text-decoration: none;
  font-weight: 600;
}

.copyright-text a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-logo-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .social-links-footer {
    justify-content: center;
  }

  .newsletter-form {
    padding: 1.5rem;
  }
  .footer-bottom {
  padding-bottom: 50px;
}
}

/* Animation for footer elements */

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
        /* ===== FOOTER ===== */
        footer {
            background: var(--black-soft);
            border-top: 1px solid rgba(255,215,0,0.1);
            padding: 70px 40px 30px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
        }

        .footer-brand .logo-text span:first-child { font-size: 26px; }

        .footer-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            line-height: 1.9;
            margin-top: 20px;
        }

        .footer-col .h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
                padding-inline-start: 0px;
        }

        .footer-col ul a {
            text-decoration: none;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul a:hover {
            color: var(--yellow);
            transform: translateX(-5px);
        }

        /* .footer-col ul a::before {
            content: '←';
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
        } */

        .footer-col ul a:hover::before { opacity: 1; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        .footer-bottom p span { color: var(--yellow); }

        .social-links-footer {
            display: flex;
            gap: 12px;
        }

        .social-link-footer {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,215,0,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-decoration: none;
            color: rgba(255,255,255,0.5);
            transition: all 0.3s;
        }

        .social-link:hover {
            background: rgba(255,215,0,0.1);
            border-color: rgba(255,215,0,0.3);
            color: var(--yellow);
            transform: translateY(-3px);
        }
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
                @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }

        }