/* ==========================================================================
   The Allrounders — stylesheet
   A confident, practical look for a garden-care + general-labour business.
   ========================================================================== */

:root {
  /* Navy (primary — trustworthy, practical) */
  --navy-950: #0d1117;
  --navy-900: #131a24;
  --navy-800: #1b2531;
  --navy-700: #263346;
  --navy-600: #38495f;
  --navy-500: #55697f;

  /* Amber (accent — tools, energy) */
  --amber-700: #b45f14;
  --amber-600: #d9791d;
  --amber-500: #f2933c;
  --amber-400: #f7ad66;

  /* Moss (small garden nod, used sparingly) */
  --moss-600: #3f8a55;
  --moss-400: #7cc192;

  /* Neutrals */
  --cream: #f7f5f1;
  --paper: #ffffff;
  --sand:  #efe9df;
  --ink:   #1a1f26;
  --muted: #5c6470;
  --line:  #e5e0d5;

  --radius:    18px;
  --radius-lg: 26px;
  --shadow:    0 18px 40px -22px rgba(15, 20, 30, 0.35);
  --shadow-sm: 0 8px 22px -14px rgba(15, 20, 30, 0.3);

  --maxw: 1160px;
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* Reset-ish -------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--amber-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-700); }

.btn-ghost { background: transparent; color: var(--navy-700); border-color: var(--amber-400); }
.btn-ghost:hover { background: rgba(242, 147, 60, 0.1); }

.btn-cream { background: var(--cream); color: var(--navy-800); }
.btn-cream:hover { background: #fff; }

.btn-block { width: 100%; justify-content: center; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 0.65em; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--navy-800); }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--amber-500), var(--navy-800));
  color: #fdf3e8;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.brand-tag { font-family: var(--font-head); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-600); }
.brand-accent { color: var(--amber-600); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { font-weight: 500; color: var(--ink); transition: color 0.15s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--amber-600); }
.nav .nav-cta { color: #fff; }
.nav .nav-cta:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 24px;
  background: var(--navy-800); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(242,147,60,0.16), transparent 55%),
    radial-gradient(70% 90% at 0% 100%, rgba(63,138,85,0.12), transparent 60%),
    var(--cream);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 24px 96px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-700);
  background: rgba(242, 147, 60, 0.14);
  padding: 0.45em 1em;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34ch;
  margin: 22px 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-trust strong { color: var(--amber-600); font-family: var(--font-head); }

.hero-card { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(160deg, var(--amber-500), var(--navy-900));
}
.hero-photo-icon {
  position: absolute;
  width: 52%;
  color: rgba(255, 255, 255, 0.85);
}
.hero-photo-icon:first-of-type { top: 16%; left: 12%; }
.hero-photo-icon-2 { width: 44%; bottom: 12%; right: 10%; top: auto; left: auto; color: rgba(255, 255, 255, 0.6); }
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.hero-badge-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--amber-600); }
.hero-badge-label { font-size: 0.82rem; color: var(--muted); }

/* Sections --------------------------------------------------------------- */
.section { padding: 88px 0; }
.section-head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 14px;
}
.kicker-light { color: var(--amber-400); }
.section-head h2, .why-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); color: var(--navy-900); letter-spacing: -0.01em; }
.why-head h2 { color: #fff; }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 16px; }
.section-sub-light { color: rgba(255, 255, 255, 0.78); }

/* Service groups & cards -------------------------------------------------- */
.service-groups { display: grid; gap: 52px; }
.service-group-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.22rem;
  color: var(--navy-800);
  margin-bottom: 22px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--amber-400); }
