body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a1a2f;
  color: #fff;
}
header {
  background: #0a1a2f;
  padding: 10px 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 40px;
}
nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}
.hero {
  background: url('images/van.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
}
.hero-text h2 {
  font-size: 2em;
}
.btn {
  padding: 10px 20px;
  margin: 10px;
  background: #fff;
  color: #0a1a2f;
  text-decoration: none;
  border-radius: 5px;
}
.btn.orange {
  background: #f97316;
  color: #fff;
}
.container {
  padding: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service {
  background: #132b4f;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.service img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
form label {
  display: block;
  margin: 10px 0 5px;
}
form input, form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: none;
}
form button {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
/* Sticky buttons */
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.sticky-btn.call { background: #f97316; }
.sticky-btn.whatsapp { background: #25D366; }
.sticky-btn.quote { background: #007BFF; }
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
