/* ═══════════════════════════════════════════════
   FOOTER — Pure CSS3 (replaces Tailwind CDN)
   ft- prefix to avoid conflicts
   Colors: Deep Purple #120826, Gold #D4AF37
   ═══════════════════════════════════════════════ */

/* === Main Footer === */
.ft-footer {
  background: #120826;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* === Shared Container === */
.ft-wrap {
  max-width: 1490px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media(min-width:1024px) { .ft-wrap { padding-left: 48px; padding-right: 48px; } }

/* ── Trust Bar ── */
.ft-trust {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.ft-trust .ft-wrap {
  padding-top: 16px;
  padding-bottom: 16px;
}
.ft-trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ft-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
}
.ft-trust-icon i { font-size: 18px; }
.ft-trust-text {
  font-size: 12px;
  color: #d1d5db;
  white-space: nowrap;
  font-weight: 500;
}

/* ── Main Content ── */
.ft-main {
  padding-top: 64px;
  padding-bottom: 64px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media(min-width:1024px) {
  .ft-grid {
    grid-template-columns: 3fr 2fr 2fr 3fr;
    gap: 48px;
  }
}

/* ── Brand Column ── */
.ft-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ft-brand-head img {
  height: 83px;
  width: 195px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .ft-brand-head img {
    height: 100px;
    width: 235px;
  }
}
@media (min-width: 1024px) {
  .ft-brand-head img {
    height: 120px;
    width: 282px;
  }
}
.ft-brand-name {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 0.03em;
}
.ft-brand-text {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.ft-contact {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  flex-shrink: 0;
}
.ft-contact-icon i { font-size: 14px; }
.ft-contact a {
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s;
}
.ft-contact a:hover { color: #fff; }

/* Social */
.ft-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.25s;
}
.ft-social a i { font-size: 16px; }
.ft-social a:hover {
  background: #D4AF37;
  color: #000;
}

/* ── Menu Columns ── */
.ft-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  margin: 0 0 20px;
}
.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s;
}
.ft-links a:hover { color: #fff; }
.ft-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212,175,55,0.5);
  transition: background 0.2s;
  flex-shrink: 0;
}
.ft-links a:hover .ft-dot { background: #D4AF37; }

/* ── Newsletter Column ── */
.ft-nl-desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ft-nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-nl-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.ft-nl-input::placeholder { color: #6b7280; }
.ft-nl-input:focus { border-color: rgba(212,175,55,0.6); }
.ft-nl-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(to right, #D4AF37, #B8962E);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: box-shadow 0.25s;
  white-space: nowrap;
}
.ft-nl-btn:hover {
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

/* ── Payment / Cert Section ── */
.ft-payments {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-bottom: 32px;
}
.ft-payments-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.ft-pay-label {
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ft-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.ft-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 12px;
  color: #d1d5db;
  font-weight: 500;
}
.ft-tag i { color: #4ade80; font-size: 14px; }
.ft-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  font-size: 12px;
  color: #D4AF37;
  font-weight: 500;
}
.ft-cert i { font-size: 14px; }

/* ── Bottom Bar ── */
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media(min-width:768px) {
  .ft-bottom { flex-direction: row; justify-content: space-between; }
}
.ft-copy {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-bottom-links a {
  font-size: 12px;
  color: #6b7280;
  transition: color 0.2s;
}
.ft-bottom-links a:hover { color: #d1d5db; }
.ft-bottom-sep { color: #374151; }
