/* =========================================================
   VLOERPROFIJT — DESIGN SYSTEM
   ========================================================= */

:root {
  /* Brand colors — black + Vloerprofijt-green */
  --color-primary: #111111;
  --color-primary-dark: #000000;
  --color-primary-light: #2A2A2A;
  --color-accent: #7CB342;
  --color-accent-dark: #5D8C2E;
  --color-accent-light: #9CCC65;

  /* Neutrals */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6F2;
  --color-bg-dark: #111111;
  --color-text: #1A1A1A;
  --color-text-light: #595959;
  --color-text-muted: #8C8C8C;
  --color-border: #E5E5E5;

  /* WhatsApp */
  --color-whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --section-py-desktop: 96px;
  --section-py-tablet: 72px;
  --section-py-mobile: 48px;

  /* Animation */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --duration: 1400ms;
  --stagger: 220ms;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .14);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, .18);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* Focus — clean, accessible, no ugly default rings */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 4px; }
.nav__logo:focus, .nav__logo:focus-visible { outline: none; box-shadow: none; }
/* Suppress stray text carets on non-editable focused elements (links, buttons, divs) */
a, button, div, span, section, header, footer, nav, h1, h2, h3, h4, h5, h6, ul, li, img { caret-color: transparent; }
input, textarea, select, [contenteditable] { caret-color: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p  { color: var(--color-text-light); }

/* =========================================================
   CONTAINER & SECTION
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py-desktop) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.75); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading p { margin-top: 16px; font-size: 18px; }
.section-heading--left { margin-left: 0; text-align: left; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--secondary:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--color-primary);
  color: #fff;
}
.btn--dark:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--lg { padding: 20px 40px; font-size: 16px; min-height: 56px; }
.btn--block { width: 100%; }

/* =========================================================
   NAVIGATION (sticky)
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 12px 0;
  border-bottom-color: rgba(0,0,0,.08);
  box-shadow: 0 2px 30px rgba(0,0,0,.04);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img, .nav__logo svg { height: 56px; width: auto; display: block; }
@media (max-width: 768px) {
  .nav__logo img, .nav__logo svg { height: 44px; }
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  position: relative;
  transition: color .25s ease;
}
.nav--scrolled .nav__menu a { color: var(--color-primary); }
.nav__menu a:hover { color: var(--color-accent); }
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width .3s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }
.nav__menu .has-dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  min-width: 220px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-primary) !important;
  font-size: 14px;
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a:hover { background: var(--color-bg-alt); }

.nav__cta { flex-shrink: 0; }
.nav--scrolled .nav__cta .btn--primary { box-shadow: var(--shadow-sm); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s, background .25s;
}
.nav--scrolled .nav__toggle span { background: var(--color-primary); }
.nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu--mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    padding-top: 80px;
  }
  .nav__menu--mobile a {
    color: #fff;
    font-size: 22px;
  }
  .nav__menu--mobile .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 0;
    text-align: center;
  }
  .nav__menu--mobile .nav__dropdown a { color: rgba(255,255,255,.7) !important; font-size: 16px; }
  .nav__menu--mobile .nav__cta { display: block; margin-top: 8px; }
}

/* =========================================================
   HERO SLIDER (homepage)
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide--active { opacity: 1; }
.hero__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 8s ease-out;
}
.hero__slide--active .hero__slide-img { transform: scale(1.12); }
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero__inner {
  max-width: 760px;
  color: #fff;
}
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(124,179,66,.18);
  border: 1px solid rgba(124,179,66,.5);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft var(--duration) var(--ease) 200ms forwards;
}
.hero__title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft var(--duration) var(--ease) 380ms forwards;
}
.hero__title em { color: var(--color-accent); font-style: normal; }
.hero__subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255,255,255,.92);
  margin-bottom: 36px;
  max-width: 580px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft var(--duration) var(--ease) 580ms forwards;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft var(--duration) var(--ease) 760ms forwards;
}

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 40px; height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero__dot--active { background: var(--color-accent); transform: scaleY(2); }

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* =========================================================
   SUBPAGE HERO (50vh banner)
   ========================================================= */
.sub-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.sub-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  animation: kenBurns 12s ease-out forwards;
}
.sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%);
}
.sub-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  text-align: center;
}
.sub-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.sub-hero__breadcrumb a:hover { color: var(--color-accent); }
.sub-hero__breadcrumb span.sep { color: rgba(255,255,255,.4); }
.sub-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 14px;
}
.sub-hero p {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 660px;
  margin: 0 auto;
}

@keyframes kenBurns {
  to { transform: scale(1.12); }
}

/* =========================================================
   USP CHECKLIST
   ========================================================= */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
}
.usp-list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  margin-top: 1px;
}
.usp-list--light li { color: rgba(255,255,255,.92); }
.usp-list--compact { margin: 20px 0 28px; }
.usp-list--compact li { font-size: 15px; padding: 6px 0; }
.usp-list--compact li svg { width: 18px; height: 18px; }

