/* ===== FOOTER BASE ===== */
.ft-footer { 
  background:#0f172a; 
  color:#e5e7eb; 
  padding:56px 20px 20px; 
  font-family: inherit;
}

.ft-wrap {
  max-width:1100px; 
  margin:0 auto; 
  display:flex; 
  gap:10px;
  justify-content:space-between; 
  flex-wrap:wrap;
  align-items:flex-start;
}

/* ===== COLUMN LAYOUT ===== */
.ft-col { min-width:220px; flex:1; }
.ft-brand { flex:1; text-align:left; }
.ft-explore { flex:2; } /* Make explore wider */
.ft-connect { flex:1; }

/* ===== LOGO + CONTACT ===== */
.ft-logo img { 
  width:150px; height:auto; display:block; margin-bottom:16px; 
}
.ft-contact { font-style:normal; line-height:1.7; color:#cbd5e1; margin-left:7px; }
.ft-contact a { color:#38bdf8; text-decoration:none; transition:color .3s ease; }
.ft-contact a:hover { color:#0ea5e9; }

/* ===== HEADINGS ===== */
.ft-heading { 
  margin:0 0 12px; font-size:1rem; font-weight:600; color:#f8fafc; 
}

/* ===== LINKS IN ROWS ===== */
.ft-links {
  list-style:none; padding:0; margin:0;
  display:flex; flex-wrap:wrap;
  gap:10px 0px; /* row-gap | column-gap */
  align-items:flex-start;
  width: fit-content;
  max-width:500px;
}

.ft-links li {
  display:flex;
  flex-direction:column;
  min-width:90px;
  position:relative;
}

.ft-links a { 
  color:#cbd5e1;
  text-decoration:none;
  font-weight:500;
  transition:color .3s ease;
  font-size:1rem;
  position:relative;
}
.ft-links a:hover { color:#0ea5e9; }

/* ===== Small descriptions (hover reveal) ===== */
.ft-desc {
  font-size:0.8rem;
  color:#64748b;
  margin-top:3px;
  letter-spacing:0.3px;
  line-height:1.2;
  opacity:0;
  transform:translateY(-4px);
  pointer-events:none;
  transition:opacity 0.3s ease, transform 0.3s ease;
}

/* Show on hover */
.ft-links li:hover .ft-desc {
  opacity:1;
  transform:translateY(0);
}

/* ===== SOCIALS ===== */
.ft-socials { 
  display:flex; 
  gap:12px; 
  margin-top:4px;
  padding-left:15px; 
}
.ft-socials a{
  width:36px; height:36px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #334155; border-radius:50%;
  color:#e5e7eb; transition:.25s ease;
  text-decoration:none; font-size:1.1rem;
}
.ft-socials a:hover{ background:#0ea5e9; border-color:#0ea5e9; color:#fff; }

/* ===== COPYRIGHT ===== */
.ft-bottom{
  margin-top:26px; text-align:center; padding-top:10px;
}
.ft-bottom p{ 
  margin:0; 
  color:#94a3b8; 
  font-size:.6rem; 
  letter-spacing:0.2px; 
}

.ft-links a:hover {
  text-decoration: underline;
  text-decoration-color: #0ea5e9;
  text-underline-offset: 3px;
}


/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 900px) {
  .ft-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .ft-col {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ===== LOGO + CONTACT CENTERED ===== */
  .ft-brand {
    text-align: center;
    align-items: center;
  }

  .ft-logo img {
    margin: 0 auto 16px auto;
  }

  .ft-contact {
    text-align: center;
    margin: 0;
  }

  /* ===== EXPLORE LINKS COLUMN ===== */
  .ft-explore {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ft-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: none;
  }

  .ft-links li {
    align-items: center;
    justify-content: center;
  }

  .ft-links a {
    font-size: 1.1rem;
    text-align: center;
  }

  /* ===== DESCRIPTION BELOW LINKS ===== */
  .ft-desc {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    font-size: 0.85rem;
    text-align: center;
  }

  /* ===== SOCIAL ICONS CENTERED ===== */
  .ft-connect {
    text-align: center;
    align-items: center;
  }

  .ft-socials {
    justify-content: center;
    align-items: center;
    padding-left:unset;
  }

  /* ===== COPYRIGHT ===== */
  .ft-bottom {
    margin-top: 20px;
    text-align: center;
    padding-top: 8px;
  }

  .ft-bottom p {
    font-size: 0.7rem;
    text-align: center;
  }
}

