/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

footer {
  background-color: #203E56;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap; /* ensures same line in desktop */
}

/* Column Styles */
.footer-left {
  flex: 1 1 50%;
  min-width: 300px;
}

.footer-center {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-right {
  flex: 1 1 20%;
  min-width: 200px;
}

/* Footer Title */
.footer-left img {
    height: 80px;
    width: 160px;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: white;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Contact Info */
.footer-center h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-center p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-center strong {
  color: #fff;
}

.footer-center ul {
  list-style: none;
  padding-left: 0;
  margin: 0; 
}

/* Footer Links */
.footer-right h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-right ul {
  list-style: none;
  padding-left: 0;
}

.footer-right ul li {
  margin-bottom: 10px;
}

.footer-right ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.footer-right ul li a:hover {
  color: #5BBCC6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #D78955;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: white;
  gap: 10px;
}

.footer-bottom .left {
  flex: 0 0 auto;
}

.footer-bottom .right-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom .right-links a {
  color: white;
  text-decoration: none;
}

.footer-bottom .right-links a:hover {
  color: #5BBCC6;
}

/* Default: white color */
.fab, .fa-brands {
  color: white;
  transition: color 0.3s ease;
}

/* Facebook hover - #1877F2 */
.fab.fa-facebook:hover {
  color: #1877F2;
}

/* Instagram hover - gradient approximation */
.fab.fa-instagram:hover {
  /* Instagram gradient is complex, so we use a solid approximation */
  color: #E1306C;
}

/* LinkedIn hover - #0A66C2 */
.fab.fa-linkedin:hover {
  color: #0A66C2;
}

/* TikTok hover - use TikTok blue or typical color #69C9D0 */
.fa-brands.fa-tiktok:hover {
  color: #69C9D0;
}


/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap; /* allow stacking on smaller viewports */
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom .left {
    margin-bottom: 15px;
  }

  .footer-bottom .right-links {
    justify-content: flex-start;
  }
}