/* =========================================================
   OVER ONS INTRO (two-col)
   ========================================================= */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro__left h2 { margin-bottom: 24px; }
.intro__left p { font-size: 17px; margin-bottom: 16px; }
.intro__left .btn { margin-top: 24px; }
@media (max-width: 880px) {
  .intro { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   WHY US — 6 grid with icons
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(124,179,66,.12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 15px; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; gap: 20px; } }
@media (min-width: 881px) and (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   EXPERTISE TICKER
   ========================================================= */
.ticker {
  background: var(--color-primary);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 60s linear infinite;
  gap: 56px;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.ticker__item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: rgba(255,255,255,.78);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.ticker__item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { font-size: 15px; flex-grow: 1; margin-bottom: 18px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-accent-dark);
  letter-spacing: .02em;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   WERKWIJZE (process steps)
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent) 20%, var(--color-accent) 80%, transparent);
  opacity: .4;
  z-index: 0;
}
.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
}
.process__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-accent);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-accent-dark);
  box-shadow: 0 0 0 6px rgba(124,179,66,.1);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.process__step:hover .process__num,
.process__num:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow:
    0 0 0 8px rgba(124,179,66,.18),
    0 0 30px 6px rgba(124,179,66,.55),
    0 0 60px 12px rgba(124,179,66,.35);
}
.process__step:hover h3 { color: var(--color-accent-dark); }
.process__step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  transition: color .3s ease;
}
.process__step p { font-size: 14px; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; gap: 28px; }
  .process::before { display: none; }
}

/* =========================================================
   PROJECT CARDS
   ========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-primary);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .4s ease;
}
.project-card:hover img { transform: scale(1.06); opacity: .9; }
.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
  color: #fff;
}
.project-card h3 { color: #fff; font-size: 19px; margin-bottom: 4px; }
.project-card__loc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: .02em;
}
@media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TIPS
   ========================================================= */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tip-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tip-card__img { aspect-ratio: 8 / 5; overflow: hidden; }
