/* ===================================
   Enhanced Footer Styles
   =================================== */

/* Footer Container */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 0;
  margin-top: 60px;
}

/* Footer Content - 4 Column Layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 0; /* Prevents grid blowout */
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.footer-location {
  margin-top: 15px;
}

.footer-location p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list a:hover,
.footer-links-list a:focus {
  color: #ffd700;
  transform: translateX(5px);
  text-decoration: none;
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 20px;
}

.footer-contact-list strong {
  display: block;
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: #ffd700;
}

/* Footer CTA Button */
.footer-cta-small {
  margin-top: 25px;
}

.footer-cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-cta-button:hover,
.footer-cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Footer Bottom Section */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
}

/* Social Media Section */
.footer-social h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover,
.social-icons a:focus {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

/* Legal Section */
.footer-legal {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-legal-links {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
  color: #ffd700;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.4);
}

/* Trust Badges */
.footer-trust {
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */

/* Tablet (768px) */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 20px 30px;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .footer-bottom-content {
    gap: 20px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px 20px;
  }

  .footer-column {
    text-align: center;
    min-width: 0;
    width: 100%;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 6px;
    text-align: center;
  }

  .footer-description,
  .footer-links-list a,
  .footer-contact-list a {
    font-size: 0.9rem;
  }

  .footer-links-list a:hover,
  .footer-links-list a:focus {
    transform: none;
  }

  .footer-cta-small {
    text-align: center;
  }

  .footer-cta-button {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .footer-bottom {
    padding: 20px 15px;
  }

  .footer-bottom-content {
    gap: 15px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal-links span {
    display: none;
  }

  .trust-text {
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .site-footer {
    display: none;
  }
}
