/* ============================================================
   HomeCru.ca — styles.css
   Mobile-first. Breakpoints: 768px (tablet), 1100px (desktop)
   ============================================================ */

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --green:      #2F4A37;
  --green-dark: #1f3527;
  --cream:      #F3EFE6;
  --cream-2:    #FFF9EC;
  --orange:     #E46A2E;
  --navy:       #1E2530;
  --sky:        #B9D6E8;
  --line:       rgba(47,74,55,0.15);
  --shadow:     0 8px 40px rgba(30,37,48,0.10);
  --radius:     16px;
  --radius-sm:  10px;
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; font-family: 'Inter', sans-serif; }

p { margin: 0 0 1rem; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}

/* ── Section spacing ── */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--navy);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF9EC;
  padding: 0 20px;
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(30,37,48,0.18);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav__links a {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--orange); }

.nav__phone a {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__phone a:hover { color: var(--orange); }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: #F3EFE6;
  padding: 20px;
  gap: 16px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(47,74,55,0.12);
  transition: color 0.2s ease;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--orange); }

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
  .nav__links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.84) saturate(0.85);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 28px 20px 0;
}

.hero__text {
  background: rgba(243,239,230,0.82);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 420px;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.hero__text h1 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

@media (min-width: 768px) {
  .hero__image { max-height: 600px; }
  .hero__overlay { padding: 48px 40px 0; }
  .hero__text { padding: 32px 36px; max-width: 500px; }
}

@media (min-width: 1100px) {
  .hero__overlay { padding: 56px 80px 0; }
}

/* ============================================================
   SERVICES INTRO (between hero and cards)
   ============================================================ */
.services-intro {
  background: var(--cream);
  padding: 56px 20px 0;
  text-align: center;
}

.services-intro h2 {
  color: var(--green);
  margin-bottom: 12px;
}

.services-intro p {
  font-size: 1.05rem;
  color: var(--navy);
  opacity: 0.72;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS (homepage)
   ============================================================ */
.service-cards {
  background: var(--cream);
  padding: 0 20px;
}

.service-cards__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0 64px;
}

.service-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30,37,48,0.14);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.75;
  margin: 0 0 10px;
  flex: 1;
}

.service-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.service-card__link:hover { color: var(--green-dark); }

@media (min-width: 768px) {
  .service-cards__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   WORK SHOWCASE
   ============================================================ */

/* Section wrapper */
.showcase {
  background: var(--cream);
  padding-bottom: 0;
}

.showcase__header {
  text-align: center;
  padding: 56px 20px 32px;
}

.showcase__header h2 {
  color: var(--green);
  margin-bottom: 8px;
}

.showcase__header p {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.65;
  margin: 0;
}

/* ── Front / Back toggle ── */
.view-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.view-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.view-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.view-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ── House wrap + slider ── */
.showcase__house-wrap {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 0;
}

/* House slider — subtle version */
.house-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  transition: opacity 0.24s ease;
}

.house-slider__img {
  display: block;
  width: 100%;
  pointer-events: none;
  draggable: false;
}

.house-slider__img--before {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

/* Subtle handle — thinner, no arrows, semi-transparent */
.house-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.house-slider__line {
  flex: 1;
  width: 1.5px;
  background: rgba(255,255,255,0.55);
}

.house-slider__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

/* Subtle before/after labels on house slider */
.house-slider__label {
  position: absolute;
  bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 5;
  background: rgba(30,37,48,0.45);
  color: rgba(255,255,255,0.9);
}

.house-slider__label--before { left: 12px; z-index: 6; }
.house-slider__label--after  { right: 12px; }

/* Hotspot button */
.hotspot {
  position: absolute;
  left: var(--hx);
  top: var(--hy);
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Pulsing ring */
.hotspot__pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.25;
  animation: hotspot-pulse 2s ease-out infinite;
}

.hotspot__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.hotspot:hover .hotspot__dot,
.hotspot.active .hotspot__dot {
  transform: scale(1.2);
  background: var(--orange);
}

.hotspot.active .hotspot__pulse {
  background: var(--orange);
}

/* Hotspot label — always visible */
.hotspot__tip {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 5px;
  pointer-events: none;
  opacity: 1;
  z-index: 20;
}

.hotspot__tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--navy);
}

