.footer {
  background: #7a0a0a;
  /* Dark red background */
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 30px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.tagline {

  font-size: 18px;
  line-height: 1.4;
}

.beyond {
  font-family: 'Mea Kulfi', cursive, sans-serif;
  font-size: 22px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f1c40f;
}

.footer-col p {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* Newsletter Section Styles - Updated for new look */
/* .newsletter form {
    display: flex;
    align-items: center;
    background: #a67c00;
    border-radius: 7px;
    overflow: hidden;
    max-width: 340px;
    min-width: 220px;
    padding: 0 0 0 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 56px;
    margin: 0;
  }
  
  .newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin-right: 4px; 
    min-width: 0;
  }
  
  .newsletter input::placeholder {
    color: #fff;
    opacity: 0.95;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
  }
  
  .newsletter button {
    background: transparent;
    border: none;
    padding: 0 18px 0 0;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }
  .newsletter button:hover {
    color: #f1c40f;
  } */

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f1c40f;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .map-col iframe {
    height: 140px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .map-col {
    max-width: 100%;
    margin: 0 auto;
  }

  .map-col iframe {
    width: 100% !important;
    height: 140px !important;
    min-height: 100px;
    border-radius: 10px;
    margin-top: 6px;
  }

  /* .newsletter form {
      margin: auto;
      min-width: 0;
      width: 100%;
      max-width: 100%;
    } */
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .map-col iframe {
    height: 100px !important;
    min-height: 80px;
  }
}