/* ─────────────────────────────────────────
   Footer Section Widget – Frontend Styles
───────────────────────────────────────── */

/* ── Footer Shell ── */
.fsw-footer {
  background-color: hsl(220, 18%, 10%);
  border-top: 1px solid hsl(220, 15%, 18%);
  font-family: 'DM Sans', sans-serif;
}

/* ── CTA Block ── */
.fsw-cta-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem;
  text-align: center;
}

.fsw-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsw-cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(43, 100%, 50%);
  margin-bottom: 1.5rem;
}

.fsw-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: hsl(45, 10%, 90%);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.fsw-cta-heading span {
  color: hsl(43, 100%, 50%);
}

.fsw-cta-btn {
  display: inline-block;
  border: 1px solid hsl(43, 100%, 50%);
  color: hsl(43, 100%, 50%);
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
}

.fsw-cta-btn:hover {
  background: hsl(43, 100%, 50%);
  color: hsl(220, 20%, 6%);
}

/* ── Links Area ── */
.fsw-links-area {
  border-top: 1px solid hsl(220, 15%, 18%);
}

.fsw-links-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.fsw-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .fsw-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Brand Column ── */
.fsw-footer-logo {
  height: 2.5rem;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.fsw-brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(45, 10%, 90%);
  margin-bottom: 1rem;
}

.fsw-brand-desc {
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  line-height: 1.7;
}

/* ── Nav Columns ── */
.fsw-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(45, 10%, 90%);
  margin-bottom: 1rem;
}

.fsw-col-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.fsw-col-link:hover {
  color: hsl(43, 100%, 50%);
}

.fsw-social-link:hover {
  color: hsl(43, 100%, 50%);
}

/* ── Icon inside link ── */
.fsw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.fsw-icon svg,
.fsw-icon i {
  width: 1em;
  height: 1em;
}

/* ── Bottom Bar ── */
.fsw-bottom-bar {
  border-top: 1px solid hsl(220, 15%, 18%);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fsw-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.fsw-copyright {
  font-size: 0.75rem;
  color: hsl(220, 10%, 50%);
}

.fsw-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fsw-legal-link {
  font-size: 0.75rem;
  color: hsl(220, 10%, 50%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fsw-legal-link:hover {
  color: hsl(43, 100%, 50%);
}

/* ── Elementor editor guard ── */
.elementor-editor-active .fsw-footer-content > * {
  opacity: 1 !important;
  transform: none !important;
}
