/* ================= MAP ================= */
#map-section {
  width: 100%;
  height: 400px;
}

#map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ================= FOOTER ================= */
.footer {
  background: #1d2c6e;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* LEFT */
.footer-left img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border: 2px solid #E6B122;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6B122;
  transition: 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
}

/* HEADINGS */
.footer h4 {
  color: #E6B122;
  margin-bottom: 10px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #E6B122;
}

/* CONTACT */
.footer-contact p {
  margin: 6px 0;
  font-size: 14px;
}
.footer-contact p i {
margin-right: 10px;
}
/* HOURS */
.footer-hours p {
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-btn { background: #25D366; }
.phone-btn { background: #E6B122; }

/* RIGHT BUTTON */
.contact-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1a2f78;
  z-index: 10000;
}

/* ================= POPUP ================= */
.contact-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 360px;
  max-width: calc(100% - 30px);
  z-index: 99999;
}

.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  position: relative;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
}

/* FORM */
.popup-content h3 {
  margin-bottom: 10px;
  color: #1a2f78;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-content input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* BUTTON */
.send-btn {
  background: #1a2f78;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }

  .footer-links li {
    margin: 0;
  }

  .floating-buttons {
    left: 15px;
    bottom: 15px;
  }

  .floating-buttons a,
  .contact-btn {
    width: 45px;
    height: 45px;
  }

  .contact-btn {
    right: 15px;
    bottom: 15px;
  }

  .contact-popup {
    right: 50%;
    transform: translateX(50%);
    bottom: 80px;
    width: 90%;
  }
}


/* Fix phone input overflow */
#contactPopup .iti {
  width: 100%;
  display: block;
}

#contactPopup .iti input {
  width: 100% !important;
  box-sizing: border-box;
  padding-left: 90px !important; /* space for flag */
}

/* Prevent overflow */
.popup-content {
  overflow: hidden;
}

/* Mobile fix */
@media (max-width: 480px) {
  #contactPopup .iti input {
    padding-left: 75px !important;
    font-size: 14px;
  }
}