/* START FOOTER SECTION STYLE */

#skf-footer *, #skf-footer *::before, #skf-footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens (matches navbar palette) ── */
#skf-footer {
  --ftr-bg: #4a1a7a;
  --ftr-accent: #c89fff;
  --ftr-text: #ffffff;
  --ftr-text-muted: rgba(255,255,255,0.72);
  --ftr-border: rgba(255,255,255,0.14);
  --ftr-hover-bg: rgba(255,255,255,0.10);
  --ftr-font: 'Inter', sans-serif;

  width: 100%;
  max-width: 100%;
  background: var(--ftr-bg);
  font-family: var(--ftr-font);
  overflow: hidden;
}

#skf-footer .skf-ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

/* ── Top row: brand + columns ── */
#skf-footer .skf-ftr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 44px;
}

/* NEW */
#skf-footer .skf-ftr-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#skf-footer .skf-ftr-logo-img {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

#skf-footer .skf-ftr-logo-img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

#skf-footer .skf-ftr-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  text-align: left;
}

#skf-footer .skf-ftr-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 800;
  color: var(--ftr-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

#skf-footer .skf-ftr-logo-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ftr-accent);
  margin-top: 2px;
}

#skf-footer .skf-ftr-columns {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  flex: 1 1 auto;
  justify-content: flex-end;
}

#skf-footer .skf-ftr-col {
  min-width: 0;
}

#skf-footer .skf-ftr-col-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#skf-footer .skf-ftr-heading {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ftr-text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

#skf-footer .skf-ftr-text {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ftr-text-muted);
  line-height: 1.7;
}

#skf-footer .skf-ftr-link {
  color: var(--ftr-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

#skf-footer .skf-ftr-link:hover {
  color: var(--ftr-accent);
}

/* ── Divider ── */
#skf-footer .skf-ftr-divider {
  height: 1px;
  background: var(--ftr-border);
  width: 100%;
}

/* ── Bottom row: copyright + social ── */
#skf-footer .skf-ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

#skf-footer .skf-ftr-copy {
  font-size: 12.5px;
  color: var(--ftr-text-muted);
}

#skf-footer .skf-ftr-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

#skf-footer .skf-ftr-social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ftr-text-muted);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

#skf-footer .skf-ftr-social-link:hover {
  background: var(--ftr-hover-bg);
  color: var(--ftr-accent);
  transform: translateY(-2px);
}

#skf-footer .skf-ftr-social-link svg {
  width: 17px;
  height: 17px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px  → single row, brand left / columns right
   Tablet  : 577–1024px → brand centered on top, columns in a wrap row
   Mobile  : ≤ 576px    → fully stacked, centered
══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  #skf-footer .skf-ftr-inner {
    padding: 48px 24px 0;
  }

  #skf-footer .skf-ftr-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding-bottom: 36px;
  }

  #skf-footer .skf-ftr-columns {
    justify-content: center;
    text-align: left;
    width: 100%;
  }

  #skf-footer .skf-ftr-col-stack {
    align-items: flex-start;
  }
}

/* ── Mobile ── */
@media (max-width: 576px) {
  #skf-footer .skf-ftr-inner {
    padding: 40px 20px 0;
  }

  #skf-footer .skf-ftr-top {
    gap: 28px;
    padding-bottom: 28px;
  }

  #skf-footer .skf-ftr-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
  }

  #skf-footer .skf-ftr-col-stack {
    align-items: center;
    gap: 20px;
  }

  #skf-footer .skf-ftr-bottom {
    padding: 20px 0;
  }
  #skf-footer .skf-ftr-brand-link {
  justify-content: center;
  gap: 10px;
}

#skf-footer .skf-ftr-logo-img {
  width: 44px;
  height: 44px;
}
}

/* END FOOTER SECTION STYLE */