/* Modern Footer for Index Page - Brand Gradient, Pastel Cards, Playful Icons */

.footer-index-gradient {
  background: linear-gradient(120deg, #b2f1e6 0%, #fff6c1 50%, #ffd1e6 100%);
  border-top: 4px solid #20bfa9;
  position: relative;
  color: #00394f;
}

.footer-card {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(32,191,169,0.08);
  padding: 32px 24px 24px 24px;
  margin-bottom: 18px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
}
.footer-card:hover {
  box-shadow: 0 8px 32px rgba(32,191,169,0.13);
  transform: translateY(-2px) scale(1.01);
}

.footer-logo img {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,191,169,0.07);
}

.footer-desc {
  font-size: 1.05rem;
  color: #00394f;
  margin-bottom: 0;
  font-family: 'Nunito', sans-serif;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20bfa9 0%, #f77ca2 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 1px 6px rgba(32,191,169,0.10);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.footer-social:hover {
  background: linear-gradient(135deg, #f77ca2 0%, #20bfa9 100%);
  color: #fffbe6;
  transform: scale(1.12);
}

.footer-title {
  font-family: 'Handlee', cursive;
  color: #20bfa9;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  font-size: 1.08rem;
  color: #00394f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item i {
  color: #20bfa9;
  font-size: 1.1rem;
}

.footer-contact-item a {
  color: #00394f !important;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-contact-item a:hover {
  color: #20bfa9 !important;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.footer-payment {
  background: #fff6c1;
  color: #00394f;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 4px;
  border: 1.5px solid #ffe066;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #20bfa9;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 2px 0 2px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.footer-links a:hover {
  background: #e0f7f4;
  color: #f77ca2;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.footer-input {
  border-radius: 22px;
  border: 2px solid #20bfa9;
  padding: 10px 18px;
  font-size: 1.05rem;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 0;
  background: #fff;
  color: #00394f;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.footer-input:focus {
  border-color: #f77ca2;
  box-shadow: 0 2px 8px rgba(32,191,169,0.10);
  outline: none;
}
.footer-btn {
  border-radius: 22px;
  background: linear-gradient(90deg, #20bfa9 0%, #f77ca2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  padding: 10px 0;
  margin-top: 4px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 1px 6px rgba(32,191,169,0.10);
}
.footer-btn:hover {
  background: linear-gradient(90deg, #f77ca2 0%, #20bfa9 100%);
  color: #fffbe6;
  transform: scale(1.04);
}

.footer-bottom-bar {
  border-top: 2px solid #20bfa9;
  padding-top: 18px;
  margin-top: 18px;
}
.footer-brand {
  color: #20bfa9;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Handlee', cursive;
}
.footer-brand:hover {
  color: #f77ca2;
}

@media (max-width: 991px) {
  .footer-card { min-height: 180px; padding: 24px 10px; }
}
@media (max-width: 767px) {
  .footer-index-gradient { padding: 32px 0 0 0; }
  .footer-card { border-radius: 14px; min-height: 0; padding: 18px 6px; }
  .footer-bottom-bar { padding-top: 10px; margin-top: 10px; }
}

/* --- FORCE OVERRIDE FOR FOOTER ON ALL PAGES --- */
footer.footer-index-gradient, .footer-index-gradient {
  background: linear-gradient(120deg, #b2f1e6 0%, #fff6c1 50%, #ffd1e6 100%) !important;
  border-top: 4px solid #20bfa9 !important;
  color: #00394f !important;
}
footer.footer-index-gradient .footer-card {
  background: rgba(255,255,255,0.92) !important;
  border-radius: 22px !important;
  box-shadow: 0 4px 18px rgba(32,191,169,0.08) !important;
  padding: 32px 24px 24px 24px !important;
  margin-bottom: 18px !important;
  min-height: 260px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
footer.footer-index-gradient .footer-title {
  font-family: 'Handlee', cursive !important;
  color: #20bfa9 !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
}
footer.footer-index-gradient .footer-desc {
  font-size: 1.05rem !important;
  color: #00394f !important;
  font-family: 'Nunito', sans-serif !important;
}
footer.footer-index-gradient .footer-links a {
  color: #20bfa9 !important;
  font-weight: 600 !important;
  font-size: 1.08rem !important;
  text-decoration: none !important;
  border-radius: 6px !important;
}
footer.footer-index-gradient .footer-links a:hover {
  background: #e0f7f4 !important;
  color: #f77ca2 !important;
}
footer.footer-index-gradient .footer-btn {
  border-radius: 22px !important;
  background: linear-gradient(90deg, #20bfa9 0%, #f77ca2 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.08rem !important;
  border: none !important;
  padding: 10px 0 !important;
  margin-top: 4px !important;
}
footer.footer-index-gradient .footer-bottom-bar {
  border-top: 2px solid #20bfa9 !important;
  padding-top: 18px !important;
  margin-top: 18px !important;
}
footer.footer-index-gradient .footer-brand {
  color: #20bfa9 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-family: 'Handlee', cursive !important;
} 