/* Modern Footer Styles */

/* Footer Wave Container */
.footer-wave-container {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 50px;
}

/* Modern Footer Base Styles */
.modern-footer {
  background-color: #1a3066;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  position: relative;
}

/* Footer Logo */
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #fad03d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Brand Section */
.footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-subtitle {
  color: #fad03d;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer Address and Contact */
.footer-address {
  margin-top: 15px;
  line-height: 1.6;
}

.footer-contact-info p {
  margin-bottom: 8px;
}

/* Footer Headings */
.footer-heading {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Footer Divider */
.footer-divider {
  height: 3px;
  width: 50px;
  background-color: #fad03d;
  margin-bottom: 20px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.mb-4:hover .footer-divider {
  width: 70px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fad03d;
  transform: translateX(5px);
}

/* Newsletter Form */
.footer-subscribe-form .form-control {
  border-radius: 4px 0 0 4px;
  border: none;
  height: 44px;
  padding-left: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer-subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-subscribe-form .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-subscribe-form .btn {
  border-radius: 0 4px 4px 0;
  height: 44px;
  padding: 0 20px;
  font-weight: 600;
  border: none;
}

/* Social Media Icons */
.social-media-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #fad03d;
  color: #1a3066;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links-secondary a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-secondary a:hover {
  color: #fad03d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo {
    margin-bottom: 15px;
  }
  
  .ms-3 {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .footer-links-secondary {
    margin-top: 15px;
    text-align: center;
  }
  
  .footer-links-secondary a:first-child {
    margin-left: 0;
  }
  
  .copyright {
    text-align: center;
  }
}
