
/* ===== Footer Styles ===== */
.site-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 50px 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand Section */
.footer-section.brand {
  grid-column: span 1;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.brand-tagline {
  font-size: 15px;
  margin-bottom: 25px;
  color: #bdc3c7;
}

/* Links Section */
.footer-section.links {
  grid-column: span 1;
}

.footer-heading {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #e74c3c;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #e74c3c;
}

.footer-nav i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

/* Contact Section */
.footer-section.contact {
  grid-column: span 1;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-info a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #e74c3c;
}

.contact-info i {
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  background: #34495e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 16px;
}

.social-icons a:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}

/* Payment Methods Section */
.footer-section.payment-methods {
  grid-column: span 1;
}

/* Payment Methods Section */
.payment-methods {
  padding: 0 15px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  transition: all 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-3px);
}

.payment-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}



.payment-label {
  color: #bdc3c7;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}


/* Footer Bottom */
.footer-bottom {
  background: #1a252f;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #bdc3c7;
}

.brand-highlight {
  color: #e74c3c;
  font-weight: bold;
}


/* Responsive styles  for the mobile view to tablets*/

@media (max-width: 900px) {
  

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center; /* Center all text content */
  }
  
  .footer-section.brand,
  .footer-section.links,
  .footer-section.contact,
  .footer-section.payment-methods {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center child elements horizontally */
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center navigation items */
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center contact info */
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto; /* Center logo */
  }
  
  .brand-tagline {
    text-align: center; /* Center tagline text */
    padding: 0 20px; /* Add some padding on sides */
  }
}