/* ═══════════════════════════════════════════════════════
   FOOTER.CSS — Site Footer
═══════════════════════════════════════════════════════ */

/* ── FOOTER WRAPPER ── */
.nl-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.55);
  margin-top: 0;
}

/* ── FOOTER TOP ── */
#footer-top { padding: 56px 32px 40px; }

/* Footer nav grid */
.footer-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr) 180px;
  gap: 36px;
  align-items: start;
}

/* Logo column */
.footer-logo-col {}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo svg { height: 36px; width: auto; }

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  max-width: 180px;
}

/* Link columns */
.footer-links-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}

.footer-links-section a,
.footer-cookie-btn {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

.footer-links-section a:hover,
.footer-cookie-btn:hover {
  color: #fff;
  padding-left: 4px;
}

/* Social column */
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#social-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
  margin-bottom: 16px;
}

.nl-social2 {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.nl-social2 svg {
  width: 15px;
  height: 15px;
}

.nl-social2:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(219,63,89,0.35);
}

/* Feedback button */
.feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.2px;
}

.feedback-btn svg { width: 14px; height: 14px; }

.feedback-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

/* ── FOOTER SEPARATOR ── */
hr#separator,
.footer-separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

/* ── FOOTER BOTTOM ── */
#footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#copyright {
  max-width: var(--max-w);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#copyright div {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.2px;
}

/* ── AD SPACER ── */
.ad-spacer { height: 0; }

/* ── FEEDBACK MODAL ── */
.nl-signInContainer.nl-hidden { display: none; }

.nl-feedback-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  width: 340px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: 9998;
  animation: slideInRight 0.25s ease;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nl-feedback-modal .controls {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nl-feedback-modal input[type="text"],
.nl-feedback-modal textarea {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-700);
  outline: none;
  transition: border-color var(--t-fast);
  resize: vertical;
  font-family: 'Rubik', sans-serif;
}

.nl-feedback-modal input:focus,
.nl-feedback-modal textarea:focus { border-color: var(--red); }

.nl-feedback-modal .help-inline {
  font-size: 11px;
  color: var(--text-300);
}

.nl-feedback-modal #feedbackContols {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.nl-feedback-modal .btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: 'Rubik', sans-serif;
}

.nl-feedback-modal #fbCancelBtn {
  background: var(--body-bg);
  border: 1px solid var(--border);
  color: var(--text-500);
}
.nl-feedback-modal #fbCancelBtn:hover { background: var(--border); }

.nl-feedback-modal .nl-feedbackBtn {
  background: var(--red);
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-fast);
  font-family: 'Rubik', sans-serif;
}
.nl-feedback-modal .nl-feedbackBtn:hover { background: var(--red-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-nav { grid-template-columns: 180px repeat(3, 1fr) 160px; }
  .footer-links-section:nth-child(4) { display: none; } /* hide one column on medium screens */
}

@media (max-width: 768px) {
  #footer-top { padding: 40px 20px 28px; }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-logo-col { grid-column: 1 / -1; }
  .footer-social-col { grid-column: 1 / -1; }
  .footer-social-col .footer-title { display: none; }
  #social-buttons { margin-top: 0; }

  .footer-links-section:nth-child(4) { display: flex; }

  #footer-bottom { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .footer-logo-col, .footer-social-col { grid-column: 1; }
  #copyright { flex-direction: column; gap: 4px; text-align: center; }
  .nl-feedback-modal { width: calc(100vw - 32px); right: 16px; }
}
