body {
  font-family: Arial;
  margin: 0;
  background: #f4f4f4;
}

header, footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

nav {
  background: #555;
  text-align: center;
  padding: 10px;
}

nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

.faq h3 {
  background: #eee;
  padding: 10px;
  cursor: pointer;
}

.faq p {
  display: none;
  padding: 10px;
}

.review {
  background: #f1f1f1;
  padding: 10px;
  margin: 10px 0;
  border-left: 5px solid blue;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
}

/* =========================
   Floating WhatsApp + Call Buttons
   ========================= */

.whatsapp-btn,
.call-btn {
  position: fixed;
  right: 20px;
  padding: 12px 15px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  font-family: Arial;
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 90px;
  background: #25D366;
}

/* Call Button */
.call-btn {
  bottom: 30px;
  background: #007bff;
}

/* Hover Effect */
.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}