/* =========================================================================
   Apartment Mosquito Service — stylesheet
   Plain-language notes for Danny:
   - Colors live in ":root" as variables so you can change the whole site's
     look by editing one value (e.g. --green changes every green at once).
   - The site is one page, "mobile-first": styles are written for phones
     first, then a single @media block adjusts things on wider screens.
   ========================================================================= */

:root {
  --green:       #2c4a1e;  /* main brand green, taken from your flyer */
  --green-dark:  #1f3314;  /* darker green for depth */
  --green-bright:#3f7d2c;  /* brighter green for the main "call" button   */
  --cream:       #f6f6f0;  /* off-white page background */
  --ink:         #1c1c1c;  /* body text color */
  --muted:       #5a5a52;  /* lighter text color */
  --white:       #ffffff;
  --maxw:        1080px;   /* how wide content gets on big screens */
  --radius:      14px;
  --shadow:      0 10px 30px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 .4em; color: var(--green-dark); }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.7rem; }
p  { margin: 0 0 1em; }

a { color: var(--green); }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: 1.05rem;
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-call  { background: var(--green-bright); color: #fff; box-shadow: var(--shadow); }
.btn-text  { background: var(--white); color: var(--green-dark); border-color: var(--green); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }

/* =========================================================================
   Header (sticky bar with name + tap-to-call)
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-dark); color: #fff;
  border-bottom: 3px solid var(--green-bright);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 12px; }
.brand { font-weight: 800; letter-spacing: .3px; color: #fff; text-decoration: none; font-size: 1.02rem; }
.brand span { display: block; font-weight: 500; font-size: .72rem; opacity: .85; letter-spacing: .5px; text-transform: uppercase; }
.header-call { background: var(--green-bright); color: #fff; text-decoration: none; font-weight: 700; padding: 9px 16px; border-radius: 999px; white-space: nowrap; font-size: .95rem; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; color: #fff; background: var(--green-dark); overflow: hidden; }
.hero::before {            /* the balcony photo, faded behind the text */
  content: ""; position: absolute; inset: 0;
  background: url("assets/hero-balcony.jpg") center right / cover no-repeat;
  opacity: .28;
}
.hero::after {             /* green gradient so text stays readable */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--green-dark) 35%, rgba(31,51,20,.5) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding: 54px 20px 60px; }
.hero .available {
  display: inline-block; background: var(--green-bright); color: #fff;
  font-weight: 700; font-size: .8rem; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 6px; margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: 2.4rem; max-width: 16ch; }
.hero .lede { font-size: 1.15rem; max-width: 46ch; opacity: .95; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin: 22px 0 6px; flex-wrap: wrap; }
.price { font-size: 3.4rem; font-weight: 800; color: #fff; line-height: 1; }
.price small { font-size: 1.1rem; font-weight: 600; opacity: .9; }
.no-sub { font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-size: .85rem; opacity: .9; margin-bottom: 24px; }
.cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* =========================================================================
   Trust bar
   ========================================================================= */
.trust { background: var(--white); border-bottom: 1px solid #e7e7df; }
.trust ul { list-style: none; margin: 0; padding: 18px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; max-width: var(--maxw); margin: 0 auto; }
.trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
.trust .dot { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .9rem; }

/* =========================================================================
   Generic section spacing
   ========================================================================= */
section.block { padding: 48px 0; }
section.block.alt { background: var(--white); }
.section-head { max-width: 60ch; margin-bottom: 26px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Steps / cards */
.cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
.card { background: var(--white); border: 1px solid #e7e7df; border-radius: var(--radius); padding: 22px; }
section.block.alt .card { background: var(--cream); }
.card .num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; margin-bottom: 10px; }
.card h3 { font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

/* Pricing callout */
.pricing-box { background: var(--green); color: #fff; border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.pricing-box .big { font-size: 3rem; font-weight: 800; line-height: 1; }
.pricing-box h2 { color: #fff; }
.pricing-box ul { list-style: none; padding: 0; margin: 18px auto 24px; max-width: 30ch; text-align: left; }
.pricing-box li { padding: 6px 0 6px 28px; position: relative; }
.pricing-box li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; color: #bfe6a8; }

/* Service area */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.area-list span { background: var(--white); border: 1px solid #d8d8cc; border-radius: 999px; padding: 6px 14px; font-size: .9rem; font-weight: 600; color: var(--green-dark); }
section.block.alt .area-list span { background: var(--cream); }

/* FAQ */
.faq details { background: var(--white); border: 1px solid #e7e7df; border-radius: 12px; padding: 4px 18px; margin-bottom: 12px; }
section.block.alt .faq details { background: var(--cream); }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; color: var(--green-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; font-weight: 800; color: var(--green-bright); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0 0 14px; }

/* Booking form */
.form-card { background: var(--white); border: 1px solid #e7e7df; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
section.block.alt .form-card { background: var(--cream); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #c9c9bd; border-radius: 10px;
  font-size: 1rem; font-family: inherit; background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-status { margin-top: 12px; font-weight: 700; }
.form-status.ok  { color: var(--green-bright); }
.form-status.err { color: #b3261e; }
.hp { position: absolute; left: -9999px; }   /* spam honeypot, hidden */

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--green-dark); color: #d9e6cf; padding: 40px 0; font-size: .95rem; }
.site-footer a { color: #fff; }
.site-footer .nap { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.site-footer .fine { opacity: .75; font-size: .82rem; margin-top: 18px; }

/* Floating call button on mobile */
.float-call {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; background: var(--green-bright); color: #fff; text-decoration: none;
  font-weight: 800; padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow);
}

/* =========================================================================
   Wider screens (tablets / desktops)
   ========================================================================= */
@media (min-width: 760px) {
  h1 { font-size: 2.6rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero .wrap { padding: 80px 20px 90px; }
  .price { font-size: 4.2rem; }
  .trust ul { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .float-call { display: none; }   /* desktop already has header call button */
  .two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
}
