/* ===== Footer Styles ===== */
.site-footer {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 350px;
}

.footer-contact p {
  margin: 0.75rem 0;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact i {
  color: #0891b2;
  margin-top: 0.25rem;
  min-width: 20px;
  text-align: center;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #0891b2;
  text-decoration: underline;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e293b;
  color: #e2e8f0;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background-color: #0891b2;
  color: white;
  transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #0891b2;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.footer-column a:hover {
  color: #0891b2;
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-payment {
  display: flex;
  gap: 1rem;
}

.footer-payment i {
  font-size: 1.75rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-payment i:hover {
  color: #0891b2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    gap: 2.5rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-payment {
    width: 100%;
    justify-content: space-between;
  }
}
