:root {
  --brand: #b00000;
  --brand-dark: #8a0000;
  --ink: #222;
  --muted: #666;
  --bg: #f7f7f9;
  --card: #fff;
  --ring: rgba(176, 0, 0, 0.16);
  --ok: #19b36b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font: 16px/1.6 "Poppins", "Roboto", system-ui, -apple-system, Segoe UI,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Roboto", sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 40px;
}

/* utility */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
.grid {
  display: grid;
  gap: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px var(--ring);
  transition: 0.2s transform, 0.2s box-shadow, 0.2s background;
  max-width: 200px;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 12px 26px var(--ring);
}
.btn.outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0f0;
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
}
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: 0.2s transform, 0.2s box-shadow;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}
.section {
  padding: 70px 0;
}
.section h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.lead {
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 26px;
}

/* header/hero */
:root {
  --header-h: 70px;
}

body {
  padding-top: var(--header-h);
} /* prevent content from hiding under fixed header */

/* Sticky header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: #fff;
  z-index: 1000;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  height: 70px;
  width: auto;
}
.brand-text {
  font-weight: 700;
  font-family: "Poppins", "Roboto", sans-serif;
  display: none;
}

/* Nav */
.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 8px;
}
.site-nav a:hover {
  color: var(--brand);
}
.site-nav a.active {
  color: var(--brand);
  background: #fff0f0;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}

/* Sections offset so anchors don't hide under header */
.section,
#banner {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.banner {
  background: linear-gradient(135deg, #333 0%, #444 30%, var(--brand) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero {
  padding: 80px 0 70px;
  max-width: 600px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}
.hero-copy {
  max-width: 640px;
}
.hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}
.banner .btn {
  max-width: 100%;
}
.hero-grid h1 {
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.hero-grid p {
  opacity: 0.95;
  margin: 20px 0 40px;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.brandbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.brandbar img {
  height: 44px;
}

/* services */
.services {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.service i {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  color: var(--brand);
  display: inline-block;
  margin-bottom: 8px;
}

/* why us */
.why {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why ul {
  padding: 0;
}
.why li {
  list-style: none;
  margin: 6px 0;
  padding-left: 24px;
  position: relative;
}
.why li:before {
  content: "✓";
  color: var(--ok);
  position: absolute;
  left: 0;
}

/* process */
.process {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
/* remove number badge */
.step:before {
  content: none;
}
/* icon badge */
.step .step-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand);
  margin-bottom: 10px;
  box-shadow: 0 6px 16px var(--ring);
}
/* optional: subtle hover lift to match cards */
.step:hover .step-icon {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* stats */
.stats {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  text-align: center;
}
.stat h3 {
  font-size: 36px;
  margin: 0;
  color: var(--brand);
}
.stat p {
  color: var(--muted);
  margin: 4px 0 0;
}

/* Offers */
.offers {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.offer-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 10px;
}
.offer-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  display: inline-block;
  padding: 20px;
}
.offer-media img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 14px;
}
.offer-media .badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 8px 18px var(--ring);
}
/* default: show discount row, hide original-only */
.offer-card .orig {
  display: none;
  font-weight: 800;
  color: var(--ink);
}

/* after expiry */
.offer-card.expired .badge,
.offer-card.expired .price-row {
  display: none;
}

.offer-card.expired .orig {
  display: block;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-row .was {
  color: #999;
  text-decoration: line-through;
}
.price-row .now {
  color: var(--brand);
  font-weight: 800;
}
.btn.sm {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  width: fit-content;
}
.fineprint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* testimonials carousel (scroll-snap) */
.carousel {
  display: grid;
  gap: 14px;
}
.track {
  display: flex;
  gap: 16px;
  overflow: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;
}
.track::-webkit-scrollbar {
  height: 10px;
}
.track::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 999px;
}
.slide {
  min-width: 320px;
  scroll-snap-align: start;
}
/* --- Upgraded testimonial controls (no layout change) --- */
.carousel .controls {
  gap: 12px; /* tiny spacing buff */
}

.carousel .controls .control {
  position: relative;
  border: 1px solid #eee;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 16px; /* keeps your text ◀︎ Prev / Next ▶︎ */
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* subtle gradient + brand accent on hover */
.carousel .controls .control:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  border-color: #f1caca; /* light brand-ish border */
  background: linear-gradient(180deg, #fff, #fff5f5);
  color: var(--brand);
}

/* pressed feel */
.carousel .controls .control:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* focus ring matches your design system */
.carousel .controls .control:focus-visible {
  box-shadow: 0 0 0 3px var(--ring), 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(176, 0, 0, 0.25);
}

/* add a faint inner shine */
.carousel .controls .control::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120% 120% at 10% 0%,
    rgba(255, 255, 255, 0.6),
    transparent 40%
  );
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.16s ease;
}
.carousel .controls .control:hover::before {
  opacity: 0.9;
}

/* disabled state when at ends (your JS already toggles disabled) */
.carousel .controls .control[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: #fafafa;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* optional: make arrow symbols a touch bolder without changing text */
.carousel .controls #prev,
.carousel .controls #next {
  font-variant-ligatures: none;
}

/* FAQ accordion */
.faq .item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

/* contact + form */
/* enhanced contact form */
.form-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.form-card .input-group + .input-group {
  margin-top: 8px;
}
.input-group {
  position: relative;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 14px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
}
.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0 6px;
  background: #fff;
  color: #888;
  transition: 0.15s;
  pointer-events: none;
  font-size: 14px;
}
.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
}
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group input:focus + label,
.input-group textarea:focus + label {
  top: -9px;
  font-size: 12px;
  color: var(--brand);
}
/* map wrapper */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  width: 100%;
}
.map {
  display: block;
  width: 100%;
  height: clamp(360px, 40vw, 560px); /* responsive height */
  border: 0;
}

/* footer + stickies */
footer {
  background: #111;
  color: #bbb;
  padding: 22px 0;
  text-align: center;
}
footer a {
  color: #ddd;
  text-decoration: none;
}
.float-wa,
.back-top {
  position: fixed;
  right: 16px;
  z-index: 40;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.float-wa {
  bottom: 16px;
  background: #25d366;
  color: #fff;
  padding: 13px 16px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.back-top {
  bottom: 74px;
  background: #fff;
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.2s;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.house-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 14px 44px 14px 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Poppins", "Roboto", sans-serif;
}
.house-float a {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 4px;
}
.house-float strong {
  font-size: 16px;
}
.house-float span {
  color: var(--muted);
  font-size: 13px;
}
.house-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: #f3f3f3;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
}
/* Vertical contact list */
.contact-vertical {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-vertical li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}
.contact-vertical .cv-icon {
  color: var(--brand);
  display: grid;
  place-items: center;
}
.contact-vertical a {
  color: var(--ink);
  text-decoration: none;
  word-break: break-all;
}
.contact-vertical a:hover {
  color: var(--brand);
}
.contact-vertical .wa {
  background: #25d366;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 4px;
  display: inline-block;
}

/* responsive tweaks */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .brand-text {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .nav-toggle {
    display: inline-block;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: #fff;
    padding: 12px 16px;
    display: grid;
    gap: 8px;
    border-bottom: 1px solid #eee;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
  h2,
  .section h2 {
    font-size: 30px;
  }
  .hero {
    padding: 48px 0 42px;
  }
  .hero-grid h1 {
    font-size: 36px;
  }
  .hero-grid p {
    margin: 10px 0 20px;
    font-size: 16px;
  }
  .house-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card,
  .reveal {
    transition: none;
  }
  .carousel .controls .control {
    transition: none;
  }
}
