@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

@font-face {
  font-family: 'Horizon';
  src: url('../fonts/Horizon.woff2') format('woff2'),
    url('../fonts/Horizon.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-titles {
  font-family: 'Horizon', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}

/* ── Container ── */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 0px;
  overflow: hidden;
  position: relative;
}

/* ── Header / Navbar ── */
.site-header {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 74px;
  width: auto;
  display: block;
}

/* Nav links */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 6px 13px;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a.active {
  color: #fff;
  font-weight: 600;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #39ff14;
}

/* Social icon buttons */
.social-icons {
  display: flex;
  gap: 0px;
  flex-shrink: 0;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn img {
  width: 22px;
  height: 22px;
  display: block;
}

.social-btn[aria-label="Facebook"] img {
  width: 32px;
  height: 32px;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── Hero ── */
.hero {
  background: #000;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.hero .container {
  padding: 48px 60px 44px;
  /* right padding reserves space so text doesn't slide under the abs-pos hex */
  padding-right: calc(clamp(300px, 38vw, 480px) + 60px);
  min-height: 480px;
}

/* Speed-stripe shape (two diagonal parallelograms) */
.hero-slash-block {
  position: absolute;
  top: 20px;
  right: -64px;
}

.hero-slash {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 105px;
  gap: 6px;
  pointer-events: none;
  z-index: 10;
}

.hero-slash-dark {
  width: 310px;
  background: #2b2b2b;
  clip-path: polygon(22% 0%, 100% 0%, 86% 100%, 0% 100%);
}

.hero-slash-green {
  position: absolute;
  left: 84px;
  right: 0px;
  top: 0px;
  z-index: 12;
  height: 73px;
  width: 225px;
  background: #39ff14;
  clip-path: polygon(19% 0%, 100% 0%, 86% 100%, 0% 100%);
}

/* Green decorative accents */
.hero-accent {
  position: absolute;
}

.hero-accent--bl {
  bottom: -40px;
  left: 10px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 0 0 20px 0;
}

.acc-chev {
  width: 50px;
  height: 40px;
  background: #39ff14;
  clip-path: polygon(0% 0%, 62% 0%, 100% 50%, 62% 100%, 0% 100%, 38% 50%);
}

/* Title block */
.hero-titles {
  line-height: 0.9;
}

.hero-t1 {
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-t2 {
  font-weight: 900;
  color: #39ff14;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-t3 {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

/* Description box */
.hero-desc {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 18px;
  margin-top: 24px;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-desc p {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}

.hero-desc img {
  flex-shrink: 0;
  width: 40px;
  height: auto;
}

/* Contact row */
.hero-contact {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-citem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #fff;
  text-decoration: none;
}

.hero-citem:hover {
  color: #fff;
}

.hero-citem .ic {
  width: 28px;
  height: 28px;
  border: 2px solid red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-citem svg {
  width: 13px;
  height: 13px;
  fill: red;
}

/* Right — hex image: absolutely positioned, overflows the hero top */
.hero-right {
  position: absolute;
  right: -120px;
  top: 140px;
  /* pushes top of hex above the hero boundary — clipped by overflow:hidden */
}

.hero-hex-wrap {
  width: clamp(300px, 38vw, 500px);
  aspect-ratio: 1 / 0.866;
  background: #39ff14;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-hex {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
}

.hero-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive hero */
@media (max-width: 800px) {
  .hero .container {
    padding: 36px 24px 32px;
    text-align: center;
  }

  .hero-right {
    left: auto;
    top: auto;
    bottom: -20px;
    opacity: 0.8;
    right: -150px;
    position: relative;
  }

  .hero-hex-wrap {
    width: 200px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-contact {
    justify-content: center;
  }

  .hero-accent--bl,
  .hero-slash {
    display: none;
  }
}

/* ── What We Do ── */
.what-we-do {
  background: #000;
  overflow: hidden;
  position: relative;
}

.wwd-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 3fr;
  position: relative;
}

.wwd-left {
  padding: 56px 48px 0 60px;
  display: flex;
  flex-direction: column;
}

.wwd-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  line-height: 1;
  color: #fff;
}

.wwd-heading .green {
  color: #39ff14;
}

.wwd-intro {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #fff;
}

.wwd-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  flex: 1;
}

.wwd-list li {
  padding-left: 18px;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 20px;
}

.wwd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39ff14;
}

.wwd-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.wwd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.wwd-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #111 0%, rgba(17, 17, 17, 0.4) 50%, transparent 100%);
}

.wwd-photo-stripe {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: stretch;
  height: 36px;
  gap: 5px;
  z-index: 2;
}

.wwd-photo-stripe-dark {
  width: 100px;
  background: rgba(20, 20, 20, 0.85);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

.wwd-photo-stripe-green {
  width: 64px;
  background: #39ff14;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

.wwd-right {
  padding: 150px 40px 56px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: -50px;
}

/* Decorative background hexagons — right panel */
.wwd-bg-hex {
  position: absolute;
  width: 200px;
  height: calc(200px * 0.866);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  background: transparent;
  filter:
    drop-shadow(0 0 1px #39ff14) drop-shadow(0 0 1px #39ff14) drop-shadow(0 0 3px #39ff14);
}

.wwd-bg-hex-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background:
    repeating-linear-gradient(-60deg,
      transparent 0px,
      transparent 19px,
      rgba(57, 255, 20, 0.18) 19px,
      rgba(57, 255, 20, 0.18) 20px),
    #0a0a0a;
}

.wwd-bg-hex-1 {
  top: 115px;
  right: -20px;
}

.wwd-bg-hex-2 {
  bottom: -10px;
  right: -70px;
}

/* ── What We Do — bottom-left decorative cluster ── */
.wwd-deco {
  position: relative;
  top: -130px;
  left: -105px;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 4;
}

.wwd-deco-trap {
  position: absolute;
  width: 70px;
  height: 30px;
  background: #39ff14;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
  align-self: flex-end;
  margin-right: 6px;
}

.wwd-deco-trap--sm {
  left: 50px;
  bottom: -80px;
  z-index: 1;
}

.wwd-deco-trap--lg {
  width: 140px;
  height: 60px;
  left: -40px;
  top: 150px;
  z-index: 3;
}

.wwd-deco-hexes {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.wwd-deco-hex {
  --dw: 160px;
  --dh: calc(var(--dw) * 0.866);
  width: var(--dw);
  height: var(--dh);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-us .wwd-deco-hex {
  --dw: 240px;
}

.wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  bottom: -110px;
  right: 0px;
}

.wwd-deco-hex.wwd-deco-img-hex {
  position: absolute;
  top: 30px;
  right: -90px;
}

.wwd-deco-hex+.wwd-deco-hex {
  margin-left: calc(var(--dw) * -0.25);
}

.wwd-deco-dark-hex {
  background: #1c1c1c;
}

.wwd-deco-lines-hex {
  background: transparent;
  filter:
    drop-shadow(0 0 1px #39ff14) drop-shadow(0 0 1px #39ff14) drop-shadow(0 0 3px #39ff14);
}

.wwd-deco-lines-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background:
    repeating-linear-gradient(120deg,
      transparent 0,
      transparent 18px,
      rgba(57, 255, 20, 0.3) 18px,
      rgba(57, 255, 20, 0.3) 19px),
    #0a0a0a;
}

.wwd-deco-img-hex {
  background: #39ff14;
}

.wwd-deco-img-inner {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
}

.wwd-deco-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-bottom {
  display: flex;
  max-width: 1090px;
  margin: 0px auto;
  gap: 100px;
}

/* Service hexagon grid — 3 vertical columns, flat-top hexes (90° from pointy-top) */
.svc-grid {
  --sw: 150px;
  --sh: calc(var(--sw) * 0.866);
  /* flat-top: h = w × sin60° ≈ 0.866w */
  --sb: 2px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.svc-col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

/* Adjacent columns overlap by sw/4 for flat-top honeycomb interlocking */
.svc-col+.svc-col {
  margin-left: calc(var(--sw) * -0.25);
}

/* Middle column raised by sh/2 so its hexes sit between col1 & col3 */
.svc-col:nth-child(2) {
  margin-top: calc(var(--sh) * -0.5);
}

.svc-border {
  width: var(--sw);
  height: var(--sh);
  background: #39ff14;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transform: scale(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.svc-border:hover {
  transform: scale(1.06);
  filter: brightness(1.3) drop-shadow(0 0 14px #39ff14);
}

.svc-inner {
  width: calc(var(--sw) - var(--sb) * 2);
  height: calc(var(--sh) - var(--sb) * 2);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.svc-inner img,
.svc-inner .svc-label {
  position: relative;
  z-index: 1;
}

.svc-inner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.svc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 0 10px;
}

@media (max-width: 1100px) {
  .svc-grid {
    --sw: 120px;
  }
}

@media (max-width: 900px) {
  .wwd-inner {
    grid-template-columns: 1fr;
  }

  .wwd-left {
    padding: 40px 24px 0;
  }

  .wwd-right {
    padding: 20px 24px 40px;
  }
}

/* ── Gallery ── */
.gallery {
  padding: 50px 0 80px;
}

/* Wrapper for the hex grid — provides the relative context for the text overlay */
.hex-grid {
  position: relative;
}

/* ── Hex variables ── */
:root {
  --w: 220px;
  --h: calc(var(--w) * 0.866);
  /* flat-top hex: h = w × sin(60°) */
  --b: 8px;
  /* border inset */
  --green: #39ff14;
}

/*
  Honeycomb geometry (flat-top hexagons):
  ─ Within a row  : hexes are spaced 1.5W apart (left-edge to left-edge),
                    leaving a 0.5W gap filled by the row above/below.
  ─ Between rows  : each row overlaps the previous by H/2,
                    so diagonal edges of 3-hex rows share edges with 2-hex rows.
  ─ Centering     : CSS justify-content:center naturally shifts the 2-hex rows
                    0.75W right of the 3-hex rows — exactly the right honeycomb offset.
*/

/* One row */
.hex-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

/* Each subsequent row moves up by H/2 so edges interlock */
.hex-row+.hex-row {
  margin-top: calc(var(--h) * -0.5);
}

/* Hex slot */
.hex-item {
  flex-shrink: 0;
  position: relative;
}

/* Within a row: adjacent hexes are 0.5W apart (positive gap) */
.hex-item+.hex-item {
  margin-left: calc(var(--w) * 0.5);
}

/* ── Green border shell ── */
.hex-border {
  width: var(--w);
  height: var(--h);
  background: var(--green);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transform: scale(0.97);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hex-border:hover {
  transform: scale(1.07);
  filter: brightness(1.3) drop-shadow(0 0 16px var(--green));
  z-index: 1;
}

/* ── Image shell (smaller hex creates visible border) ── */
.hex-img {
  width: calc(var(--w) - var(--b));
  height: calc(var(--h) - var(--b));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.85);
}

.hex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hex-border:hover .hex-img img {
  transform: scale(1.1);
}

/* ── Dark center hexes — one continuous image across all 4 ── */
/*
  The 4 hexes form a diamond whose bounding box is 2.5W × 2H.
  Each hex-img gets the same background-size (the full canvas) but a
  different background-position so the image appears seamless.

  Diamond positions (relative to canvas top-left):
    top    (row3-hex2) : offset (-0.75W, 0)
    left   (row4-hex1) : offset (0,      -0.5H)
    right  (row4-hex2) : offset (-1.5W,  -0.5H)
    bottom (row5-hex2) : offset (-0.75W, -1H)
*/
.hex-dark .hex-border {
  background: transparent;
  /* no green ring between dark hexes */
  cursor: default;
  transform: scale(1);
  /* cancel the gap scaling — dark hexes stay seamless */
}

.hex-dark .hex-border:hover {
  transform: scale(1);
  filter: none;
}

.hex-dark .hex-img {
  width: var(--w);
  /* fill the full hex — no inset gap */
  height: var(--h);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/icons/gallery.png');
  background-size: calc(var(--w) * 3.8) calc(var(--h) * 2.6);
}

.hex-dark .hex-img img {
  display: none;
}

.hex-diamond-top .hex-img {
  background-position: calc(var(--w) * -1.1) calc(var(--h) * -0.2);
}

.hex-diamond-left .hex-img {
  background-position: calc(var(--w) * -0.35) calc(var(--h) * -0.7);
}

.hex-diamond-right .hex-img {
  background-position: calc(var(--w) * -1.85) calc(var(--h) * -0.7);
}

.hex-diamond-bottom .hex-img {
  background-position: calc(var(--w) * -1.1) calc(var(--h) * -1.2);
}

/* ── "Our Gallery" text overlay ── */
/* Positioned relative to .hex-grid.
   Diamond center: rows 3-4-5 of a 7-row grid → Y = 2H out of 4H total = 50%.
   X: center hex of 3-hex rows aligns exactly at 50% of container width. */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Horizon', sans-serif;
}

.banner-text .label,
.banner-text .title {
  display: inline;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.banner-text .label {
  color: #fff;
}

.banner-text .title {
  color: #39ff14;
  text-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.banner-text .brand {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.75rem, 1.5vw, 1.05rem);
  color: #aaa;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.banner-text .brand span {
  color: #39ff14;
}

.wwd-txt ul {
  list-style: none;
  padding: 0;
}

.wwd-txt li {
  margin-bottom: 30px;
  line-height: 25px;
  color: #fff;
  padding-left: 18px;
  position: relative;
}

.wwd-txt li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39ff14;
}

.contact-btn {
  background: #39ff14;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
  width: fit-content;
}

.contact-btn:hover {
  cursor: pointer;
}

.hero-accent--bl-what {
  bottom: -20px;
  left: 170px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 0px 0px 20px;
  transform: rotate(180deg);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  :root {
    --w: 175px;
    --b: 8px;
  }
}

@media (max-width: 800px) {
  :root {
    --w: 130px;
    --b: 6px;
  }
}

@media (max-width: 560px) {
  :root {
    --w: 90px;
    --b: 4px;
  }
}

/* ── Footer ── */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 40px 48px;
  position: relative;
}

.footer-top-btn {
  position: absolute;
  right: 40px;
  top: 60px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-top-btn:hover {
  color: #39ff14;
}

.footer-top-btn svg {
  width: 24px;
  height: 24px;
}

.footer-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
  flex: 1
}

.footer-logo img {
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  display: block;
}

.footer-col--brand>p {
  font-size: 0.78rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col--brand p a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col--brand p a:hover {
  color: #fff;
}

.footer-powered {
  color: #39ff14 !important;
  opacity: 1;
}

.footer-col {
  min-width: 0;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.footer-list li {
  margin: 3px 0;
}

.footer-list__heading p {
  font-family: 'Horizon', sans-serif;
  font-size: 0.85rem;
  color: #39ff14;
  margin-bottom: 10px;
  margin-top: 20px;
}

.footer-list__heading:first-child p {
  margin-top: 0;
}

.footer-list p {
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: #39ff14;
}

.footer-social img {
  display: block;
}

/* Nav social row — hidden on desktop, shown inside mobile dropdown */
.nav-social {
  display: none;
}

/* about us page */

.about-us .wwd-bottom .wwd-deco {
  top: -100px;
}

.about-us .wwd-right {
  right: -140px;
  top: 50px;
  width: 480px;
}

.about-us .wwd-right .wwd-deco-hex.wwd-deco-img-hex {
  position: relative;
  z-index: 10;
  left: 140px;
}

.about-us .wwd-right .wwd-deco-dark-hex {
  z-index: 2;
  position: relative;
  left: 150px;
}

.about-us .wwd-right .wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  bottom: 50px;
  left: 60px;
}

.about-us .wwd-right .wwd-deco-trap--sm {
  width: 30px;
  height: 20px;
  left: 230px;
  bottom: -40px;
}

.about-us .wwd-right .wwd-deco-trap--lg {
  width: 70px;
  height: 30px;
  left: 50px;
  top: 20px;
}

.about-us .wwd-right .wwd-deco-hexes .sm-deco-hex {
  --dw: 90px;
  left: 20px;
  z-index: 8;
  bottom: 0px;
}

.about-us .sm-deco-hex .wwd-deco-lines-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background:
    repeating-linear-gradient(120deg,
      transparent 0,
      transparent 18px,
      rgba(57, 255, 20, 0.3) 18px,
      rgba(57, 255, 20, 0.3) 19px),
    #1C1C1E;
}

.about-us .wwd-deco-trap--bottom {
  background: #1C1C1E;
  transform: rotate(180deg);
  left: 270px;
  bottom: -40px;
  width: 80px;
}

.about-us .hero-accent--bl-what {
  right: 90px;
}

/* ════════════════════════════════════════
   MOT & SERVICING PAGE
════════════════════════════════════════ */

.mot-page {
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Hex group overrides for mot page — mirrors about-us rules */
.mot-page .wwd-right {
  right: -80px;
  top: 10px;
  width: 350px;
  padding-top: 0px;
}

.mot-page .wwd-right .wwd-deco-hex.wwd-deco-img-hex {
  position: relative;
  z-index: 10;
  left: 140px;
}

.mot-page .wwd-right .wwd-deco {
  left: 0px;
  top: 0px;
}

.mot-page .wwd-right .wwd-deco-dark-hex {
  z-index: 2;
  position: relative;
  left: 90px;
  top: 0px;
}

.mot-page .wwd-right .wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  bottom: -10px;
  left: 60px;
}

.mot-page .wwd-right .wwd-deco-trap--sm {
  width: 30px;
  height: 20px;
  left: unset;
  bottom: -40px;
  right: -10px;
}

.mot-page .wwd-right .wwd-deco-trap--lg {
  width: 70px;
  height: 30px;
  left: 50px;
  top: 20px;
}

.mot-page .wwd-right .wwd-deco-hexes .sm-deco-hex {
  --dw: 150px;
  left: 40px;
  z-index: 8;
  bottom: 15px;
}

.mot-page .sm-deco-hex .wwd-deco-lines-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background:
    repeating-linear-gradient(120deg,
      transparent 0,
      transparent 18px,
      rgba(57, 255, 20, 0.3) 18px,
      rgba(57, 255, 20, 0.3) 19px),
    #1C1C1E;
}

.mot-page .wwd-deco-trap--bottom {
  background: #1C1C1E;
  transform: rotate(180deg);
  left: 270px;
  bottom: -40px;
  width: 80px;
}

/* ── Hero ── */
.mot-hero {
  padding: 10px 60px 0;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

.mot-hero-inner {
  display: grid;
  grid-template-columns: 7fr 3fr;
  position: relative;
  padding-top: 30px;
}

.mot-hero .wwd-deco-hex {
  --dw: 190px;
}

.mot-hero-text {
  position: relative;
}

.mot-heading {
  font-size: clamp(1.8rem, 3vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: #fff;
}

.mot-heading .green {
  color: #39ff14;
}

.mot-intro {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 16px;
}


/* ── Body: hex stack + table ── */
.mot-body {
  padding: 60px 60px 20px;
  max-width: 1800px;
  margin: 0 auto;
}

.mot-body-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

/* Body hex group — left of table */
.mot-body-hex {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 260px;
}

.mot-body-hex {
  width: 320px;
  height: 520px;
}

/* ── Group 1: dark + image + lines ── */
.mbh-group-1 {
  position: relative;
  display: flex;
  align-items: center;
}

.mbh-group-1 .wwd-deco-hex {
  --dw: 190px;
  --dh: calc(var(--dw) * 0.866);
}

.mbh-group-1 .wwd-deco-hex.wwd-deco-dark-hex {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  left: -20px;
}

.mbh-group-1 .wwd-deco-hex.wwd-deco-dark-hex .wwd-deco-trap--lg {
  left: 0px;
  top: 0px;
  clip-path: polygon(10% 0%, 80% 0%, 100% 100%, 0% 100%);
  left: -50px;
  top: 20px;
  height: 20px;
  transform: rotate(180deg);
  width: 110px;
}

.mbh-group-1 .wwd-deco-hex.wwd-deco-img-hex {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  margin-left: calc(var(--dw) * -0.48);
  margin-top: calc(var(--dh) * -0.3);
  align-self: flex-start;
  left: -60px;
  top: 40px;

}

.mbh-group-1 .wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  z-index: 0;
  --dw: 130px;
}

.mbh-group-1 .wwd-deco-hex.wwd-deco-lines-hex.first-hex {
  z-index: 2;
  bottom: 0px;
  left: 36px;
}

.mbh-group-1 .wwd-deco-hex.wwd-deco-lines-hex.second-hex {
  left: 180px;
  z-index: 3;
  bottom: 20px;
}

/* ── Group 2: lines + image + dark with sm-deco-hex ── */
.mbh-group-2 {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
  left: 30px;
}

.mbh-group-2 .wwd-deco-hex {
  --dw: 160px;
  --dh: calc(var(--dw) * 0.866);
}

.mbh-group-2 .wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  z-index: 4;
  bottom: -40px;
  left: 20px;
  --dw: 120px;
}

.mbh-group-2 .wwd-deco-hex.wwd-deco-lines-hex.hex-2 {
  bottom: 20px;
  left: 150px;
  --dw: 140px;
}

.mbh-group-2 .wwd-deco-hex.wwd-deco-img-hex {
  position: relative;
  z-index: 10;
  left: 130px;
  top: 50px;
}

.mbh-group-2 .wwd-deco-hex.wwd-deco-dark-hex {
  position: relative;
  z-index: 2;
  left: -60px;
  top: 0px;
}

.mbh-group-2 .wwd-deco-trap--lg {
  width: 60px;
  height: 25px;
  left: 40px;
  top: 15px;
}

.mbh-group-2 .wwd-deco-hexes .sm-deco-hex,
.mbh-group-2 .sm-deco-hex {
  --dw: 80px;
  left: 15px;
  z-index: 8;
  bottom: 0;
}

.mbh-group-2 .sm-deco-hex .wwd-deco-lines-inner {
  background:
    repeating-linear-gradient(120deg,
      transparent 0,
      transparent 18px,
      rgba(57, 255, 20, 0.3) 18px,
      rgba(57, 255, 20, 0.3) 19px),
    #1c1c1e;
}

/* Table side */
.mot-table-side {
  min-width: 0;
}

.mot-table-intro {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.mot-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin-bottom: 32px;
}

.mot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.mot-table th,
.mot-table td {
  border: 1px solid #39ff14;
}

.mot-table thead tr {
  background: #434343;
  color: #39ff14;
}

.mot-table thead th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.mot-table tbody tr:nth-child(even) {
  background: #434343;
}

.mot-table tbody tr:nth-child(odd) {
  background: #111;
}

.mot-table td {
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.8);
  vertical-align: top;
  line-height: 1.5;
}

.mot-table td.mot-class {
  color: #39ff14;
  font-weight: 700;
  white-space: nowrap;
}

/* ── CTA section ── */
.mot-cta {
  padding: 0px 60px 80px;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

.mot-cta-inner {
  position: relative;
}

.mot-cta-lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  text-align: center;
}

.mot-cta-rule {
  border: none;
  margin: 0 0 28px;
}

.mot-cta-heading {

  color: #fff;
  margin-bottom: 20px;
}

.mot-cta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mot-cta-list li {
  padding-left: 18px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.mot-cta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.mot-cta-list li strong {
  color: #fff;
}

.mot-cta-bottom {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.mot-cta-bottom strong {
  color: #fff;
}

.mot-cta-tagline {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 32px;
}

.mot-cta-chev {
  position: absolute;
  bottom: -120px;
  left: 0;
}

.mot-cta-inner .contact-btn {
  margin: 0px auto;
  display: block;
  max-width: 154px;
}

@media (max-width: 560px) {
  .mot-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── MOT page responsive ── */
@media (max-width: 900px) {
  .mot-hero-inner {
    grid-template-columns: 1fr;
  }

  .mot-body-inner {
    grid-template-columns: 1fr;
  }

  .mot-body-hex {
    display: none;
  }
}

@media (max-width: 560px) {

  .mot-hero,
  .mot-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mot-table-wrap {
    /* nudge the wrapper edge-to-edge so the scroll shadow is visible */
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 20px;
    padding-right: 20px;
    /* fade hint at right edge */
    background:
      linear-gradient(to right, transparent 85%, rgba(0, 0, 0, 0.6)) right center / 40px 100% no-repeat;
  }

  .mot-table {
    font-size: 0.76rem;
  }

  .mot-table thead th,
  .mot-table td {
    padding: 7px 10px;
  }
}

/* ════════════════════════════════════════
   DPF CLEANING PAGE
════════════════════════════════════════ */

.dpf-page {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.dpf-wrap {
  padding: 40px 60px 80px;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

.dpf-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.dpf-heading {
  font-size: clamp(1.8rem, 3vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 60px;
  color: #fff;
}

.dpf-heading .green {
  color: #39ff14;
}

.dpf-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.dpf-col .contact-btn {
  margin-top: 40px;
}

.dpf-col-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.dpf-col-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.dpf-col-text strong {
  color: #fff;
}

.dpf-content {
  width: calc(100% - 190px);
}

/* ── Hex group (right side) — mirrors mot page wwd-right ── */
.dpf-page .wwd-right {
  right: -10px;
  top: 10px;
  width: 350px;
  padding-top: 0px;
  overflow: visible;
}

.dpf-page .wwd-right .wwd-deco-hex.wwd-deco-img-hex {
  position: relative;
  z-index: 10;
  left: 140px;
}

.dpf-page .dpf-tc-logo {
  width: 150px;
  position: absolute;
  z-index: 9;
  left: -50px;
}

.dpf-page .wwd-deco-hex {
  --dw: 190px;
}

.dpf-page .wwd-right .wwd-deco {
  left: 0px;
  top: 0px;
}

.dpf-page .wwd-right .wwd-deco-dark-hex {
  z-index: 2;
  position: relative;
  left: 90px;
  top: 0px;
}

.dpf-page .wwd-right .wwd-deco-hex.wwd-deco-lines-hex {
  position: absolute;
  bottom: -10px;
  left: 60px;
}

.dpf-page .wwd-right .wwd-deco-trap--sm {
  width: 30px;
  height: 20px;
  left: unset;
  bottom: -40px;
  right: -10px;
}

.dpf-page .wwd-right .wwd-deco-hexes .sm-deco-hex {
  --dw: 150px;
  left: 40px;
  z-index: 8;
  bottom: 15px;
}

.dpf-page .sm-deco-hex .wwd-deco-lines-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background:
    repeating-linear-gradient(120deg,
      transparent 0,
      transparent 18px,
      rgba(57, 255, 20, 0.3) 18px,
      rgba(57, 255, 20, 0.3) 19px),
    #1C1C1E;
}

/* ── DPF page responsive ── */
@media (min-width: 900px) {
  .hero {
    height: calc(100vh - 72px);
    max-height: 860px;
  }

  .hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .dpf-inner {
    grid-template-columns: 1fr;
  }

  .dpf-page .wwd-deco {
    display: block;
  }

  .dpf-content {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .dpf-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dpf-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════ */

/* ── 768px — Tablet / mobile ── */
@media (max-width: 768px) {

  .wwd-deco {
    top: -11px;
    left: -105px;
    z-index: 0;
  }

  .wwd-list {
    margin-bottom: 0px;
  }

  .about-us .wwd-left {
    padding-bottom: 0px;
  }

  /* Header */
  .site-header {
    position: relative;
  }

  .header-inner {
    gap: 10px;
  }

  .nav-hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    z-index: 100;
    border-top: 1px solid #222;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .main-nav a {
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid #1a1a1a;
    white-space: normal;
  }

  .main-nav a.active {
    color: #39ff14;
  }

  .main-nav a.active::after {
    display: none;
  }

  /* Open state via checkbox */
  .nav-toggle:checked~.header-inner .main-nav {
    display: flex;
  }

  .nav-toggle:checked~.header-inner .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked~.header-inner .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle:checked~.header-inner .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* What We Do — fix absolute-positioned right panel */
  .wwd-inner {
    grid-template-columns: 1fr;
  }

  .what-we-do .wwd-right {
    order: -1;
  }

  .what-we-do .wwd-left {
    order: 1;
  }

  .wwd-left {
    padding: 40px 20px 24px;
  }

  .wwd-right {
    position: relative;
    right: auto;
    top: auto;
    padding: 0 20px 40px;
    overflow: visible;
    align-items: center;
    justify-content: center;
  }

  .what-we-do .wwd-right {
    top: 50px;
  }

  .wwd-bg-hex-1,
  .wwd-bg-hex-2,
  .hero-accent--bl-what {
    display: none;
  }

  .wwd-bottom {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px 40px;
  }

  .about-us .wwd-right {
    display: none;
  }

  /* Gallery banner text */
  .banner-text .label,
  .banner-text .title {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }

  /* Footer */
  .footer-top-btn {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Social icons — hide from header, show inside nav dropdown */
  .social-icons {
    display: none;
  }

  .nav-social {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid #222;
  }

  .nav-social .social-btn {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
  }

  .nav-social .social-btn img {
    width: 20px;
    height: 20px;
  }

  .nav-social .social-btn[aria-label="Facebook"] img {
    width: 26px;
    height: 26px;
  }
}

/* ── 560px — Small phones ── */
@media (max-width: 560px) {

  /* Social icons — shrink for header space */
  .social-btn {
    width: 30px;
    height: 30px;
  }

  .social-btn img {
    width: 17px;
    height: 17px;
  }

  .social-btn[aria-label="Facebook"] img {
    width: 22px;
    height: 22px;
  }

  /* Hero */
  .hero .container {
    padding: 32px 20px 28px;
  }

  .hero-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-content: unset;
  }

  .hero-citem span:not(.ic) {
    font-size: 0.7rem;
    word-break: break-all;
  }

  /* What We Do */
  .wwd-heading {
    font-size: clamp(1.8rem, 3vw, 4.5rem);
  }

  /* Footer */
  .site-footer {
    padding: 40px 20px 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ── 360px — Very small phones ── */
@media (max-width: 360px) {
  :root {
    --w: 75px;
    --b: 3px;
  }

  .logo img {
    height: 42px;
  }
}

/* ════════════════════════════════════════
   FAQ HUB PAGE
════════════════════════════════════════ */

.faq-page {
  background: #000;
  color: #fff;
  overflow-x: clip;
}

.faq-wrap {
  padding: 48px 60px 100px;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

/* Heading */
.faq-heading {
  font-size: clamp(1.8rem, 3vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  line-height: 1;
  color: #fff;
}

.faq-heading .green {
  color: #39ff14;
}

/* Two-column layout */
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Sidebar ── */
.faq-sidebar {
  position: sticky;
  top: 88px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  margin-bottom: 32px;
}

.faq-search {
  width: 100%;
  background: #303030;
  border: none;
  border-radius: 0px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 10px 14px 10px 44px;
  outline: none;
  transition: border-color 0.2s;
}

.faq-search::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.faq-search:focus {
  border-color: #39ff14;
}

.faq-search-btn {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  padding: 0;
}

.faq-search-btn svg {
  width: 17px;
  height: 17px;
}

/* Category label */
.faq-cat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Category list */
.faq-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.faq-cat-btn:hover {
  color: #fff;
  background: rgba(57, 255, 20, 0.08);
}

.faq-cat-btn.active {
  background: rgba(57, 255, 20, 0.4);
  color: #39ff14;
  font-weight: 700;
}

.faq-cat-btn.active .faq-cat-dot {
  background: #39ff14;
}

.faq-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* ── FAQ accordion ── */
.faq-content {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question span:first-child::before {
  content: 'Q: ';
  font-weight: 700;
}

.faq-question:hover {
  color: #fff;
}

/* Open state — question turns green */
.faq-item.open .faq-question {
  color: #39ff14;
  font-weight: 600;
}

/* Arrow icon — single triangle-in-circle, rotated per state */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transform: rotate(180deg);
  /* closed = triangle points up */
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

/* Open state: green filled circle, black triangle, pointing down */
.faq-item.open .faq-icon {
  border-color: #39ff14;
  color: #39ff14;
  transform: rotate(0deg);
}

/* Answer panel */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.faq-answer a {
  color: #39ff14;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer ul {
  list-style: none;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer ul li {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 18px;
  position: relative;
}

.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #39ff14;
}

.faq-answer ul+p {
  margin-top: 10px;
}

/* No results message */
.faq-no-results {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 24px 0;
  text-align: center;
}

/* Bottom-left decorative chevrons */
.faq-accent {
  position: absolute;
  bottom: -20px;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

/* ── FAQ responsive ── */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-cat-list {
    flex-direction: column;
    gap: 4px;
  }

  .faq-cat-btn {
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .faq-wrap {
    padding: 36px 20px 80px;
  }

  .faq-question {
    font-size: 0.88rem;
  }
}

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */

.contact-page {
  background: #000;
  color: #fff;
  overflow-x: clip;
}

.contact-wrap {
  padding: 48px 60px 100px;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
}

/* Heading */
.contact-heading {
  font-size: clamp(1.8rem, 3vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 48px;
  color: #fff;
}

.contact-green {
  color: #39ff14;
}

/* Three-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Left: info ── */
.contact-tagline {
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 12px;
}

/* Google Review */
.contact-review {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.contact-review .contact-body {
  margin-bottom: 0;
}

.contact-review-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-review-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  max-width: 180px;
  transition: opacity 0.2s;
}

.contact-review-btn:hover {
  opacity: 0.88;
}

.contact-google-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Contact details list */
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #39ff14;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  fill: red;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.contact-detail-value {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.55;
}

.contact-detail-value:hover {
  color: #39ff14;
}

/* ── Centre: form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* All inputs and textarea directly inside form */
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1.5px solid #39ff14;
  border-radius: 0px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 9px 16px;
  outline: none;
  width: 100%;
  transition: background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(57, 255, 20, 0.04);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Select */
.cf-select-wrap {
  position: relative;
}

.cf-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1.5px solid #39ff14;
  border-radius: 0px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 13px 40px 13px 16px;
  outline: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}

.cf-select-wrap select:focus {
  background: rgba(57, 255, 20, 0.04);
  color: #fff;
}

.cf-select-wrap select option {
  background: #111;
  color: #fff;
}

.cf-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
}

.cf-select-arrow svg {
  width: 14px;
  height: 14px;
}

/* Submit button */
.cf-submit {
  width: 100%;
  max-width: 100px;
  background: #39ff14;
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
}

.cf-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Form alerts */
.cf-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cf-alert ul {
  margin: 0;
  padding-left: 18px;
}

.cf-alert--success {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid #39ff14;
  color: #39ff14;
}

.cf-alert--error {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.5);
  color: #ff6b6b;
}

/* ── Right: hex cluster ── */
.contact-hex-col {
  position: relative;
  width: 240px;
  align-self: center;
  top: -120px;
  left: 100px;
}

.contact-hex-group-1 {
  position: relative;
  height: 320px;
  left: 40px;
}

.contact-hex-group-1 .wwd-deco-hex {
  --dw: 180px;
  position: absolute;
}

.contact-hex-group-1 .contact-hex-dark-1 {
  top: 50px;
  z-index: 1;
}

.contact-hex-group-1 .wwd-deco-img-hex {
  z-index: 5;
}

.contact-hex-group-1 .contact-hex-lines-1 {
  left: 0px;
  z-index: 3;
  --dw: 130px;
}

.contact-hex-group-1 .contact-hex-lines-2 {
  right: 0px;
  top: 50px;
  --dw: 120px;
}

.contact-hex-group-2 {
  position: relative;
  top: -110px;
}

.contact-hex-group-2 .contact-hex-lines-1 {
  left: 0px;
  top: 70px;
}

.contact-hex-group-2 .contact-hex-lines-2 {
  left: 160px;
  top: 10px;
  z-index: 2;
}


.contact-hex-group-2 .contact-hex-img-1 {
  z-index: 4;
}

.contact-hex-img-1 {
  top: 0;
  left: 0;
}

.contact-hex-lines-1 {
  top: 80px;
  left: 110px;
}

.contact-hex-img-2 {
  top: 200px;
  left: 20px;
}

.contact-hex-group-1 .contact-hex-dark-1 {
  top: 55px;
  left: -30px;
  --dw: 160px;
}

.contact-hex-group-2 .contact-hex-dark-1 {
  top: 20px;
  left: 110px;
  --dw: 180px;
  position: absolute;
}

/* Decorative chevrons */
.contact-accent {
  position: absolute;
  bottom: -20px;
  left: 60px;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

/* ── Contact responsive ── */
@media (max-width: 1100px) {
  .contact-hex-col {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (max-width: 760px) {
  .about-us .wwd-bottom .wwd-deco {
    top: 0px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-wrap {
    padding: 36px 20px 80px;
  }

  .cf-row--2 {
    grid-template-columns: 1fr;
  }

  .cf-submit {
    width: 100%;
    text-align: center;
  }
}

/* ── Policy pages (privacy, cookie) ── */
.policy-page {
  padding-top: 48px;
  padding-bottom: 100px;
}

/* ════════════════════════════════════════
   COOKIE CONSENT BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 2px solid #39ff14;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #39ff14;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: #39ff14;
  color: #000;
  border-color: #39ff14;
}

.cookie-btn--accept:hover {
  background: #2dcc0f;
  border-color: #2dcc0f;
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}