@charset "utf-8";
/* Home page redesign — styles scoped to index.php only. Does not touch layout.css/main.css. */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Lora:wght@400;600;700&family=Inter:wght@400;500;600;700&family=Nunito+Sans:wght@400;600&family=DM+Sans:wght@400;500&display=swap');

:root {
  --home-red: #c0032d;
  --home-gold: #feb800;
  --home-ink: #2a2a2a;
  --home-body: #555555;
  --home-body-soft: #727272;
  --home-dark: #121212;
  --home-card-dark: #2a2a2a;
  --home-border: #e3e3e3;
  --home-star: #eac700;
  --home-avatar: #ff6161;
  --home-max: 1200px;
}
.home-page {
  font-family: "Inter", sans-serif;
  color: var(--home-ink);
  overflow-x: hidden;
}
.home-page h1, .home-page h2, .home-page h3, .home-page h4 {
  font-family: "Lora", serif;
}
.home-page a { transition: 0.25s ease; }
.home-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--home-gold);
  margin: 0 0 12px;
}
.home-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--home-gold);
  display: inline-block;
}
.home-btn {
  display: inline-block;
  background: var(--home-red);
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 6px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}
.home-btn:hover, .home-btn:focus {
  background: #900224;
  color: #fff !important;
}
.home-link-arrow {
  display: inline-block;
  color: var(--home-red);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none !important;
  transition: 0.25s ease;
}
.home-link-arrow:hover, .home-link-arrow:focus {
  color: #000;
  text-decoration: none !important;
}

/* ===== Header / Hero ===== */
.home-header {
  position: relative;
  background: transparent;
}
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Higher than both the sitewide floating .qtbtn (z-index:99999 in
     layout.css) and .home-nav-overlay below. The mobile drawer is a
     descendant of this element, so its own z-index is capped by this
     stacking context — nav must outrank the overlay here, or the overlay
     silently intercepts every tap on the drawer despite the drawer's own
     (unreachable) higher z-index. */
  z-index: 999999;
  background: var(--home-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.home-nav.home-nav-transparent {
  background: transparent;
  box-shadow: none;
}
.home-nav-spacer { height: 96px; }
.home-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-nav-logo img { height: 64px; width: auto; display: block; }
.home-nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-nav-links a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.home-nav-links a.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-nav-links a:hover { color: var(--home-gold); }
.home-nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.home-nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 4px;
  margin: 0;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.home-nav-has-dropdown:hover .home-nav-dropdown-toggle,
.home-nav-has-dropdown.is-open .home-nav-dropdown-toggle {
  transform: rotate(180deg);
}
.home-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 40;
}
.home-nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--home-ink);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.home-nav-dropdown-menu a:hover {
  background: rgba(192, 3, 45, 0.08);
  color: var(--home-red);
}
/* The off-canvas drawer only becomes a real panel below 993px (see that
   breakpoint). At desktop this wrapper must stay fully transparent to
   layout so .home-nav-links behaves exactly as it always has. */
.home-nav-drawer { display: contents; }
.home-nav-drawer-header,
.home-nav-drawer-footer { display: none; }
.home-nav-overlay { display: none; }
@media (min-width: 993px) {
  .home-nav-has-dropdown:hover .home-nav-dropdown-menu,
  .home-nav-has-dropdown:focus-within .home-nav-dropdown-menu,
  .home-nav-has-dropdown.is-open .home-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.home-nav-call {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
}
.home-nav-call:hover { color: var(--home-gold); }
.home-nav-call i { color: var(--home-gold); font-size: 20px; }
.home-nav-call .num { display: block; font-size: 17px; font-weight: 500; line-height: 1.3; }
.home-nav-call .sub { display: block; font-size: 13px; font-weight: 400; opacity: 0.85; line-height: 1.3; }
.home-nav.is-scrolled {
  background: var(--home-dark);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  animation: home-nav-slide-down 0.35s ease;
}
@keyframes home-nav-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.home-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 4px;
  padding: 8px 11px;
  font-size: 20px;
}

