/* ===== Footer Section ===== */
.footer-section {
  background: linear-gradient(135deg, #1C085D 0%, #2A0A8A 100%);
  color: #FFFFFF;
  padding: 40px 10px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 24px;
  align-items: flex-start;
}

.footer-column {
  text-align: left;
  min-width: 0;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #EB001B 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1rem;
  color: #D0D0D0;
  margin-bottom: 18px;
  line-height: 1.5;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  width: 32px;
  height: 2px;
  background: #EB001B;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #D0D0D0;
  font-size: 1rem;
  transition: color 0.2s, padding-left 0.2s;
  padding: 2px 0;
  display: inline-block;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus {
  color: #EB001B;
  padding-left: 8px;
}

/* Desktop: left-align contact info under Contact Us */
.footer-contact p {
  font-size: 1rem;
  color: #D0D0D0;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.footer-contact .icon {
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer-contact a {
  color: #D0D0D0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover,
.footer-contact a:focus {
  color: #EB001B;
}

.social-media {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-media a {
  color: #fff;
  background: rgba(235,0,27,0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-media a:hover,
.social-media a:focus {
  color: #EB001B;
  background: #fff;
  transform: scale(1.13);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.13);
  margin: 0 auto 0 auto;
  max-width: 1100px;
}

.footer-bottom {
  background: linear-gradient(135deg, #1C085D 0%, #2A0A8A 100%);
  padding: 18px 10px 10px 10px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  position: relative;
  border-top: 1.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 -2px 16px 0 rgba(44, 0, 100, 0.10);
  animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) forwards;
  opacity: 0;
  transform: translateY(24px);
}

.footer-bottom p {
  font-size: 1.05rem;
  color: #E0E0E0;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-bottom-accent {
  color: #EB001B;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-bottom-icon {
  font-size: 1.1em;
  margin-right: 4px;
  opacity: 0.85;
}

/* Fade-in Animation */
.fade-in {
  animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) forwards;
  opacity: 0;
  transform: translateY(24px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-column {
    text-align: center;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logo-row {
    justify-content: center;
  }
  .social-media {
    justify-content: center;
  }
  .footer-divider {
    margin: 0 auto 0 auto;
  }
  .footer-contact p {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-section {
    padding: 18px 2px 0;
  }
  .footer-container {
    gap: 10px;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-column h3 {
    font-size: 1rem;
  }
  .footer-tagline, .footer-links ul li a, .footer-contact p {
    font-size: 0.97rem;
  }
  .social-media a {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .footer-contact p {
    font-size: 0.97rem;
  }
  .footer-bottom {
    padding: 10px 2px 6px 2px;
  }
  .footer-bottom p {
    font-size: 0.97rem;
  }
}

@media (min-width: 900px) {
  .footer-bottom {
    padding: 28px 10px 18px 10px;
  }
}