body { font-family: 'Inter', sans-serif; margin: 0; background: #1f2d24; color: #f4f4f4; }
.hero {
  background: url('desert-background.png') center/cover no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero .sub {
  font-weight: 400;
  font-size: 1.5rem;
  display: block;
  margin-top: 1rem;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.primary {
  background: #d97706;
  color: white;
}
.secondary {
  background: white;
  color: #d97706;
}
.services { padding: 3rem 2rem; text-align: center; background: #2a3d34; }
.service-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.card {
  background: #354c41;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  min-width: 160px;
  font-size: 1.1rem;
}
.about { display: flex; flex-wrap: wrap; padding: 3rem 2rem; background: #fffefc; color: #2d2d2d; }
.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-right: 2rem;
}
.about-text { max-width: 500px; }
.about ul { list-style: none; padding: 0; }
.about ul li { margin-top: 0.5rem; }
.contact {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background: #2a3d34;
  color: white;
}
.contact-form, .contact-info { flex: 1; min-width: 280px; padding: 1rem; }
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
button {
  background: #d97706;
  color: white;
  border: none;
  padding: 0.75rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
button:hover { background: #b45309; }
footer { text-align: center; padding: 1.5rem; background: #1f2d24; font-size: 0.9rem; color: #ccc; }