/* ============================================================
   ASHBEE CLEANING SERVICES
   Montserrat (heads) · Inter (body)
   #E3621F · #0D0D0D · #F5F5F5 · #FFFFFF
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Tokens ---------- */
:root {
  --orange:    #E3621F;
  --ink:       #0D0D0D;
  --offwhite:  #F5F5F5;
  --white:     #ffffff;
  --muted:     #6A6A6A;
  --subtle:    #9A9A9A;
  --hair:      #E6E4E1;
  --hair-dark: #2A2A2A;

  --f-head: 'Montserrat', sans-serif;
  --f-body: 'Inter', sans-serif;

  --container:    1200px;
  --pad-x:        24px;
  --section-pad:  96px;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: #c8541a; border-color: #c8541a; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--ink); }

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }

/* ---------- Section shell ---------- */
.section { padding: var(--section-pad) 0; }

.section__header { margin-bottom: 52px; }
.section__header h2 { margin-top: 8px; }
.section__header--center { text-align: center; }

.section__cta { text-align: center; margin-top: 48px; }

h2 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  height: 72px;
  display: flex;
  align-items: center;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  width: 100%;
}
.navbar__logo { flex-shrink: 0; line-height: 0; }
.navbar__logo img { height: 34px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.navbar__links li a {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.navbar__links li a:hover { color: var(--orange); }

.navbar__cta { flex-shrink: 0; }

.navbar__phone {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  transition: color 0.2s;
}
.navbar__phone:hover { color: var(--orange); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: 0;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  background-image: url('../images/hero/ashbee-hero-image-unoptimised.webp');
  background-size: cover;
  background-position: center top;
  padding: 100px 0 120px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.20);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--orange); margin-bottom: 24px; }

.hero__heading {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__heading .accent { color: var(--orange); }

.hero__body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.badge svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services .section__header h2 { color: var(--ink); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.service-card {
  display: block;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  transition: background 0.2s, box-shadow 0.2s;
  color: inherit;
}
.service-card:hover { background: #fafaf8; box-shadow: inset 0 -3px 0 var(--orange); }

.service-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg { width: 30px; height: 30px; stroke-width: 1.5; color: var(--ink); }

.service-card__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); border-top: 1px solid var(--hair); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content .eyebrow { margin-bottom: 10px; }
.about__content h2 { margin-bottom: 20px; }

.about__body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.about__list svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
  stroke-width: 2;
}

.about__social { display: flex; gap: 12px; flex-wrap: wrap; }

.about__visual { position: relative; }
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--offwhite);
  border: 1px solid var(--hair);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__img-placeholder.no-img::after {
  content: 'IMAGE PLACEHOLDER';
  font-family: var(--f-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--subtle);
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-choose { background: var(--offwhite); }

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
  background: var(--white);
}
.usp-card {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  transition: background 0.2s;
}
.usp-card:hover { background: #fdf9f6; }

.usp-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-card__icon svg { width: 38px; height: 38px; stroke-width: 1.5; color: var(--ink); }

.usp-card__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}
.usp-card__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); border-top: 1px solid var(--hair); }


.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--hair);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card__stars {
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.testimonial-card__name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}
.testimonial-card__role {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--offwhite); }

.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.areas__content h2 { margin-bottom: 16px; }
.areas__body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}

.areas__map { position: relative; }
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 5/3;
  border: 1px solid var(--hair);
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); border-top: 1px solid var(--hair); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 16px; }
.contact__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.contact__details svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
}
.contact__details a { transition: color 0.2s; }
.contact__details a:hover { color: var(--orange); }

.contact__note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--subtle);
}
.contact__note svg { width: 14px; height: 14px; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form__row { display: flex; gap: 14px; }
.form__row--2 > * { flex: 1 1 0; min-width: 0; }
.form__group { display: flex; flex-direction: column; }

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hair);
  padding: 13px 15px;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--subtle); }
.form__group--select { position: relative; }
.form__group--select::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}
.form__group select {
  cursor: pointer;
  color: var(--subtle);
  padding-right: 40px;
}
.form__group select option { color: var(--ink); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form__group textarea { resize: vertical; min-height: 120px; }

.form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--subtle);
}
.form__privacy svg { width: 13px; height: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); }

