/* --- Font Imports (Example) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- Main Footer Container --- */
#main-footer {
  overflow: hidden; /* Prevents scrollbars during animations */
}

/* --- Call-to-Action Strip --- */
.footer-cta-strip {
  background-color: #2C67B2;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer-cta-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-cta-strip h2 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.footer-cta-strip p {
  font-family: 'Open Sans', 'Lato', sans-serif;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.125rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.footer-cta-strip .btn-primary {
  background: linear-gradient(to right, #4285F4, #7B42F4);
  color: white;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  display: inline-block;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-out, opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}

.footer-cta-strip.is-visible h2,
.footer-cta-strip.is-visible p,
.footer-cta-strip.is-visible .btn-primary {
  opacity: 1;
  transform: translateY(0);
}

.footer-cta-strip .btn-primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Main Footer Content --- */
.footer-content {
  background-color: #1A202C;
  color: #CBD5E0;
  padding: 5rem 1.5rem;
}

.footer-content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer-content.is-visible .footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-content.is-visible .footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-content.is-visible .footer-col:nth-child(3) { transition-delay: 0.3s; }
.footer-content.is-visible .footer-col:nth-child(4) { transition-delay: 0.4s; }

.footer-content.is-visible .footer-col {
  opacity: 1;
  transform: translateY(0);
}

.footer-col h3 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col ul {
  font-family: 'Open Sans', 'Lato', sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-about .logo-text {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col-about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #CBD5E0;
  transition: all 0.3s ease-out;
}

.social-links a:hover {
  color: #4285F4;
  transform: scale(1.1);
}

.footer-col-links ul li,
.footer-col-contact ul li,
.footer-col-hours ul li {
  margin-bottom: 0.75rem;
}

.footer-col-links ul a {
  color: #CBD5E0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease-out;
  padding-bottom: 2px;
}

.footer-col-links ul a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #4285F4;
  transition: width 0.3s ease-out;
}

.footer-col-links ul a:hover {
  color: #4285F4;
}

.footer-col-links ul a:hover::after {
  width: 100%;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
  background-color: #111827;
  color: #9CA3AF;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  color: #9CA3AF;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease-out;
}

.legal-links a:hover {
  color: white;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
} 

/* --- WhatsApp Floating Button --- */
.whatsapp-float-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #25D366 60%, #128C7E 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem 0.5rem 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #fff;
}
.whatsapp-float-btn:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
.whatsapp-float-btn svg {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .whatsapp-float-btn {
    right: 16px;
    bottom: 16px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    font-size: 1rem;
  }
} 