.home-hero {
  position: relative;
}
.home-hero-collage {
  display: flex;
  height: 680px;
}
.home-hero-collage > div {
  flex: 1 1 20%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.home-hero-collage > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.55) 100%);
}
.home-hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-hero-content .home-wrap { padding-left: 44px; padding-right: 44px; }
.home-hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 84px;
  line-height: 1.05;
  margin: 0 0 24px;
  text-transform: capitalize;
}
.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 32px;
}
.home-hero-tags span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #fafafa;
  text-transform: uppercase;
}
.home-hero-tags i {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}
.home-hero .home-btn { font-weight: 600; font-size: 16px; padding: 17px 30px; }

.home-trust {
  background: #fff;
  padding: 70px 0 60px;
}
.home-trust-row {
  display: flex;
  position: relative;
  z-index: 5;
}
.home-trust-item {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 30px;
  position: relative;
}
.home-trust-item + .home-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: 89px;
  background: #e3e3e3;
}
.home-trust-item img { height: 46px; width: auto; display: block; }
.home-trust-item h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: var(--home-ink);
  margin: 0;
}

/* ===== About ===== */
.home-about { background: #fff; padding: 100px 0; }
.home-about .home-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.home-about-media {
  flex: 0 0 42%;
  position: relative;
  aspect-ratio: 509 / 572;
}
.home-about-media img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 73.5%;
  aspect-ratio: 374 / 316;
  border-radius: 10px;
  object-fit: cover;
}
.home-about-media img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 73.5%;
  aspect-ratio: 374 / 316;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.home-about-text { flex: 1 1 auto; }
.home-about-text h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.28;
  color: var(--home-ink);
  margin: 0 0 24px;
}
.home-about-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: var(--home-body);
  margin: 0 0 16px;
}
.home-about-text .home-btn { margin-top: 20px; }

/* ===== Category strip ===== */
.home-category { background: var(--home-card-dark); padding: 100px 0; }
.home-category-head { text-align: center; max-width: 834px; margin: 0 auto 40px; }
.home-category-head h2 { color: #fff; font-weight: 700; font-size: 32px; line-height: 1.28; margin: 0 0 20px; }
.home-category-head p { color: #fff; font-family: "Inter", sans-serif; font-size: 16px; margin: 0; }
.home-category-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.home-category-card {
  flex: 1 1 calc(25% - 15px);
  min-width: 220px;
  position: relative;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
}
.home-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);
}
.home-category-card h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