.footer__main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--hair-dark);
}
.footer__brand img { margin-bottom: 16px; }
.footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 26ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li,
.footer__col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }
.footer__col a[href^="tel:"] { color: var(--orange); }
.footer__col a[href^="tel:"]:hover { color: #c8541a; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  /* Nav */
  .navbar__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0;
  }
  .navbar__links.is-open { max-height: 480px; padding: 8px 0 24px; }
  .navbar__links li { width: 100%; }
  .navbar__links li a {
    display: block;
    padding: 13px 24px;
    font-size: 13px;
    border-bottom: 1px solid var(--hair-dark);
  }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Services: 3×2 */
  .services__grid { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { display: none; }

  /* Why choose: 2×2 */
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials: scrollable row */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
  }
  .testimonials__grid::-webkit-scrollbar { height: 3px; }
  .testimonials__grid::-webkit-scrollbar-track { background: var(--hair); }
  .testimonials__grid::-webkit-scrollbar-thumb { background: var(--orange); }
  .testimonial-card {
    min-width: 320px;
    scroll-snap-align: start;
  }

  /* Areas */
  .areas__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 56px; --pad-x: 20px; }

  /* Hero */
  .hero { padding: 72px 0 88px; }
  .hero__body { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  /* Services: 2×3 */
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 28px 14px; }

  /* About */
  .about__inner { gap: 32px; }

  /* Why choose: 2×2 */
  .usp-card { padding: 32px 20px; }

  /* Testimonials */
  .testimonial-card { min-width: min(300px, 85vw); }

  /* Areas map — keep 5/3 ratio but taller on small screens */
  .map-container { aspect-ratio: 4/3; }

  /* Contact form */
  .form__row { flex-direction: column; gap: 14px; }
  .form__actions { flex-direction: column; }
  .form__actions .btn { justify-content: center; }

  /* Footer */
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.arrow { display: inline-block; }

/* ============================================================
   SERVICE PAGES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--offwhite);
  border-bottom: 1px solid var(--hair);
  padding: 12px 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb__list li a { color: var(--muted); transition: color 0.2s; }
.breadcrumb__list li a:hover { color: var(--orange); }
.breadcrumb__list li.active { color: var(--ink); }
.breadcrumb__sep { color: var(--hair); }

/* Service hero */
.svc-hero {
  background: var(--ink);
  padding: 80px 0 96px;
  color: var(--white);
}
.svc-hero .eyebrow { color: var(--orange); margin-bottom: 16px; }
.svc-hero h1 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 22ch;
}
.svc-hero__body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 36px;
}

/* Service detail */
.svc-detail { background: var(--white); }
.svc-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.svc-detail__copy .eyebrow { margin-bottom: 10px; }
.svc-detail__copy h2 { margin-bottom: 18px; }
.svc-detail__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
}
.svc-detail__list {
  border-top: 1px solid var(--hair);
}
.svc-detail__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.svc-detail__list svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  stroke-width: 2;
}

/* 2-col testimonials on service pages */
.testimonials__grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Who we are snippet */
.svc-about { background: var(--offwhite); text-align: center; }
.svc-about .container { max-width: 680px; }
.svc-about .eyebrow { margin-bottom: 10px; }
.svc-about h2 { margin-bottom: 18px; }
.svc-about__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

/* CTA banner */
.cta-banner { background: var(--orange); padding: 64px 0; }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__heading {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 36ch;
  margin-top: 6px;
}
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn--white:hover { background: var(--offwhite); border-color: var(--offwhite); }

/* Responsive — service pages */
@media (max-width: 768px) {
  .svc-detail__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid--2 { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .svc-hero { padding: 56px 0 72px; }
  .svc-hero__body { font-size: 15px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background: var(--white); border-top: 1px solid var(--hair); }
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
}
.faq__item:first-child { border-top: 1px solid var(--hair); }
.faq__question {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq__answer {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 72ch;
}
