
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}
header {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #FFD700;
}
header .logo {
  width: 100px;
  display: block;
  margin: 0 auto 10px;
}
h1, h2 {
  font-family: 'Trebuchet MS', sans-serif;
}
section {
  padding: 20px;
  text-align: center;
}
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  padding: 5px;
}
form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
form input, form select, form button {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background: #000;
  color: #FFD700;
  cursor: pointer;
  border: none;
}
form button:hover {
  background: #333;
}
#formMessage {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}
.hidden {
  display: none;
}
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.gallery-img {
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-img:hover {
  transform: scale(1.05);
}
footer {
  text-align: center;
  padding: 15px;
  background: #000;
  color: #FFD700;
}
/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  animation: pulse 1.5s infinite;
}
.whatsapp-float i {
  margin-top: 16px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