/* ===== Services alternating rows ===== */
.home-services { background: #fff; padding: 100px 0 40px; }
.home-services-head { text-align: center; max-width: 964px; margin: 0 auto 60px; }
.home-services-head h2 { font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 20px; }
.home-services-head p { font-family: "Inter", sans-serif; font-size: 16px; line-height: 30px; color: var(--home-body); margin: 0; }
.home-service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.home-service-row:last-child { margin-bottom: 0; }
.home-service-row.is-reverse { flex-direction: row-reverse; }
.home-service-row .home-service-media { flex: 0 0 40%; }
.home-service-row .home-service-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.home-service-row .home-service-text { flex: 1 1 auto; }
.home-service-row h3 { font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 20px; }
.home-service-row p { font-family: "Inter", sans-serif; font-size: 16px; line-height: 30px; color: var(--home-body); margin: 0 0 20px; }

/* ===== Process ===== */
.home-process { background: #fff; padding: 100px 0 100px; text-align: center; }
.home-process h2 { font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 40px; }
.home-process-steps { display: flex; margin-bottom: 40px; }
.home-process-num-wrap { position: relative; display: flex; justify-content: center; flex: 1 1 33.33%; }
.home-process-num-wrap:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0;
  border-top: 2px dashed var(--home-gold);
  transform: translateY(-50%);
}
.home-process-num {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(192, 3, 45, 0.12);
  color: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 30px;
  flex: none;
}
.home-process-titles { display: flex; gap: 79px; }
.home-process-titles > div { flex: 1 1 33.33%; text-align: center; }
.home-process > .home-wrap > .home-link-arrow { margin-top: 30px; display: inline-block; }
.home-process-titles h4 { font-weight: 700; font-size: 20px; color: var(--home-ink); margin: 0 0 8px; }
.home-process-titles p { font-family: "Inter", sans-serif; font-size: 15px; line-height: 27px; color: var(--home-body); margin: 0; }

/* ===== Why choose ===== */
.home-whychoose { background: var(--home-card-dark); padding: 100px 0; }
.home-whychoose .home-wrap { display: flex; align-items: center; gap: 60px; }
.home-whychoose-media { flex: 0 0 46%; }
.home-whychoose-media img { width: 100%; height: 510px; object-fit: cover; border-radius: 10px; display: block; }
.home-whychoose-text { flex: 1 1 auto; }
.home-whychoose-text h2 { color: #fff; font-weight: 700; font-size: 32px; line-height: 1.35; margin: 0 0 30px; }
.home-whychoose-list { list-style: none; margin: 0; padding: 0; }
.home-whychoose-list li {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.home-whychoose-list li:last-child { border-bottom: none; }
.home-whychoose-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--home-gold); margin-right: 12px; }

/* ===== Trust CTA ===== */
.home-trustcta { background: #fff; padding: 100px 0; }
.home-trustcta .home-wrap { display: flex; align-items: center; gap: 60px; }
.home-trustcta-text { flex: 1 1 auto; }
.home-trustcta-text h2 { font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 24px; }
.home-trustcta-text p { font-family: "Inter", sans-serif; font-size: 16px; line-height: 30px; color: var(--home-body); margin: 0 0 16px; }
.home-trustcta-media { flex: 0 0 48%; }
.home-trustcta-media img { width: 100%; height: 462px; object-fit: cover; border-radius: 10px; display: block; }

/* ===== Before/After gallery carousel ===== */
.home-gallery { background: #fff; padding: 100px 0; }
.home-gallery h2 { text-align: center; font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 40px; }
.home-compare-carousel { position: relative; }
.home-compare-track { display: flex; transition: transform 0.45s ease; }
.home-compare-item { flex: 0 0 calc(50% - 6px); padding: 0 6px; box-sizing: border-box; }
.home-compare-card { position: relative; border-radius: 8px; overflow: hidden; }
.home-compare-slider {
  display: block;
  width: 100%;
  height: 460px;
  --divider-width: 3px;
  --divider-color: #fff;
  --default-handle-width: 44px;
  --default-handle-color: var(--home-red);
  --default-handle-opacity: 1;
}
.home-compare-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-compare-label {
  position: absolute;
  top: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}
.home-compare-label.before { left: 12px; }
.home-compare-label.after { right: 12px; }
.home-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--home-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 5;
  cursor: pointer;
}
.home-carousel-arrow:hover { background: #900224; }
.home-carousel-arrow.prev { left: -60px; }
.home-carousel-arrow.next { right: -60px; }
.home-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.home-carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--home-border); border: none; padding: 0; cursor: pointer;
}
.home-carousel-dots button.active { background: var(--home-red); }

/* ===== Testimonials carousel ===== */
.home-testimonials { background: #fff; padding: 0 0 100px; }
.home-testimonials h2 { text-align: center; font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 40px; }
.home-testi-carousel { position: relative; }
.home-testi-track { display: flex; transition: transform 0.45s ease; }
.home-testi-item { flex: 0 0 calc(50% - 6px); padding: 0 6px; box-sizing: border-box; }
.home-testi-card {
  height: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 28px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.home-testi-card.is-active {
  background: #fff;
  border-color: var(--home-border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.home-testi-card .stars { color: var(--home-star); font-size: 14px; margin-bottom: 14px; }
.home-testi-card .stars i { margin-right: 3px; }
.home-testi-card p { font-family: "Inter", sans-serif; font-size: 15px; line-height: 26px; font-style: normal; color: var(--home-body); margin: 0 0 20px; }
.home-testi-who { display: flex; align-items: center; gap: 12px; }
.home-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--home-avatar); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Lora", serif; font-weight: 700; font-size: 15px;
  flex: none;
}
.home-testi-info { display: flex; flex-direction: column; }
.home-testi-info strong { font-family: "Lora", serif; font-weight: 700; font-size: 15px; color: var(--home-ink); }
.home-testi-info span { display: block; font-family: "Inter", sans-serif; font-size: 13px; color: var(--home-body-soft); }

/* ===== FAQ ===== */
.home-faq { background: #fff; padding: 100px 0; }
.home-faq h2 { text-align: center; font-weight: 700; font-size: 32px; color: var(--home-ink); margin: 0 0 40px; }
.home-faq-item {
  border: 1px solid var(--home-border);
  border-radius: 14px;
  margin-bottom: 24px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.home-faq-item:last-child { margin-bottom: 0; }
.home-faq-item:hover {
  border-color: rgba(192, 3, 45, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.home-faq-item .home-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 28px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}
.home-faq-item .home-faq-q:hover { background: rgba(192, 3, 45, 0.03); }
.home-faq-item .home-faq-q h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--home-ink);
  margin: 0;
}
.home-faq-item .home-faq-q i {
  color: var(--home-body-soft);
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex: none;
}
.home-faq-item .home-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-faq-item .home-faq-a-inner { overflow: hidden; }
.home-faq-item .home-faq-a p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: var(--home-body);
  margin: 0;
  padding: 0 28px 24px;
}
.home-faq-item.is-open {
  border-color: rgba(192, 3, 45, 0.45);
  box-shadow: 0 10px 26px rgba(192, 3, 45, 0.1);
}
.home-faq-item.is-open .home-faq-a { grid-template-rows: 1fr; }
.home-faq-item.is-open .home-faq-q i { transform: rotate(180deg); color: var(--home-red); }

/* ===== Footer CTA + Footer ===== */
.home-footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 60px 20px;
  margin: 0;
  text-align: center;
  background-color: var(--home-dark);
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 0 0 var(--home-dark);
}
.home-footer-cta::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.home-footer-cta .home-wrap { position: relative; z-index: 2; }
.home-footer-cta .home-eyebrow { justify-content: center; }
.home-footer-cta h2 {
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  margin: 0 0 34px;
}
.home-footer {
  background: var(--home-dark);
  padding: 100px 20px 0;
  margin-top: -5px;
}
.home-footer-menu {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  margin-bottom: 60px;
}
.home-footer-brand img { height: 76px; margin-bottom: 22px; }
.home-footer-brand .bbb-badge {
  display: block;
  margin-bottom: 22px;
  height: 90px;
  width: auto;
}
.home-footer-social { display: flex; gap: 12px; }
.home-footer-social a {
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: #1e1e1e; color: #fff; text-decoration: none;
  transition: opacity 0.25s ease;
}
.home-footer-social a:first-child { background: var(--home-red); }
.home-footer-social a:hover { opacity: 0.85; }
.home-footer-col h4 { color: #fff; font-weight: 700; font-size: 18px; margin: 0 0 20px; }
.home-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.home-footer-col ul a { color: var(--home-border); text-decoration: none; font-family: "Inter", sans-serif; font-size: 16px; }
.home-footer-col ul a:hover { color: var(--home-gold); }
.home-footer-col p { color: var(--home-border); font-family: "Inter", sans-serif; font-size: 16px; margin: 0 0 15px; overflow-wrap: break-word; }
.home-footer-col p a { color: var(--home-border); text-decoration: none; }
.home-footer-col p a:hover { color: var(--home-gold); }
.home-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--home-border);
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
.home-footer-bottom a { color: var(--home-border); }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .home-hero-collage { height: 600px; }
  .home-hero-content h1 { font-size: 68px; }
  .home-nav-links { gap: 22px; }
}
@media (max-width: 992px) {
  .home-nav-links { display: none; }

  /* Off-canvas drawer */
  .home-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 88vw;
    max-width: 400px;
    background: var(--home-dark);
    box-shadow: -12px 0 40px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .home-nav-drawer.is-open { transform: translateX(0); }

  .home-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex: none;
  }
  .home-nav-drawer-logo img { height: 38px; width: auto; display: block; }
  .home-nav-close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
  }
  .home-nav-close:hover { background: rgba(255,255,255,0.16); }
  .home-nav-close:active { transform: scale(0.92); }

  .home-nav-drawer .home-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 20px 20px;
    flex: 1 1 auto;
  }
  .home-nav-drawer .home-nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .home-nav-drawer .home-nav-links > li:last-child { border-bottom: none; }
  .home-nav-drawer .home-nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }
  .home-nav-drawer .home-nav-links a:hover,
  .home-nav-drawer .home-nav-links a:focus-visible { background: rgba(255,255,255,0.06); }
  .home-nav-drawer .home-nav-links a:active { transform: scale(0.98); }
  .home-nav-drawer .home-nav-links a.is-current {
    color: var(--home-red);
    font-weight: 700;
    text-decoration: none;
    background: rgba(192,3,45,0.12);
    border-left: 3px solid var(--home-red);
    padding-left: 15px;
  }

  .home-nav-has-dropdown { flex-wrap: wrap; width: 100%; align-items: center; gap: 0; }
  .home-nav-drawer .home-nav-has-dropdown > a { width: auto; flex: 1 1 auto; }
  .home-nav-dropdown-toggle {
    flex: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 50%;
    font-size: 13px;
    transition: transform 0.25s ease, background-color 0.2s ease;
  }
  .home-nav-dropdown-toggle:hover { background: rgba(255,255,255,0.08); }
  .home-nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-basis: 100%;
    width: 100%;
  }
  .home-nav-has-dropdown.is-open .home-nav-dropdown-menu { max-height: 400px; }
  .home-nav-dropdown-menu a {
    position: relative;
    color: var(--home-border);
    font-size: 16px;
    min-height: 48px;
    padding: 0 6px 0 28px;
    width: 100%;
  }
  .home-nav-dropdown-menu li { position: relative; }
  .home-nav-dropdown-menu li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--home-gold);
    transform: translateY(-50%);
  }
  .home-nav-dropdown-menu a:hover { background: none; color: var(--home-gold); }

  .home-nav-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex: none;
  }
  .home-nav-drawer-call {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }
  .home-nav-drawer-call:hover { background: rgba(255,255,255,0.06); }
  .home-nav-drawer-call i { color: var(--home-gold); font-size: 20px; flex: none; }
  .home-nav-drawer-call .num { display: block; font-size: 16px; font-weight: 600; }
  .home-nav-drawer-call .sub { display: block; font-size: 13px; color: var(--home-border); }
  .home-nav-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    background: var(--home-red);
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 14px 20px;
    transition: background-color 0.2s ease, transform 0.15s ease;
  }
  .home-nav-drawer-cta:hover { background: #900224; }
  .home-nav-drawer-cta:active { transform: scale(0.97); }

  /* Overlay */
  .home-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Must stay below .home-nav's own z-index (999999) — the drawer is a
       descendant of nav, so it can only ever outrank this overlay if nav
       itself does. See the comment on .home-nav for the full explanation. */
    z-index: 999990;
  }
  .home-nav-overlay.is-open { opacity: 1; visibility: visible; }

  body.home-nav-locked { overflow: hidden; }

  .home-nav-toggle { display: block; }
  .home-nav-call .sub { display: none; }
  .home-hero-collage { height: 540px; }
  .home-hero-content h1 { font-size: 50px; }
  .home-hero-tags span { font-size: 17px; }
  .home-trust-row { flex-wrap: wrap; }
  .home-trust-item { flex: 1 1 50%; margin-bottom: 30px; }
  .home-trust-item + .home-trust-item::before { display: none; }
  .home-about .home-wrap, .home-whychoose .home-wrap, .home-trustcta .home-wrap { flex-direction: column; }
  .home-about-media, .home-whychoose-media, .home-trustcta-media { flex: 0 0 auto; width: 100%; }
  .home-category-card { flex: 1 1 calc(50% - 10px); }
  .home-service-row, .home-service-row.is-reverse { flex-direction: column; }
  .home-service-row .home-service-media { flex: 0 0 auto; width: 100%; }
  .home-process-titles { flex-direction: column; gap: 30px; }
  .home-footer-cta { min-height: 380px; padding: 60px 20px; }
  .home-footer-cta h2 { font-size: 40px; }
  .home-footer-menu { gap: 40px; }
  .home-carousel-arrow.prev { left: 10px; }
  .home-carousel-arrow.next { right: 10px; }
}
@media (max-width: 767px) {
  .home-nav-inner { padding: 14px 16px; gap: 10px; }
  .home-nav-logo img { height: 40px; }
  .home-nav-spacer { height: 70px; }
  .home-nav-call { padding: 8px 10px; gap: 6px; }
  .home-nav-call i { font-size: 16px; }
  .home-nav-call .num { font-size: 13px; }
  .home-nav-toggle { padding: 6px 9px; font-size: 16px; flex: none; }
  .home-hero-collage { height: 480px; }
  .home-hero-content {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-top: 140px;
  }
  .home-hero-content .home-wrap { padding-left: 20px; padding-right: 20px; }
  .home-hero-content h1 { font-size: 34px; margin-bottom: 14px; }
  .home-hero-tags { justify-content: flex-start; gap: 12px; margin-bottom: 18px; }
  .home-hero-tags span { font-size: 13px; }
  .home-hero-tags i { height: 16px; }
  .home-trust, .home-about, .home-category, .home-services, .home-process, .home-whychoose, .home-trustcta, .home-gallery, .home-testimonials, .home-faq {
    padding-top: 60px; padding-bottom: 60px;
  }
  .home-trust-item { flex: 1 1 50%; padding: 0 12px; gap: 12px; }
  .home-trust-item img { height: 36px; }
  .home-trust-item h3 { font-size: 15px; line-height: 21px; }
  .home-about-text h2, .home-category-head h2, .home-services-head h2, .home-process h2,
  .home-whychoose-text h2, .home-trustcta-text h2, .home-gallery h2, .home-testimonials h2, .home-faq h2 {
    font-size: 26px;
  }
  .home-category-card { flex: 1 1 100%; }
  .home-process > .home-wrap {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    row-gap: 0;
  }
  .home-process > .home-wrap > h2 {
    grid-column: 1 / -1;
    text-align: center;
  }
  .home-process-steps { display: contents; }
  .home-process-num-wrap {
    grid-column: 1;
    display: flex;
    justify-content: center;
    padding-top: 4px;
  }
  .home-process-num-wrap:nth-of-type(1) { grid-row: 2; }
  .home-process-num-wrap:nth-of-type(2) { grid-row: 3; }
  .home-process-num-wrap:nth-of-type(3) { grid-row: 4; }
  .home-process-num-wrap:not(:last-child)::after { content: none; }
  .home-process-num { width: 44px; height: 44px; font-size: 16px; }
  .home-process-titles { display: contents; }
  .home-process-titles > div {
    grid-column: 2;
    text-align: left;
    padding-bottom: 28px;
  }
  .home-process-titles > div:nth-of-type(1) { grid-row: 2; }
  .home-process-titles > div:nth-of-type(2) { grid-row: 3; }
  .home-process-titles > div:nth-of-type(3) { grid-row: 4; }
  .home-process-titles h4 { font-size: 17px; }
  .home-process-titles p { font-size: 14px; line-height: 22px; }
  .home-process > .home-wrap > .home-link-arrow {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .home-compare-item { flex: 0 0 100%; }
  .home-compare-slider { height: 300px; }
  .home-carousel-arrow { display: none; }
  .home-testi-item { flex: 0 0 100%; }
  .home-footer-cta { min-height: 360px; padding: 60px 20px; }
  .home-footer-cta h2 { font-size: 28px; }
  .home-footer-menu { grid-template-columns: 1fr; gap: 40px; }
  .home-footer-bottom { flex-direction: column; text-align: center; }
  .home-faq-item .home-faq-q { padding: 16px 20px; gap: 16px; }
  .home-faq-item .home-faq-q h3 { font-size: 16px; }
  .home-faq-item .home-faq-a p { padding: 0 20px 18px; }
}
@media (max-width: 420px) {
  .home-nav-call { padding: 9px; }
  .home-nav-call .num { display: none; }
}
