body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
  padding-bottom: 60px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: #0b5ed7;
  color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 14px;
}

nav a {
  color: #fff;
  margin-left: 12px;
  text-decoration: none;
  font-size: 14px;
}

nav a.active {
  text-decoration: underline;
}

.hero {
  padding: 40px 20px;
  text-align: center;
  background: #f4f6f8;
}

.hero-actions {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 6px;
  border: none;
  cursor: pointer;
}

.primary {
  background: #0b5ed7;
  color: #fff;
}

.secondary {
  background: #25d366;
  color: #fff;
}

.services-preview,
.why-us,
.cta,
.page,
.booking {
  padding: 30px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.card {
  background: #f1f1f1;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.booking {
  background: #f9f9f9;
}

.booking form {
  max-width: 420px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking input,
.booking textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking textarea {
  min-height: 90px;
  resize: vertical;
}

footer {
  text-align: center;
  padding: 12px;
  font-size: 13px;
  background: #f1f1f1;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 52px;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 1000;
}

.sticky-btn {
  flex: 1;
  text-align: center;
  line-height: 52px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.sticky-btn.call {
  background: #0b5ed7;
  color: #fff;
}

.sticky-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}
