/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
a{
  text-decoration: none;
}
:root {
  /* Navigation Colors */
  --navigation-primary: #052323; /* Dark teal */
  --navigation-secondary: #1acc8d; /* Light green */
  --navigation-accent: #2cc197; /* Accent green */
  --navigation-hover: #d1d1d1; /* Hover effect color */
  --navigation-background: #ffffff; /* White */
  --navigation-background-dark: #082b2b74; /* Dark background for dropdowns */
  
  /* Text Colors */
  --navigation-text-color: #ffffff; /* White text */
  --navigation-text-dark: #444444; /* Dark text color */
  --navigation-text-light: rgba(255, 255, 255, 0.8); /* Light text for dropdown items */
  
  /* Borders */
  --navigation-border-color: #d1d1d1; /* Border color */
  --navigation-active-border-color: rgb(0, 213, 255); /* Active link border */
  
  /* Button Colors */
  --navigation-button-background: #052323; /* Button background */
  --navigation-button-hover-background: transparent; /* Hover background */
  --navigation-button-hover-text: rgb(210, 211, 217); /* Hover button text */
  --navigation-button-border: 2px solid transparent; /* Button border */
  --navigation-button-border-hover: #d1d1d1; /* Hover button border color */
  
  /* Dropdown Colors */
  --navigation-dropdown-background: rgba(255, 255, 255, 0.38); /* Dropdown background */
  --navigation-dropdown-item-hover-background: #082b2b2f; /* Dropdown item hover */
  
  /* Mobile Styles */
  --navigation-mobile-nav-background: #052323; /* Background for mobile navigation */
}

.footer {
  color: var(--navigation-text-color); /* White text */
  background-color: var(--navigation-primary); /* Dark teal background */
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--navigation-text-color), transparent 90%);
}

.footer .footer-about .logo img {
  width: 350px;
}

.footer-logo-description {
  padding: 10px 25px;
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--navigation-text-color), transparent 50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--navigation-text-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--navigation-accent); /* Accent green on hover */
  border-color: var(--navigation-accent); /* Accent green border on hover */
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li i {
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li img {
  padding: 10px 5px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--navigation-text-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: left;
}

.footer .footer-links ul a:hover {
  color: var(--navigation-accent); /* Accent color on hover */
}

/* Footer contact styling */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  margin: auto;
}

.footer-contact a {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: var(--navigation-text-color) !important;
}

/* Address block styling */
.footer-contact .footer-address {
  border-right: 1px solid white;
  flex: 1 1 10%;
  padding-right: 20px;
}

/* Contact details (phone and email) styling */
.footer-contact .footer-contact-details {
  padding-left: 20px;
  margin-top: -10px;
  flex: 25%;
}

/* Social media icon styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--navigation-text-color), transparent 80%);
  display: flex;
  background-color: var(--navigation-primary); /* Dark teal background */
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--navigation-accent); /* Accent color on focus */
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--navigation-primary); /* Dark teal background */
  color: var(--navigation-text-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color); /* Accent color */
  color: var(--navigation-text-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.637);
}

.footer .copyright p {
  margin-bottom: 10px;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 868px) {
  .footer .footer-about .logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .footer-contact .footer-address {
    flex: 1 1 40%;
  }

  .footer-contact .footer-contact-details {
    margin-top: -10px;
    margin-left: 5%;
    flex: 1 1 45%;
  }

  .footer .footer-top {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .footer .footer-links {
    flex: 1 1 45% !important;
    max-width: 45% !important;
    box-sizing: border-box !important;
  }

  .footer .footer-about,
  .footer .footer-newsletter {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .footer .footer-links ul {
    padding-left: 0 !important;
    list-style: none !important;
    text-align: center !important;
  }
}

/* Browser Support */
.browser-support {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 8%;
}

.browser-support h3 {
  font-size: 25px;
}

.browser-support .browser-icons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  font-size: 30px;
  color: var(--navigation-text-color) !important;
}

.browser-support .browser-icons a {
  color: var(--navigation-text-color) !important;
}
