/* ============ Goodlady Site Footer ============ */
.gl-footer {
  background: linear-gradient(180deg, #0c2d30 0%, #081f22 100%);
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 24px 32px;
  position: relative;
  z-index: 10;
}
.gl-footer .gl-footer-container { max-width: 1280px; margin: 0 auto; }
.gl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.gl-footer-brand img { width: 220px; height: auto; margin-bottom: 20px; display: block; }
.gl-footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
  max-width: 320px;
}
.gl-social-links { display: flex; gap: 12px; }
.gl-social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #c5a059;
  text-decoration: none;
  transition: all 0.2s ease;
}
.gl-social-links a:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: #c5a059;
  transform: translateY(-2px);
}

.gl-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c5a059;
  margin-bottom: 18px;
}
.gl-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gl-footer-col li { margin-bottom: 10px; }
.gl-footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.gl-footer-col a:hover { color: #10b981; }
.gl-footer-col i { width: 16px; color: rgba(197, 160, 89, 0.9); margin-right: 8px; }

.gl-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.gl-newsletter > p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1 1 260px;
}
.gl-newsletter-form { display: flex; gap: 8px; flex: 1 1 360px; }
.gl-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
}
.gl-newsletter-form input:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.gl-newsletter-form button {
  padding: 12px 22px;
  background: linear-gradient(135deg, #c5a059 0%, #10b981 100%);
  color: #0c2d30;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.gl-newsletter-form button:hover { transform: translateY(-1px); }
.gl-newsletter-msg {
  font-size: 0.85rem;
  margin: 0;
  color: #10b981;
  flex: 1 1 100%;
  min-height: 1em;
}

.gl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  text-align: center;
}
.gl-footer-bottom p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 880px;
  margin: 0 auto 14px;
}
.gl-footer-bottom a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.gl-footer-bottom a:hover { color: #10b981; }
.gl-footer-legal-links { font-size: 0.85rem; margin-top: 18px !important; }
.gl-footer-legal-links a { margin: 0 8px; }

@media (max-width: 900px) {
  .gl-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gl-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .gl-footer { padding: 48px 20px 24px; }
  .gl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gl-newsletter { padding: 20px; }
  .gl-newsletter-form { flex-direction: column; }
  .gl-newsletter-form button { width: 100%; }
}
