/* ================= FOOTER ================= */

.footer-section {
  background: var(--color-primary); /* Your brand purple */
  color: var(--color-text-white);
  padding: 60px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  
}

/* ================= TOP LAYOUT ================= */

.footer-top {
  display: flex;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
   justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;   /* 🔥 IMPORTANT */
}

.footer-col {
   flex: 1 1 0;   /* grow but don’t wrap */
  min-width: 0;  /* prevents overflow breaking */

}

.footer-brand {
  max-width: 350px;
}

/* ================= LOGO ================= */

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 25px;
  opacity: 0.85;
  font-size: 14px;
  color: var(--color-text-white);
}

/* ================= SOCIAL ICONS ================= */

.footer-socials {
  display: flex;
  gap: 18px;
}

/*.footer-socials a {
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}
*/
/* ================= HEADINGS ================= */

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-thirdary);
}

/* ================= LINKS ================= */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-brand {
    text-align: left;
  }

  .footer-logo {
    align-items: center;
  }

.footer-col ul li {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--color-text-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-thirdary);
  opacity: 1;
}

/* Quick Links Arrow */
.footer-col ul li a {
  position: relative;
  padding-left: 18px;
}

.footer-col ul li a::before {
  content: "›";   /* nice slim arrow */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-thirdary);   /* yellow */
  font-size: 14px;
  font-weight: 600;
   transform: translate(3px, -50%);
}

/* ================= CONTACT ================= */

.footer-contact-item {
  
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i, .footer-socials a  {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-thirdary);
  font-size: 16px;
  text-decoration: none;
}

.footer-contact-item span,
.footer-contact-item a {
 
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-white);
  text-decoration: none;
  opacity: 0.9;
}

.footer-contact-item a:hover,.footer-contact-item:hover i {
  opacity: 1;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding-top: 25px;
  font-size: 16px;
  flex-wrap: wrap;
  gap: 20px;
  
}

.footer-left {
  display: flex;
  gap: 30px;
}

.footer-left a {
  color: var(--color-text-white);
  text-decoration: none;
  opacity: 0.85;
}

.footer-left a:hover {
  opacity: 1;
}

.footer-right {
  opacity: 0.85;
}


/* =====================================
   FOOTER RESPONSIVE
===================================== */

/* -------- Tablet -------- */
@media (max-width: 1024px) {

  .footer-section {
    padding: 20px;
  }

 

  .footer-col {
    flex: 0 0 28%;
  }
}
/* -------- Mobile -------- */
@media (max-width: 770px) {

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    flex: 0 0 100%;
    width: 100%;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-bottom:15px;
    display:block;
  }

  .footer-socials {
    justify-content: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 15px;
  }

  .footer-left {
    justify-content: left;
    flex-wrap: wrap;
    gap: 15px;
  }

}

/* -------- Small Mobile -------- */
@media (max-width: 480px) {

  .footer-section {
    padding: 20px;
  }

  .footer-container {
    padding: 0 5%;
  }

  .footer-col h4 {
    font-size: 15px;
  }

  .footer-col ul li a,
  .footer-contact-item span,
  .footer-left a,
  .footer-right {
    font-size: 13px;
  }

}


@media (min-width: 1367px) {

  .footer-col:nth-child(1) {
    flex: 0 0 30%;
  }

  .footer-col:not(:first-child) {
    flex: 0 0 23.3%;
  }

}
