/* FOOTER STYLES */
.footer-section {
  background: #0E1524;
  color: white;
  padding: 60px 80px 20px;
  font-family: 'DM Sans', 'Poppins', sans-serif;
}

.main-footer {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 0px;
}

.col {
  flex: 1;
  max-width: 400px;
}

.footer-header {
  text-decoration: none;
  display: inline-block;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 37px;
}

.footer-description {
  margin-bottom: 24px;
}

.footer-description p {
  color: #f7e1b6;
  font-size: 18px;
  font-weight: 400;
}

/* Social Icons — outside .col, sits just above hr */
.social-logo-container {
  max-width: 1400px;
  margin: 0 auto 6px;
  display: flex;
  gap: 22px;
  justify-content: flex-start;
    /* right aligned on desktop */
}

.social-logo {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-logo:hover {
  background: #E91E63;
  transform: translateY(-4px);
}

.social-logo img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 80px;
  flex-shrink: 0;
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #f7e1b6;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.3s, transform 0.3s;
  font-weight: 400;
}

.footer-column a:hover {
  color: #E91E63;
  transform: translateX(4px);
}

/* Divider */
.hr-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 12px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer End */
.footer-end {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #999999;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: flex-start;
}

.footer-bottom-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #E91E63;
}

.footer-powered {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.footer-location {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 16px;
}

.location-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.powered {
  color: #0CDEF9;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

.powered:hover {
  color: #FF6B9D;
}

/* Newsletter (if needed in future) */
.secondary-footer {
  max-width: 400px;
}

.secondary-footer p {
  color: #B8B8C7;
  margin-bottom: 16px;
  font-size: 15px;
}

.subscribe-container {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 14px;
  outline: none;
  font-family: 'DM Sans', 'Poppins', sans-serif;
}

.subscribe-input::placeholder {
  color: #999999;
}

.subscribe-button {
  background: #E91E63;
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  white-space: nowrap;
}

.subscribe-button:hover {
  background: #C2185B;
  transform: scale(1.05);
}


@media (max-width: 968px) {
  .footer-section {
    padding: 21px 26px 11px;
  }

  .main-footer {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .footer-logo img {
    height: 33px;
    width: auto;
    margin-bottom: 15px;
  }

  .col {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-description p {
    font-size: 20px !important;
  }

  .footer-links {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    padding: 0 24px;            /* ← adds breathing room on sides */
  }

  .footer-column {
    text-align: left;
    flex: 1;                    /* ← each column takes equal space */
    max-width: 160px;           /* ← prevents stretching too wide */
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-column a {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Social icons centered on mobile */
  .social-logo-container {
    justify-content: center;
    margin: 16px auto;
  }

  .footer-end {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  /* ← Hide Terms + Privacy below hr on mobile */
  .footer-bottom-links {
    display: none;
  }

  .footer-powered {
    justify-content: center;
    font-size: 14px;
  }

  .footer-location {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    font-size: 13px;
  }

  .footer-location span {
    text-align: left;
  }

  .location-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .subscribe-container {
    flex-direction: column;
    border-radius: 16px;
  }

  .subscribe-button {
    width: 100%;
  }

  .footer-links {
    gap: 32px;
  }
}