.tip-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tip-card:hover .tip-card__img img { transform: scale(1.06); }
.tip-card__body { padding: 24px; }
.tip-card__meta {
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}
.tip-card h3 { font-size: 19px; margin-bottom: 8px; }
.tip-card p { font-size: 14px; margin-bottom: 14px; }
.tip-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
}
@media (max-width: 980px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tips-grid { grid-template-columns: 1fr; } }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-card__stars svg {
  width: 18px; height: 18px;
  fill: var(--color-accent);
}
.review-card__quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.review-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-primary); }
.review-card__loc { font-size: 13px; color: var(--color-text-light); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FORM SECTION
   ========================================================= */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.form-section__usp h2 { margin-bottom: 16px; }
.form-section__usp p { font-size: 17px; margin-bottom: 28px; }
.form-section__usp .usp-list { margin-bottom: 28px; }

.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--color-text-light); margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  background: var(--color-bg-alt);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124,179,66,.15);
}
textarea.form-control { min-height: 110px; resize: vertical; font-family: var(--font-body); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text-light); margin-bottom: 20px; }
.form-check input { margin-top: 3px; }
.form-check a { color: var(--color-accent-dark); text-decoration: underline; }
@media (max-width: 880px) {
  .form-section { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: grid;
  place-items: center;
  color: var(--color-accent-dark);
  transition: transform .4s var(--ease), background .25s;
}
.faq-item--open .faq-item__icon { transform: rotate(45deg); background: var(--color-accent); color: #fff; }
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item__a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =========================================================
   STATS BAND — card-style with icons & accent rails
   ========================================================= */
.stats {
  background: var(--color-primary);
  padding: 88px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(124,179,66,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(124,179,66,.08) 0%, transparent 50%);
  pointer-events: none;
}
.stats__heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.stats__heading .section-eyebrow {
  color: var(--color-accent-light);
  margin-bottom: 16px;
  display: inline-block;
}
.stats__heading h2 { color: #fff; font-size: clamp(28px, 3vw, 42px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(124,179,66,.06);
  border-color: rgba(124,179,66,.4);
  box-shadow: 0 20px 60px rgba(124,179,66,.18);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,179,66,.15);
  border: 1px solid rgba(124,179,66,.35);
  border-radius: 14px;
  color: var(--color-accent);
  transition: background .3s ease, transform .3s ease;
}
.stat-card__icon svg {
  width: 26px; height: 26px;
  stroke-width: 2;
}
.stat-card:hover .stat-card__icon {
  background: rgba(124,179,66,.25);
  transform: scale(1.05) rotate(-3deg);
}
.stat__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 46px);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat__num em {
  color: var(--color-accent);
  font-style: normal;
}
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: .02em;
}
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { padding: 64px 0; }
}
@media (max-width: 480px) {
  .stat-card { padding: 28px 18px 24px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__logo { margin-bottom: 18px; }
.footer__logo img, .footer__logo svg { height: 56px; width: auto; display: block; }
.footer__about { font-size: 14px; max-width: 320px; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; transition: color .25s; }
.footer__col a:hover { color: var(--color-accent); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__contact a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.footer__bottom a:hover { color: var(--color-accent); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA BAND (subpages)
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,179,66,.15) 0%, transparent 70%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 16px; }
@media (max-width: 880px) {
  .cta-band__inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   SUBPAGE CONTENT — two-col alternating
   ========================================================= */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
.content-2col:last-child { margin-bottom: 0; }
.content-2col--reverse .content-2col__media { order: -1; }
.content-2col__body h2 { margin-bottom: 20px; }
.content-2col__body p { font-size: 16px; margin-bottom: 14px; }
.content-2col__body .btn { margin-top: 20px; }
.content-2col__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
@media (max-width: 880px) {
  .content-2col { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .content-2col--reverse .content-2col__media { order: 0; }
}

/* =========================================================
   PROJECT GALLERY GRID
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery img:hover { transform: scale(1.02); }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }

.project-meta {
  background: var(--color-bg-alt);
  padding: 32px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.project-meta__item h4 {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
  font-weight: 600;
}
.project-meta__item p { color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
@media (max-width: 720px) { .project-meta { grid-template-columns: 1fr; gap: 18px; } }

/* =========================================================
   TIP ARTICLE
   ========================================================= */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article p { font-size: 17px; line-height: 1.75; margin-bottom: 20px; color: var(--color-text); }
.article h2 { font-size: 30px; margin: 48px 0 18px; }
.article h3 { font-size: 22px; margin: 32px 0 12px; }
.article img {
  width: 100%;
  border-radius: 14px;
  margin: 32px 0;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.article ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 24px;
}
.article ul li { font-size: 17px; margin-bottom: 8px; color: var(--color-text); }
.article-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--color-text-light);
}

/* =========================================================
   FEATURE GRID (subpage)
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.feature-item {
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}
.feature-item h4 { font-size: 16px; margin-bottom: 6px; color: var(--color-primary); }
.feature-item p { font-size: 14px; }
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.contact-info__item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--color-accent-dark);
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { font-size: 15px; color: var(--color-text-light); }
.contact-info__item a:hover { color: var(--color-accent-dark); }
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   TEAM (over-ons)
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.value-card {
  padding: 32px 24px;
  background: var(--color-bg-alt);
  border-radius: 14px;
  text-align: center;
}
.value-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--color-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-accent);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--color-border);
}
.timeline__item {
  position: relative;
  padding-bottom: 32px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline__year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent-dark);
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: .03em;
}
.timeline__item h4 { font-size: 18px; margin-bottom: 6px; }
.timeline__item p { font-size: 15px; }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 60px; height: 60px;
}
.wa-float__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37, 211, 102, .55); }
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-whatsapp);
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float__tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.wa-float__tip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-primary);
}
.wa-float:hover .wa-float__tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 768px) {
  .wa-float, .wa-float__btn { width: 56px; height: 56px; }
  .wa-float__tip { display: none; }
}

/* =========================================================
   LANGUAGE SWITCHER (bottom-left)
   ========================================================= */
.lang-switch {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9998;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lang-switch__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.lang-switch__flag { font-size: 16px; line-height: 1; }
.lang-switch__menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.lang-switch--open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  text-align: left;
}
.lang-switch__option:hover { background: var(--color-bg-alt); }
.lang-switch__option--active { background: var(--color-bg-alt); color: var(--color-accent-dark); }
@media (max-width: 480px) {
  .lang-switch { bottom: 16px; left: 16px; }
  .lang-switch__btn { padding: 8px 12px; font-size: 12px; }
}
/* RTL hooks */
html[dir="rtl"] .hero__title, html[dir="rtl"] .hero__subtitle, html[dir="rtl"] .hero__eyebrow, html[dir="rtl"] .hero__ctas {
  transform: translateX(80px);
}
html[dir="rtl"] .lang-switch { left: auto; right: 24px; }
html[dir="rtl"] .wa-float { right: auto; left: 24px; }

/* =========================================================
   ANIMATIONS — IntersectionObserver
   ========================================================= */
.anim-text {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.anim-text.in-view { opacity: 1; transform: translateX(0); }

.anim-img {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.anim-img.in-view { opacity: 1; transform: translateX(0); }

.anim-card {
  opacity: 0;
  transform: translateY(40px) scale(.96);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.anim-card.in-view { opacity: 1; transform: translateY(0) scale(1); }

.anim-fade {
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.anim-fade.in-view { opacity: 1; }

.anim-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.anim-left.in-view { opacity: 1; transform: translateX(0); }

.anim-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.anim-right.in-view { opacity: 1; transform: translateX(0); }

/* =========================================================
   MOBILE ADJUSTMENTS
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: var(--section-py-mobile) 0; }
  .container { padding: 0 16px; }
  .section-heading { margin-bottom: 36px; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section { padding: var(--section-py-tablet) 0; }
}
