/* -----------------------------
   FOOTER GLOBAL STYLES
----------------------------- */
.site-footer {
  font-family: 'Roboto', 'Signika', sans-serif;
  color: #000;
}

/* -----------------------------
   BLUE TOP BAR
----------------------------- */
.footer-topbar {
  background-color: #007BFF;
  color: #fff;
  padding: 15px 70px;
  margin-top: 20px;
}

.footer-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Menu Links */
.footer-menu {
  flex: 1;
  text-align: left;
}

.footer-menu a {
  color: #fff;
  font-size: 14px;
  margin: 0 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.8;
}

/* Contact Info */
.footer-contact {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}

.footer-contact .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #575757;
  font-size: 14px;
  flex-shrink: 0;
}

/* -----------------------------
   WHITE FOOTER SECTION
----------------------------- */
.footer-main {
  background-color: #f9f9f9;
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: right -10px bottom;
  background-size: auto 180px;
  padding: 40px 90px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

/* Logo */
.footer-logo {
  max-width: 150px;
  margin-left: -35px;
  margin-bottom: -2px;
  display: block;
}

/* Footer Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px -15px;
  max-width: 260px;
  word-wrap: break-word;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  margin-right: 8px;
  padding: 10px 0 0 17px;
  font-size: 16px;
  color: #59744c;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #f8b704;
}

/* -----------------------------
   FOOTER LINKS
----------------------------- */
.footer-links h3 {
  font-size: 20px;
  color: #0096ff;
  margin-bottom: 25px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 10px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links p {
  font-size: 15px;
  margin-left: 2px;
  color: #333;
}

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

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;   /* prevents breaking into 2 lines */
}

.footer-links ul li a:hover {
  color: #0096ff;
}

/* ✅ Two-column Menus */
.footer-col.main-menu ul,
.footer-links .main-menu ul {
  column-count: 2;
  column-gap: 50px;
}

.footer-col.categories ul,
.footer-links .categories ul {
  column-count: 2;
  column-gap: 0px;
}

/* -----------------------------
   BOTTOM COPYRIGHT BAR
----------------------------- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* keeps them aligned */
  flex-wrap: nowrap;     /* prevents breaking into 2 lines */
  font-size: 14px;
  color: #555;
  padding: 10px 0;
  margin: 12px 25px 0 0;
  border-top: 2px solid #ccc; /* thicker border */
  padding-right: 45px;
}

.footer-bottom-left {
  margin-bottom: 10px;
}

.footer-bottom-left a {
  margin-right: 8px;
  color: inherit;
  text-decoration: none;
}

.footer-bottom-left a:hover {
  text-decoration: underline;
}

.footer-bottom-right {
  white-space: nowrap;
  margin-right: 100px;
}