.card-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--sand);
  color: var(--navy-700);
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon-garden { color: var(--moss-600); }
.card-icon-labour { color: var(--amber-600); }
.card h3 { font-size: 1.22rem; color: var(--navy-800); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Why choose us ---------------------------------------------------------- */
.why {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(242,147,60,0.16), transparent 55%),
    linear-gradient(155deg, var(--navy-800), var(--navy-950));
  color: #fff;
  border-radius: 34px;
  margin: 0 16px;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.why-head { position: sticky; top: 96px; }
.why-head .btn { margin-top: 26px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(242, 147, 60, 0.18);
  color: var(--amber-400);
  margin-bottom: 16px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-list h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-list p { color: rgba(255, 255, 255, 0.74); font-size: 0.95rem; }

/* Stats ------------------------------------------------------------------ */
.stats { padding-top: 96px; padding-bottom: 96px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  text-align: center;
  padding: 34px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--amber-600); letter-spacing: -0.02em; }
.stat-label { color: var(--muted); font-size: 0.95rem; }

/* CTA -------------------------------------------------------------------- */
.cta { padding: 0 16px 96px; }
.cta-inner {
  background:
    radial-gradient(60% 140% at 100% 0%, rgba(242,147,60,0.22), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-inner h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.cta-inner p { color: rgba(255, 255, 255, 0.82); margin-top: 10px; max-width: 46ch; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: #ccd3dc; padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.brand-footer { color: #fff; margin-bottom: 16px; }
.brand-footer .brand-tag { color: var(--amber-400); }
.footer-brand p { color: rgba(204, 211, 220, 0.72); max-width: 42ch; font-size: 0.96rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-text { display: block; color: rgba(204, 211, 220, 0.82); margin-bottom: 10px; font-size: 0.96rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--amber-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 24px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(204, 211, 220, 0.6);
}

/* Contact page ----------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(242,147,60,0.16), transparent 55%),
    var(--cream);
  padding: 70px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--navy-900); margin-top: 8px; }
.page-hero .lead { margin: 20px auto 0; max-width: 56ch; }

.contact-section { padding-top: 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 1.5rem; color: var(--navy-800); margin-bottom: 24px; }
.contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy-800); }
.req { color: var(--amber-600); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85em 1em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 147, 60, 0.14);
}
.field input.invalid, .field textarea.invalid, .field-check.invalid {
  border-color: #d9534f;
  box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.1);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; padding: 4px 2px; border-radius: 10px; }
.field-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--amber-600); flex: none; }
.field-check label { font-weight: 400; color: var(--muted); font-size: 0.92rem; }
.form-status {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.success { background: rgba(63, 138, 85, 0.12); color: var(--moss-600); border: 1px solid rgba(63, 138, 85, 0.3); }
.form-status.error { background: rgba(217, 83, 79, 0.1); color: #b23c39; border: 1px solid rgba(217, 83, 79, 0.3); }

.contact-info { display: grid; gap: 20px; }
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.info-card h2 { font-size: 1.3rem; color: var(--navy-800); margin-bottom: 22px; }
.info-list { display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--sand);
  color: var(--amber-600);
}
.info-icon svg { width: 22px; height: 22px; }
.info-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
.info-list a, .info-text { color: var(--navy-800); font-weight: 500; }
.info-list a:hover { color: var(--amber-600); }
.info-card-quiet { background: var(--sand); border-color: transparent; }
.info-card-quiet h3 { color: var(--navy-800); font-size: 1.1rem; margin-bottom: 8px; }
.info-card-quiet p { color: var(--muted); font-size: 0.96rem; }

/* Booking form extras ---------------------------------------------------- */
.field-label { font-weight: 600; font-size: 0.92rem; color: var(--navy-800); }
.field-hint { font-size: 0.84rem; color: var(--muted); }
.field-hint-inline { font-weight: 400; }
input[type="date"] { min-height: 3rem; } /* consistent height across browsers */

/* Service chips */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7em 0.9em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-chip:hover { border-color: var(--amber-400); }
.service-chip input { width: 18px; height: 18px; accent-color: var(--amber-600); flex: none; cursor: pointer; }
.service-chip:has(input:checked) { border-color: var(--amber-500); background: rgba(242, 147, 60, 0.1); color: var(--navy-800); font-weight: 500; }

/* Photo upload */
.file-drop {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px dashed var(--line);
  border-radius: 14px;
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.file-drop:hover { border-color: var(--amber-400); background: #fff; }
.file-drop:focus-within { border-color: var(--amber-500); box-shadow: 0 0 0 4px rgba(242, 147, 60, 0.14); }
.file-drop-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: var(--sand);
  color: var(--amber-600);
}
.file-drop-icon svg { width: 24px; height: 24px; }
.file-drop-text { font-size: 0.92rem; color: var(--muted); line-height: 1.4; }
.file-drop-text strong { color: var(--navy-800); font-family: var(--font-head); }
/* Keep the real input reachable/clickable but visually out of the way */
.file-drop input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}
.file-list {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}
.file-list li { padding: 6px 12px; background: var(--sand); border-radius: 8px; }
.file-list .file-total { background: transparent; padding: 4px 2px; font-weight: 600; color: var(--amber-700); }
.file-list.over .file-total { color: #b23c39; }

/* "How it works" steps */
.info-card-steps .steps { display: grid; gap: 18px; }
.info-card-steps .steps li { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  display: grid; place-items: center;
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  background: var(--amber-600);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}
.info-card-steps .steps strong { color: var(--navy-800); display: block; }
.info-card-steps .steps p { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }

/* Thank-you page --------------------------------------------------------- */
.thanks {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(242,147,60,0.16), transparent 55%),
    radial-gradient(70% 90% at 0% 100%, rgba(63,138,85,0.12), transparent 60%),
    var(--cream);
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.thanks-inner { max-width: 620px; }
.thanks-check {
  display: grid; place-items: center;
  width: 74px; height: 74px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--amber-600);
  color: #fff;
  box-shadow: var(--shadow);
}
.thanks-check svg { width: 38px; height: 38px; }
.thanks h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--navy-900); margin-top: 8px; }
.thanks .lead { margin: 18px auto 30px; }
.thanks .lead a { color: var(--amber-600); font-weight: 600; }
.thanks-actions { justify-content: center; }

/* Reveal-on-scroll ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero-card { max-width: 440px; }
  .lead { max-width: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-head { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  /* Mobile nav */
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { margin-top: 12px; justify-content: center; border-bottom: 0; }
  .nav-toggle { display: flex; }

  .section { padding: 60px 0; }
  .why { margin: 0 8px; border-radius: 24px; }
  .cta-inner { padding: 36px 28px; }
  .contact-form-wrap, .info-card { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; }
}

/* Motion preference ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
