/* map section */

.map-section {
  padding: 60px 0; /* remove side padding */
  background: #f8f8f8;
  font-family: 'Segoe UI', sans-serif;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.text-center h2 {
  font-size: 32px;
  color: #B11C1C;
  margin-bottom: 10px;
}

.text-center p {
  font-size: 18px;
  color: #333;
}

.map-container {
  width: 100vw; /* full viewport width */
  margin: 0;
  border-radius: 0; /* optional, remove rounding for full width */
  overflow: hidden;
}

/* map section */


/* floating button styles */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s;
  text-decoration: none;
  animation: bounceIn 1s ease;
}

.floating-btn:hover {
  transform: scale(1.15);
}

.call-btn {
  bottom: 85px; 
  background-color: #0A74DA;
  animation-delay: 0s; 
}

.whatsapp-btn {
  bottom: 20px;
  background-color: #25D366;
  animation-delay: 0.3s; 
}



/* Tooltip styles */
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 65px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.floating-btn:hover::after {
  opacity: 1;
}


@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
/* floating section */

/* footer */

.footer {
  background: linear-gradient(135deg, #B11C1C, #FF6B6B);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd60a;
}

.footer-contact ul li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-logo .tagline {
  font-size: 16px;
  font-weight: 600;
  color: #ffd60a;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-links ul li,
  .footer-contact ul li {
    margin-bottom: 6px;
  }
}

/* footer */