/* =============================================================
   GlassWick — Premium Footer
   Brand: Navy #054376 | Teal #679999 | White #ffffff
   ============================================================= */

/* ---------- Footer Container ---------- */
.gw-footer {
  background: #032b4d;
  color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle top teal accent line */
.gw-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #679999 0%, #054376 50%, #679999 100%);
}

/* Soft background pattern for depth */
.gw-footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(103, 153, 153, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gw-footer .container {
  position: relative;
  z-index: 1;
}

/* ---------- Grid Layout ---------- */
.gw-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px 32px;
  padding-bottom: 60px;
}

/* ---------- Brand Column ---------- */
.gw-footer__brand {}

.gw-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.gw-footer__logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.gw-footer__tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  max-width: 280px;
}

/* Social Icons */
.gw-footer__socials {
  display: flex;
  gap: 10px;
}

.gw-footer__socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gw-footer__socials a:hover {
  background: #679999;
  border-color: #679999;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(103, 153, 153, 0.35);
}

/* ---------- Column Headings ---------- */
.gw-footer__col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #679999;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.gw-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #679999;
  border-radius: 2px;
}

/* ---------- Quick Links ---------- */
.gw-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gw-footer__links li {
  margin-bottom: 12px;
}

.gw-footer__links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.gw-footer__links li a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #679999;
  flex-shrink: 0;
  transition: width 0.25s ease;
}

.gw-footer__links li a:hover {
  color: #fff;
  gap: 12px;
}

.gw-footer__links li a:hover::before {
  width: 22px;
}

/* ---------- Contact Info ---------- */
.gw-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gw-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gw-footer__contact-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 153, 153, 0.12);
  border-radius: 10px;
  color: #679999;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.gw-footer__contact-item:hover .gw-footer__contact-icon {
  background: #679999;
  color: #fff;
}

.gw-footer__contact-text {
  display: flex;
  flex-direction: column;
}

.gw-footer__contact-text span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.gw-footer__contact-text a,
.gw-footer__contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
  transition: color 0.25s ease;
}

.gw-footer__contact-text a:hover {
  color: #679999;
}

/* ---------- Address Column ---------- */
.gw-footer__address-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* View on Map button — removed per user preference */
.gw-footer__map-btn {
  display: none;
}

/* ---------- Sub-footer / Copyright ---------- */
.gw-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.gw-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gw-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.gw-footer__copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.gw-footer__copyright a:hover {
  color: #679999;
}

.gw-footer__credits {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.gw-footer__credits a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gw-footer__credits a:hover {
  color: #679999;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .gw-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 640px) {
  .gw-footer {
    padding-top: 60px;
    padding-bottom: 80px; /* Ensure content clears mobile-bottom-nav */
  }

  .gw-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gw-footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}
