/* ============================================
   FOOTER CSS
============================================ */

.corporate-footer {
  background: var(--primary-dark);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= GRID ================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  margin-bottom: 60px;
  align-items: start;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-about {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .footer-about {
    grid-column: 1 / 2;
  }
}

/* ================= ABOUT ================= */

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 350px;
  line-height: 1.6;
}

/* ================= SOCIAL ================= */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ================= HEADINGS ================= */

.footer-heading {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

/* ================= LINKS ================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

/* ================= CONTACT ================= */

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--accent-cyan);
  width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-cyan);
}

/* ============================================
   RESPONSIVE — TABLET & MOBILE
============================================ */

@media (max-width: 1200px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {

  .corporate-footer {
    padding: 55px 0 20px;
  }

  .footer-container {
    padding: 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 35px;
  }

  .footer-grid>div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-grid>div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-about {
    text-align: center;
  }

  .footer-about p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact p {
    font-size: 14px;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 20px;
  }

  .legal-links {
    justify-content: center;
    gap: 15px;
  }

  .legal-links a {
    font-size: 13px;
    padding: 6px 0;
  }

  .copyright {
    font-size: 13px;
    opacity: 0.7;
  }
}

@media (max-width: 480px) {

  .footer-logo {
    font-size: 22px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 13.5px;
  }
}

/* ================= CENTER COMPANY LINKS (MOBILE) ================= */

@media (max-width: 768px) {

  .footer-links-col {
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    padding: 6px 0;
    text-align: center;
  }
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float i {
  color: #fff !important;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}