/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
  background: linear-gradient(180deg, #2c3e3a 0%, #1f2d29 100%);
  color: var(--color-white);
  padding: 60px 0 30px 0;
  font-size: 15px;
}

/* ========================================
   FOOTER MAIN CONTENT
   ======================================== */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* ========================================
   FOOTER COLUMNS
   ======================================== */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-about {
  max-width: 280px;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand span {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

/* Tagline */
.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item svg {
  color: var(--color-green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--color-green-light);
}

/* Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-green-light);
}

/* ========================================
   FOOTER DIVIDER
   ======================================== */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px 0 30px 0;
}

/* ========================================
   FOOTER DISCLAIMER
   ======================================== */
.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--color-white);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
  text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 20px 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .footer-contact-item span {
    text-align: center;
  }
  
  .footer-address {
    text-align: center;
  }
  
  .footer-address span {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-disclaimer {
    padding: 16px 20px;
  }

  .footer-disclaimer p {
    font-size: 11px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .footer-brand span {
    font-size: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-heading {
    font-size: 14px;
  }
}
