/* ===== Footer Styles ===== */
.footer-section {
  background: linear-gradient(90deg, #4a00e0, #8e2de2); /* header color */
  color: #e10c0c;
  padding: 60px 0 30px;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.footer-arch {
  background-color: #1a237e !important;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  border-radius: 50% 50% 0 0;
  transform: translateY(-50%);
}

.footer-section h5,
.footer-section h6 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section ul li,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-section a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #ffeb3b;
  padding-left: 5px;
}

/* Social Icons - Updated for better mobile responsiveness */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #ffeb3b;
    color: #4a00e0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Specific icon colors on hover */
.social-links a:hover.fa-facebook-f { background: #3b5998; }
.social-links a:hover.fa-twitter { background: #1da1f2; }
.social-links a:hover.fa-instagram { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.social-links a:hover.fa-youtube { background: #ff0000; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin: 20px 0;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Contact Icons */
.contact-info i {
  color: #ffeb3b;
  width: 20px;
  text-align: center;
}

/* Divider */
.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

/* Footer Bottom Links */
.footer-section .text-center a {
  color: #ffeb3b;
  transition: color 0.3s;
}

.footer-section .text-center a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-section .row > div {
    margin-bottom: 30px;
  }
}