/* Active label turns orange */
.hotspot.active .hotspot__tip {
  background: var(--orange);
}

.hotspot.active .hotspot__tip::after {
  border-top-color: var(--orange);
}

@keyframes hotspot-pulse {
  0%   { transform: scale(0.8); opacity: 0.35; }
  70%  { transform: scale(2);   opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

/* ── Tab bar ── */
.showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 20px 28px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}

.showcase__tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.showcase__tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.showcase__tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ── Reveal panel ── */
.showcase__panel {
  display: none;
  padding: 32px 0 56px;
  animation: panelIn 0.38s ease;
}

.showcase__panel.open {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.showcase__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Before/After slider ── */
.showcase__slider-col {
  flex: 1;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow);
  background: var(--cream-2);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  draggable: false;
}

.ba-img--before {
  /* Clipped on right side — JS controls the clip-path */
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

/* ── Drag handle ── */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-handle__line {
  flex: 1;
  width: 2px;
  background: white;
  opacity: 0.85;
}

.ba-handle__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.ba-slider:hover .ba-handle__btn {
  background: var(--green-dark);
}

/* Before / After labels */
.ba-label {
  position: absolute;
  top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 5;
}

.ba-label--before {
  left: 12px;
  background: rgba(30,37,48,0.7);
  color: white;
  z-index: 6;
}

.ba-label--after {
  right: 12px;
  background: var(--green);
  color: white;
}

/* ── Pair dots ── */
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  min-height: 20px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ba-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ── Service info panel ── */
.showcase__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.showcase__info-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.showcase__info h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
}

.showcase__info p {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.78;
  margin: 0;
  line-height: 1.6;
}

.showcase__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 1 !important;
  letter-spacing: -0.02em;
}

/* ── Sub-service tags ── */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-tag {
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .showcase__panel-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .showcase__slider-col {
    flex: 0 0 58%;
  }

  .showcase__info {
    flex: 1;
  }
}

@media (min-width: 1100px) {
  .showcase__panel-inner {
    gap: 64px;
  }

  .showcase__slider-col {
    flex: 0 0 60%;
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--green);
  padding: 28px 20px;
}

.trust-strip__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.trust-strip__item {
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip__check {
  color: var(--sky);
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .trust-strip__inner {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--cream-2); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.step p {
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.75;
  margin: 0;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream); }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--orange);
}

.review-card__quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

.review-card__stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  margin: 0;
}

@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CONTACT FORM (homepage & contact page)
   ============================================================ */
.contact-section { background: var(--cream-2); }

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.contact-section.contact-page .form-wrapper {
  max-width: 860px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--navy);
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group--span2 { grid-column: 1 / -1; }

