@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root{
  --red:#df1f2d;
  --blue:#0b7fc3;
  --yellow:#ffd21f;
  --green:#18a65b;
  --orange:#f7941d;
  --ink:#101827;
  --muted:#5c6675;
  --cream:#fff8e8;
  --white:#ffffff;
  --border:#e7e9ee;
  --shadow:0 14px 35px rgba(16,24,39,.10);
  --radius:22px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Nunito',Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff8e8 0%,#ffffff 45%,#fff8e8 100%);
  line-height:1.6;
}

.topbar{
  background:var(--red);
  color:#fff;
  text-align:center;
  padding:.65rem 1rem;
  font-weight:900;
}

.nav{
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:1rem 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 4px 16px rgba(16,24,39,.04);
}

.brand{
  display:flex;
  align-items:center;
  gap:.8rem;
  color:var(--ink);
  text-decoration:none;
  font-size:1.2rem;
  font-weight:900;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.navlinks{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}

.navlinks a{
  color:var(--ink);
  text-decoration:none;
  font-weight:900;
  padding:.55rem .8rem;
  border-radius:999px;
}

.navlinks a:hover,
.navlinks .active{
  background:#fff1f2;
  color:var(--red);
}

.hero,
.section{
  padding:4.5rem 6%;
}

.wrap{
  max-width:1180px;
  margin:auto;
}

.center{text-align:center}

.hero-grid,
.booking-layout,
.contact-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:2rem;
  align-items:start;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}

.badge{
  display:inline-flex;
  background:#fff;
  color:var(--blue);
  border:2px solid #dbeafe;
  padding:.55rem .9rem;
  border-radius:999px;
  font-weight:900;
  margin-bottom:1rem;
}

h1,h2,h3{
  line-height:1.1;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(2.4rem,5.5vw,4.8rem);
  margin:.5rem 0 1rem;
}

h2{
  font-size:clamp(1.9rem,4vw,3rem);
  margin:0 0 1rem;
}

h3{
  font-size:1.25rem;
  margin-top:0;
}

.lead{
  color:var(--muted);
  font-size:1.15rem;
  max-width:720px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.3rem;
  border-radius:14px;
  background:var(--red);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  border:2px solid var(--red);
  box-shadow:0 10px 22px rgba(223,31,45,.18);
  margin:.3rem .35rem .3rem 0;
  cursor:pointer;
}

.btn.yellow{
  background:var(--yellow);
  color:var(--ink);
  border-color:var(--yellow);
  box-shadow:0 10px 22px rgba(255,210,31,.22);
}

.btn:hover{
  transform:translateY(-2px);
}

.card,
.hero-card,
.cta,
.enquiry-form,
.note{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  padding:1.6rem;
  border-top:6px solid var(--blue);
}

.card:nth-child(2){border-top-color:var(--red)}
.card:nth-child(3){border-top-color:var(--green)}
.card:nth-child(4){border-top-color:var(--yellow)}
.card:nth-child(5){border-top-color:var(--orange)}
.card:nth-child(6){border-top-color:var(--blue)}

.feature-card{
  border-top-color:var(--yellow);
}

.hero-card{
  padding:1rem;
  overflow:hidden;
}

.hero-card img,
main img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
}

.cta{
  padding:2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1.5rem;
  background:linear-gradient(135deg,#ffffff,#fff3c4);
}

.note{
  background:#fff7d6;
  border-left:6px solid var(--yellow);
  padding:1rem 1.2rem;
  border-radius:16px;
  max-width:760px;
  margin-top:1.5rem;
}

.booking-actions{
  margin:1.5rem 0;
}

.clean{
  padding-left:1.2rem;
}

.clean li{
  margin:.45rem 0;
}

.contact-list{
  display:grid;
  gap:.9rem;
  margin:1.75rem 0;
}

.contact-pill{
  display:flex;
  align-items:center;
  gap:1rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:1rem;
  text-decoration:none;
  color:var(--ink);
  box-shadow:0 10px 24px rgba(16,24,39,.07);
  max-width:560px;
  font-weight:800;
}

.contact-pill:hover{
  transform:translateY(-2px);
  border-color:var(--red);
}

.icon{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff1f2;
  color:var(--red);
  font-weight:900;
  flex:none;
}

.enquiry-form{
  max-width:860px;
  margin:3rem auto 0;
  padding:2rem;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:.95rem 1rem;
  font-family:inherit;
  font-size:1rem;
  background:#fff;
}

.enquiry-form textarea{
  min-height:140px;
  resize:vertical;
  grid-column:1 / -1;
}

.enquiry-form button{
  width:100%;
  margin-top:1rem;
}

.footer{
  background:var(--ink);
  color:#fff;
  padding:3rem 6%;
  margin-top:3rem;
}

.footer .wrap{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
}

.footer a{
  color:#fff;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1rem;
}

.social-link{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  text-decoration:none;
  padding:.65rem .9rem;
  border-radius:999px;
  font-weight:800;
}

@media(max-width:800px){
  .nav{
    position:relative;
    flex-direction:column;
    align-items:flex-start;
    padding:1rem 1.25rem;
  }

  .brand img{
    width:46px;
    height:46px;
  }

  .navlinks{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:.45rem;
  }

  .navlinks a{
    padding:.45rem 0;
  }

  .hero,
  .section{
    padding:3rem 1.25rem;
  }

  .hero-grid,
  .booking-layout,
  .contact-layout,
  .grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  h1{font-size:2.45rem}
  h2{font-size:2rem}

  .cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .enquiry-form{
    padding:1.4rem;
  }
}
