/* Footer Styles */

.footer {
  background-color: #132a52;
  color: #cbd6f3;
  padding: 40px  0px;
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
}

.footer-container{
  display:grid;
  grid-template-columns: 2fr 0.2fr 1.4fr 1.2fr 1.6fr;
  max-width:1300px;
  margin:auto;
  gap:35px;
  align-items:start;
}
/* About Section */
.footer-about {
  flex: 1 1 320px;
  min-width: 280px;
}

.footer-logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 36px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-desc {
  margin-bottom: 24px;
  font-size: 15px;
  color: #cbd6f3;
  text-align: justify;
}

.footer-about h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.contact-info {
  list-style: none;
  font-size: 15px;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info li i {
  color: #007bff;
  font-size: 18px;
  min-width: 22px;
  text-align: center;
}

.contact-info a {
  color: #cbd6f3;
  transition: color 0.3s;
}

.contact-info a:hover,
.footer-nav a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Navigation Sections */
.footer-nav {
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-nav h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #cbd6f3;
  transition: color 0.3s;
}

/* Map and CTA */
.footer-map-cta {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map-container iframe {
  border-radius:8px;
  width: 100%;
  max-width:300px;
  height: 200px;
  border: none;
}

/* Button in map section */
.start-journey-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 70px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border: none;
  user-select: none;
}



/* Middle call-to-action boxes */
.footer-cta-row {
  max-width: 1300px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-cta-box {
  background: #fff;
  color: #007bff;
  flex: 1 1 30%;
  min-width: 220px;
  border-radius:18px;
  display: flex;
  align-items: center;
  padding: 18px 30px;
  text-decoration: none;
  box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.footer-cta-box:hover,
.footer-cta-box:focus {
  color: #0056b3;
  box-shadow: 0 0 16px rgb(0 86 179 / 0.3);
  outline: none;
}

.cta-icon {
  background: #007bff;
  color: white;
  border-radius: 50%;
  padding: 14px;
  font-size: 24px;
  margin-right: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  background: #25d366;
  color: white;
  border-radius: 50%;
  padding: 16px;
  font-size: 24px;
  margin-right: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-text strong {
  font-size: 18px;
  font-weight: 700;
}

.cta-text {
  font-size: 15px;
  line-height: 1.3;
}

.center-text {
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.span-no{
    color: #3e3e40;
    
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #2e4777;
  margin-top: 40px;
  padding: 20px 20px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #cbd6f3;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #4fa3ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom img{
    height: 12px;
    width:120px;
    padding-left: 4px;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #007bff;
  outline: none;
}

/* Responsive */

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-map-cta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-cta-row {
    flex-direction: column;
    gap: 20px;
    margin: 20px auto 0;
  }
  .footer-cta-box {
    flex: 1 1 100%;
    min-width: auto;
    justify-content: center;
    text-align: center;
  }
  .cta-icon {
    margin-right: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding:20px;
  }
   .footer-container {
    grid-template-columns: 1fr; /* ✅ ensure 1 column */
    padding: 20px;
  }
  .footer-cta-row{
     padding:20px;
  }
  .footer-cta-box{
    border-radius: 10px;
  }

}