/* General Footer */
footer {
  background: linear-gradient(135deg, #cc5200, #993d00); /* gradient for richness */
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* About Section Styling */
.footer-section.about {
  text-align: left;         /* left align everything */
}

.footer-section.about h3 {
  display: flex;            /* logo + text in a row */
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  border: none;             /* remove underline */
}

.footer-section.about p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;         /* keeps paragraph narrow for readability */
  color: #f2f2f2;
}


/* Headings */
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #ffcc80;
  margin-top: 5px;
  border-radius: 2px;
}

/* About */
.footer-logo {
  width: 35px;
  height: 35px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Services */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffcc80;
  padding-left: 5px;
}

/* Payments */
.payments img {
  cursor: pointer;
  width: 90px;
  height: 55px;
  margin: 6px;
  object-fit: contain;
  padding: 0;  /* removed extra padding */
  border-radius: 0; /* no rounded box */
  /*filter: grayscale(100%);*/
  transition: all 0.3s ease;
  box-shadow: none; /* remove shadow around box */
}

.payments img:hover {
  /*filter: grayscale(0%);*/
  transform: scale(1.08); /* smooth zoom */
}


.payments img:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Social Icons */
.social-icons {
  margin: 15px 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 6px;
  border-radius: 50%;
  background: white;
  color: #cc5200;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.social-icons a:hover {
  /*background: #ffcc80;*/
  /*color: #993d00;*/
  transform: translateY(-3px);
}

/* App Download */
.app-download img {
  width: 140px;
  height: auto;
  margin: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.app-download img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
  opacity: 0.85;
}
