/* ======================================
   Footer Base Styles
====================================== */
.site-footer {
  margin-top: auto;                /* Push footer naturally down */
  background-color: #111;          /* Dark background */
  color: #fff;                     /* White text for contrast */
  padding: 3.125rem 1.25rem 1.875rem;
  font-size: 0.875rem;             /* Base font size */
  text-align: left;
}

.footer-container {
  max-width: 75rem;                /* Limit footer width */
  margin: 0 auto;                  /* Center footer */
  padding: 2.2rem 1.4rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;                     /* Space between columns */
}

/* Remove underline from the link inside footer-logo */
.footer-logo a {
  text-decoration: none; /* Ensures no underline */
}

.footer-section {
  flex: 1 1 12.5rem;                /* Flexible column */
  padding: 0.625rem;
}

/* Fix the underline on the footer logo link */
.footer-section.company-info .footer-logo {
  text-decoration: none !important; 
}
.footer-logo .brand-name {
  font-size: 1.625rem;
  font-weight: bold;
  color: #0dcaf0;
  

}

.footer-section p {
  line-height: 1.6;
  margin-top: 0.625rem;
}


/* New Rule: Targets the link inside the footer-bottom paragraph */
.footer-bottom p strong a {
  color: #0dcaf0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom p strong a:hover {
  color: yellowgreen; /* Example hover color (like your other links) */
}

/* ======================================
   Social Icons
====================================== */
.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 1.25rem;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 50%;
  background-color: #222;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background-color: #fff;          /* White background */
  transform: scale(1.1);           /* Subtle zoom */
}

/* Brand Colors */
.social-icons a i.bi-whatsapp { color: #25D366; }
.social-icons a i.bi-youtube { color: #FF0000; }
.social-icons a i.bi-twitter { color: #1DA1F2; }
.social-icons a i.bi-facebook { color: #1877F2; }
.social-icons a i.bi-instagram { color: #E1306C; }
.social-icons a i.bi-linkedin { color: #0077B5; }
.social-icons a i.bi-tiktok { color: #000; }
.social-icons a i.bi-telegram { color: #229ED9; }

/* Hover Colors */
.social-icons a:hover i.bi-whatsapp { color: #128C7E; }
.social-icons a:hover i.bi-youtube { color: #cc0000; }
.social-icons a:hover i.bi-twitter { color: #0d8ddb; }
.social-icons a:hover i.bi-facebook { color: #0d6efd; }
.social-icons a:hover i.bi-instagram { color: #c13584; }
.social-icons a:hover i.bi-linkedin { color: #005983; }
.social-icons a:hover i.bi-tiktok { color: #ff0050; }
.social-icons a:hover i.bi-telegram { color: #007bff; }

/* ======================================
   Links & Headings
====================================== */
.footer-section h4 {
   margin-bottom: 0.9375rem;
  font-size: 1.125rem;  /* Adjust the font size */
  font-weight: 700;     /* Make the font bolder */
  color: #0dcaf0; /* Set the text color to your desired color */
  text-transform: uppercase; /* Optional: Make the text uppercase */
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.625rem;
}

.footer-section ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul a:hover {
  color: #0dcaf0;
}

/* Contact Info */
.contact-info i {
  color: #0dcaf0;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  text-decoration: none;
}

/* ======================================
   Footer Bottom
====================================== */
.footer-bottom {
  background-color: rgb(19, 1, 51);
  padding: 0.8rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 2.2rem;
  border-top: 1px solid rgba(240, 245, 248, 0.1);
}

.designer-credit {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.designer-credit a {
  color: #0dcaf0;
  text-decoration: none;
}

.designer-credit a:hover {
  text-decoration: underline;
}

/* ======================================
   Scroll-to-Top Button
====================================== */
#scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: #0dcaf0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

#scroll-top:hover {
  background-color: #0aa2c0;
}

/* ======================================
   Legal Modal
====================================== */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
}

.legal-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 0.75rem;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.close-btn {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.legal-content {
  margin-top: 1rem;
  line-height: 1.6;
}

/* ======================================
   Responsive Styles
====================================== */
@media (max-width: 48rem) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: left;
    margin-top: auto;
  }
}