/* ── Booking Module (date + time slots + notice) ── */
.booking-module {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-module__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.booking-module__date {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.booking-module__date label,
.booking-module__time-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.booking-module__date input[type="date"] {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.2s ease;
  width: 100%;
}

.booking-module__date input[type="date"]:focus {
  outline: none;
  border-color: var(--green);
}

.booking-module__time {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 2;
  min-width: 220px;
}

.time-slots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  flex: 1;
  min-width: 88px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.time-slot input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.time-slot:has(input:checked) {
  border-color: var(--green);
  background: rgba(47, 74, 55, 0.07);
}

.time-slot:hover {
  border-color: var(--green);
}

.time-slot__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.time-slot__sub {
  font-size: 0.73rem;
  color: #777;
}

.booking-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(47, 74, 55, 0.07);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.booking-notice svg {
  flex-shrink: 0;
}

.form-submit { margin-top: 8px; }

.form-confirm {
  display: none;
  background: var(--green);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.form-confirm.visible { display: block; }

.form-contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.form-contact-info a {
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.form-contact-info a:hover { color: var(--green-dark); }

@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 20px 0;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243,239,230,0.12);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF9EC;
  padding: 10px 24px;
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.footer__logo img {
  height: 44px;
  width: auto;
  margin-bottom: 0;
}

.footer__tagline {
  font-size: 0.9rem;
  opacity: 0.65;
  margin: 0;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 14px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer__links a:hover { opacity: 1; color: var(--sky); }

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-list li {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer__contact-list a {
  color: var(--cream);
  transition: color 0.2s ease;
}

.footer__contact-list a:hover { color: var(--sky); }

.footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
  margin: 0;
}

.footer__bottom a {
  font-size: 0.85rem;
  opacity: 0.6;
  color: var(--sky);
  transition: opacity 0.2s ease;
}

.footer__bottom a:hover { opacity: 1; }

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--green);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: var(--cream);
  margin: 0;
}

.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.service-section:last-child { border-bottom: none; }

.service-section__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.service-section__img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.service-section__content h2 {
  color: var(--green);
  margin-bottom: 16px;
}

.service-section__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-section__includes {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-section__includes li {
  font-size: 0.95rem;
  color: var(--navy);
  padding-left: 24px;
  position: relative;
}

.service-section__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.general-labour {
  background: var(--green);
  padding: 48px 20px;
  text-align: center;
}

.general-labour__inner {
  max-width: 640px;
  margin: 0 auto;
}

.general-labour h2 {
  color: var(--cream);
  margin-bottom: 12px;
}

.general-labour p {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .service-section__inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .service-section--reverse .service-section__img { order: 2; }
  .service-section--reverse .service-section__content { order: 1; }
}

@media (min-width: 1100px) {
  .service-section__inner { gap: 80px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-content h1 {
  color: var(--green);
  margin-bottom: 32px;
}

.about-content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 40px 0 12px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--navy);
}

.trust-badges {
  background: var(--cream-2);
  padding: 48px 20px;
}

.trust-badges__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-badge {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-badge__text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-cta {
  background: var(--green);
  padding: 60px 20px;
  text-align: center;
}

.about-cta h2 { color: var(--cream); margin-bottom: 12px; }
.about-cta p { color: var(--cream); opacity: 0.85; max-width: 500px; margin: 0 auto 28px; }

@media (min-width: 768px) {
  .trust-badges__inner { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-header {
  background: var(--green);
  padding: 60px 20px;
  text-align: center;
}

.contact-page-header h1 { color: var(--cream); margin-bottom: 12px; }
.contact-page-header p { color: var(--cream); opacity: 0.85; margin: 0; }

.contact-info-bar {
  background: var(--navy);
  padding: 32px 20px;
  text-align: center;
}

.contact-info-bar__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-info-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
}

.contact-info-bar__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-bar__value:hover { color: var(--sky); }

.service-areas {
  background: var(--cream);
  padding: 48px 20px;
  text-align: center;
}

.service-areas__inner {
  max-width: 700px;
  margin: 0 auto;
}

.service-areas h2 {
  color: var(--green);
  margin-bottom: 12px;
}

.service-areas p {
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.75;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.area-tag {
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

@media (min-width: 768px) {
  .contact-info-bar__inner { flex-direction: row; justify-content: center; gap: 48px; }
}

/* ============================================================
   MOBILE HERO BADGE FIX
   Keeps the hero text card compact on phones so it does not
   cover the full hero image.
   ============================================================ */
@media (max-width: 767px) {
  .hero__image {
    height: clamp(300px, 78vw, 380px);
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .hero__overlay {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px 14px 0;
  }

  .hero__text {
    width: auto;
    max-width: 270px;
    padding: 13px 15px 15px;
    border-radius: 14px;
    background: rgba(255, 249, 236, 0.88);
    backdrop-filter: blur(2px);
    box-shadow: 0 6px 22px rgba(30, 37, 48, 0.12);
  }

  .hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
  }

  .hero__text h1 {
    font-size: clamp(1.18rem, 6.6vw, 1.62rem);
    line-height: 1.05;
    margin-bottom: 11px;
  }

  .hero__text .btn {
    font-size: 0.78rem;
    padding: 9px 14px;
    border-radius: 9px;
  }
}

@media (max-width: 380px) {
  .hero__text {
    max-width: 235px;
    padding: 11px 13px 13px;
  }

  .hero__text h1 {
    font-size: 1.16rem;
  }

  .hero__eyebrow {
    font-size: 0.58rem;
  }
}

