/* =================================================================
   HEADER & FOOTER STYLES - Used across ALL HTML files
   ================================================================= */

/* Header & Navigation */
.header-topbar {
  background: var(--dark-teal);
  padding: 0 130px;
}

@media (max-width: 991px) {
  .header-topbar {
    text-align: center;
    padding: 0;
  }
}

.header-topbar {
  font-size: 16px;
  color: #e5e3e3;
  margin: 0;
}

.header-topbar ul {
  overflow: hidden;
  list-style: none;
  float: right;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .header-topbar ul {
    float: none;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.header-topbar ul li {
  font-size: 16px;
  float: left;
  padding: 15px 10px;
  color: #e5e3e3;
  line-height: 1em;
}

.header-topbar .header-contact-info ul li a {
  color: #fff;
}

.header-topbar .header-contact-info ul li a:hover {
  color: #7db1f0;
}

/* Logo styling in navigation bar */
.navbar-brand img {
  width: 100px;
  height: 100px;
}

/* Navigation */
.header-site {
  background-color: var(--dark-teal);
  z-index: 99;
  position: relative;
}

.header-site .header-navigation {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.header-sticky {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px #086ad84a;
}

.header-sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

@media (min-width: 991px) {
  .header-site {
    padding: 0 130px;
  }
}

.header-site .row {
  width: 100%;
}

@media (max-width: 991px) {
  .header-site .header-navigation {
    padding: 0px 0;
  }
}

.header-site .header-navbar {
  transition: all 0.5s;
}

.header-site .header-navbar > ul li a:hover,
.header-site .header-navbar > ul li a:focus {
  text-decoration: none;
  color: var(--primary-orange) !important;
  background-color: rgba(255, 107, 53, 0.1) !important;
  border-radius: 5px !important;
}

@media screen and (min-width: 992px) {
  .header-site .header-navbar {
    justify-content: center;
  }

  .header-site .header-navbar li {
    position: relative;
  }

  .header-site .header-navbar > ul > li > a:before {
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    content: "";
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
  }

  .header-site .header-navbar > ul > li > a:hover:before,
  .header-site .header-navbar > ul > li > a.active:before {
    width: 30px;
  }

  .header-site .header-navbar > ul > li > a {
    font-size: 18px;
    padding: 20px 20px;
    display: block;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
  }

  .header-site .header-navbar > ul .header-sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 250px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }

  .header-site .header-navbar > ul > li:hover > .header-sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}



/* Footer - background moved to footer.css */
.footer-site {
  position: relative;
  font-size: 15px;
  overflow: hidden;
}

.footer-site ul {
  list-style: none;
}

.footer-site p {
  color: #e7e7e7;
}

.footer-site li {
  color: #e7e7e7;
}

.footer-site .footer-upper {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .footer-site .footer-upper {
    padding: 60px 0 0;
  }
}

.footer-site .footer-widget-title h3 {
  font-size: 22px;
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Roboto Slab", serif;
}

.footer-site .footer-about-widget .logo {
  max-width: 180px;
}

.footer-site .footer-about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
  color: #e7e7e7;
}

/* Social icons are handled exclusively by footer.css */

.footer-site .footer-link-widget ul li a {
  color: #e7e7e7;
  font-size: 17px;
}

.footer-site .footer-link-widget ul li a:hover {
  text-decoration: underline;
}

/* Contact footer styles moved to footer.css to avoid conflicts */

.footer-site .footer-lower {
  text-align: center;
  position: relative;
  background: #192847;
}

.footer-site .footer-lower .row {
  padding: 20px 0;
  position: relative;
}

.footer-site .footer-lower .footer-copyright {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
}

.footer-site .footer-lower .footer-copyright a {
  color: #fff;
  text-decoration: none;
}