*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
  background:#f3f6fb;
  color:#0f172a;
}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:#fff;
  text-align:center;
  padding:55px 20px;
}

.hero h1{
  font-size:40px;
  margin:0;
  letter-spacing:1px;
}

.hero p{
  margin-top:10px;
  font-size:16px;
  opacity:.9;
}

/* ===== HOME SERVICES ===== */
.services{
  max-width:520px;
  margin:30px auto;
  padding:0 16px;
}

.services h2{
  text-align:center;
  margin-bottom:20px;
}

/* grid for home */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.grid a{
  background:#fff;
  padding:22px 14px;
  border-radius:18px;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.25s;
}

.grid a:hover{
  transform:translateY(-4px);
}

/* ===== WHY CHOOSE ===== */
.why{
  max-width:520px;
  margin:25px auto;
  background:#fff;
  padding:22px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  text-align:center;
  font-size:14px;
  line-height:1.6;
}

/* ===== BOOKING FORM ===== */
.services select,
.services input,
.services textarea,
.services button{
  width:100%;
  margin-bottom:14px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #dbe1ee;
  font-size:15px;
  background:#fff;
}

.services select:focus,
.services input:focus,
.services textarea:focus{
  outline:none;
  border-color:#2563eb;
}

/* date + time row */
.services .row{
  display:flex;
  gap:12px;
}

/* buttons */
.services button{
  background:#2563eb;
  color:#fff;
  border:none;
  font-weight:600;
  cursor:pointer;
}

.services button:hover{
  background:#1e40af;
}

/* textarea */
.services textarea{
  resize:none;
  height:90px;
}

/* small screen safety */
@media(max-width:420px){
  .grid{
    grid-template-columns:1fr;
  }
}
