/* ════════════════════════════
   ROOT & RESET
════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --mint: #F1F3EC;
  --dark: #191919;
  --green: #5B7A45;
  --green-d: #486038;
  --green-xl: #edf1e6;
  --muted: #606860;
  --border: rgba(91, 122, 69, 0.2);
  --green-10: rgba(91, 122, 69, 0.1);
  --green-15: rgba(91, 122, 69, 0.15);
  --green-20: rgba(91, 122, 69, 0.2);
  --green-25: rgba(91, 122, 69, 0.25);
  --green-30: rgba(91, 122, 69, 0.3);
  --white-05: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-45: rgba(255, 255, 255, 0.45);
  --dark-90: rgba(25, 25, 25, 0.9);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 38px;
}

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

a {
  text-decoration: none;
}

button {
  font-family: 'Instrument Sans', sans-serif;
}

/* ════════════════════════════
   SHARED COMPONENTS
════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 700;
}

.section-sub {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5B7A45;
  color: var(--white);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-p:hover {
  background: #486038;
  transform: translateY(-1px);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1.5px solid rgba(25, 25, 25, 0.22);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ════════════════════════════
   PROMO BAR
════════════════════════════ */
.promo-bar {
  background: var(--green);
  color: var(--white);
  height: 38px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  z-index: 1001;
}

.promo-track {
  display: flex;
  animation: ticker 34s linear infinite;
  white-space: nowrap;
  height: 100%;
  align-items: center;
}

.promo-bar:hover .promo-track {
  animation-play-state: paused;
}

.promo-track span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-track svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  stroke: var(--white);
}

.promo-track strong {
  font-weight: 700;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════
   HEADER & NAV
════════════════════════════ */
header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  transition: background 0.35s, box-shadow 0.35s;
}

header.scrolled {
  background: rgba(25, 25, 25, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--green-25);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: none;
  background: none;
}

.logo-i {
  color: var(--green);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 9px 22px;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-d);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.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); }

/* ════════════════════════════
   PAGES
════════════════════════════ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ════════════════════════════
   HOME — HERO
════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-badkamer.jpg');
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(25, 25, 25, 0.9) 48%, rgba(25, 25, 25, 0.38) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 104px 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-15);
  border: 1px solid var(--green-30);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
  font-weight: 700;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.btn-ghost:hover {
  color: var(--white);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--green);
}

.stat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.hero-award {
  background: rgba(91, 122, 69, 0.12);
  border: 1px solid var(--green-25);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.award-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.award-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.award-text strong {
  color: var(--white);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

/* ════════════════════════════
   LOGO IMAGE
════════════════════════════ */
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

/* ════════════════════════════
   HOME — DIENSTEN PREVIEW
════════════════════════════ */
.home-diensten {
  background: var(--white);
}

.home-diensten .container {
  max-width: 1400px;
  padding: 0 5rem;
}

.hd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-20);
}

.hd-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hd-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}

.hd-card:hover {
  background: var(--mint);
}

.hd-card:hover::after {
  transform: scaleY(1);
}

.hd-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.hd-icon {
  width: 44px;
  height: 44px;
  background: var(--green-xl);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hd-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
}

.hd-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.hd-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.hd-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5rem;
}

/* Image-based diensten grid (homepage) */
.hd-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hd-img-card {
  position: relative;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.hd-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}

.hd-img-card:hover img {
  transform: scale(1.06);
}

.hd-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  transition: background 0.3s;
}

.hd-img-card:hover .hd-img-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.4) 65%, transparent 100%);
}

.hd-img-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.hd-img-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
}

.hd-img-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hd-img-content p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.hd-img-link {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.hd-img-card:hover .hd-img-link {
  color: #2fe076;
}

/* ════════════════════════════
   HOME — PORTFOLIO PREVIEW
════════════════════════════ */
.home-portfolio {
  background: var(--dark);
  padding: 6rem 4rem;
}

.home-portfolio .section-title {
  color: var(--white);
}

.home-portfolio .section-sub {
  color: rgba(255, 255, 255, 0.45);
}

.hp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
}

.hp-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.hp-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
}

.hp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}

.hp-item:hover img {
  transform: scale(1.07);
}

.hp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 25, 25, 0.88) 0%, transparent 52%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.hp-item:hover .hp-overlay {
  opacity: 1;
}

.hp-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  text-transform: uppercase;
  border-radius: 4px;
}

.hp-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 700;
}

.hp-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════
   HOME — REVIEWS
════════════════════════════ */
.home-reviews {
  background: var(--white);
}

.rev-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rev-header .section-sub {
  max-width: 480px;
  margin: 0 auto;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rev-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 2.25rem;
  border: 1px solid rgba(91, 122, 69, 0.1);
}

.rev-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  color: var(--green);
  line-height: 0.7;
  opacity: 0.35;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.rev-text {
  font-size: 14.5px;
  color: #2a2a2a;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.star {
  width: 13px;
  height: 13px;
  fill: var(--green);
}

.rev-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.rev-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.rev-loc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ════════════════════════════
   HOME — USP
════════════════════════════ */
.home-usp {
  background: var(--mint);
}

.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.usp-img-wrap {
  position: relative;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
}

.usp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-float {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--dark);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 150px;
}

.usp-float .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.usp-float .small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.usp-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.usp-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.usp-tick {
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.usp-tick svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  fill: none;
  stroke-width: 3;
}

.usp-item-title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.usp-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ════════════════════════════
   HOME — CTA
════════════════════════════ */
.home-cta {
  background: var(--dark);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid var(--green-10);
  right: -200px;
  top: -200px;
}

.home-cta::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(91, 122, 69, 0.05);
  right: -50px;
  bottom: -50px;
}

.cta-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.cta-title em {
  font-style: italic;
  color: var(--green);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.85;
  margin-bottom: 3rem;
  font-weight: 300;
}

.cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: var(--white);
  padding: 14px 22px;
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
  outline: none;
  min-width: 0;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cta-form button {
  background: var(--green);
  border: none;
  color: var(--white);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  white-space: nowrap;
}

.cta-form button:hover {
  background: var(--green-d);
}

.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

.cta-note strong {
  color: rgba(255, 255, 255, 0.5);
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.cta-contact-item a:hover {
  color: var(--green);
}

.cta-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* ════════════════════════════
   PAGE HERO (subpages)
════════════════════════════ */
.ph-hero {
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.ph-hero:hover .ph-bg {
  transform: scale(1.03);
}

.ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.6);
}

.ph-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 104px 4rem 4.5rem;
}

.ph-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.ph-breadcrumb strong {
  color: rgba(255, 255, 255, 0.7);
}

.ph-breadcrumb button {
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.ph-inner h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 780px;
  overflow-wrap: break-word;
}

.ph-inner h1 em {
  font-style: italic;
  color: var(--white);
  font-weight: 700;
}

.ph-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white-10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.ph-pill.green {
  background: var(--white-10);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 500;
}

.ph-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.25rem;
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

/* ════════════════════════════
   DIENSTEN PAGE
════════════════════════════ */
.do-section {
  background: var(--white);
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.do-card {
  background: var(--white);
  border: 1.5px solid rgba(91, 122, 69, 0.12);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.do-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(91, 122, 69, 0.12);
}

.do-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.do-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}

.do-card:hover .do-card-img img {
  transform: scale(1.06);
}

.do-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 25, 25, 0.45) 0%, transparent 60%);
}

.do-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.do-card-nr {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.do-card-icon {
  width: 42px;
  height: 42px;
  background: var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.do-card-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
}

.do-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.do-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.do-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(91, 122, 69, 0.1);
}

.do-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.do-card:hover .do-card-arrow {
  background: var(--green-d);
  transform: translateX(3px);
}

.do-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

/* Partners */
.partners-section {
  background: var(--mint);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.partner-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.partner-card span {
  font-size: 12px;
  color: var(--muted);
}

.diensten-cta {
  background: var(--white);
  padding: 5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(9,171,67,0.1);
}

.diensten-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* ════════════════════════════
   LIGHTBOX
════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.85);
  backdrop-filter: blur(8px);
}

.lb-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lb-img {
  position: relative;
  min-height: 400px;
}

.lb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.lb-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--green);
}

.lb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.lb-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.lb-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex: 1;
}

.lb-items li {
  font-size: 13.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(91, 122, 69, 0.07);
}

.lb-items li:last-child {
  border-bottom: none;
}

.lb-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--white);
  fill: none;
  stroke-width: 3;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(25, 25, 25, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.lb-close:hover {
  background: var(--dark);
}

.lb-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ════════════════════════════
   PORTFOLIO PAGE
════════════════════════════ */
.port-filter {
  padding: 2rem 4rem;
  background: var(--white);
  border-bottom: 1px solid rgba(91, 122, 69, 0.1);
  position: sticky;
  top: 104px;
  z-index: 10;
}

.port-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(25, 25, 25, 0.15);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0.02em;
}

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

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

.port-grid-section {
  padding: 3rem 4rem 6rem;
}

.port-grid {
  max-width: 1200px;
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}

.port-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.port-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s;
}

.port-item:hover img {
  transform: scale(1.05);
}

.port-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 25, 25, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  border-radius: 12px;
}

.port-item:hover .port-caption {
  opacity: 1;
}

.port-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  text-transform: uppercase;
  border-radius: 4px;
}

.port-caption h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 700;
}

.port-caption p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.contact-body {
  padding: 4rem 4rem 6rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--green);
}

.contact-info > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
}

.contact-row-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-row-val {
  font-size: 14.5px;
  color: var(--dark);
  font-weight: 500;
}

.contact-row-val a {
  color: var(--dark);
  transition: color 0.2s;
}

.contact-row-val a:hover {
  color: var(--green);
}

.openings {
  background: var(--mint);
  border-radius: 14px;
  padding: 1.5rem 2rem;
}

.openings h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.opening-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(91, 122, 69, 0.1);
}

.opening-row:last-child {
  border-bottom: none;
}

.opening-row.today {
  color: var(--green);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--mint);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1.5px solid rgba(91, 122, 69, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #e53e3e;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23606860' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--white);
}

.form-error-msg {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 2px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(91, 122, 69, 0.08);
  border-radius: 12px;
  border: 1px solid var(--green-20);
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--dark);
  padding: 5rem 4rem 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 260px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.5rem;
  background: var(--green-10);
  border: 1px solid rgba(91, 122, 69, 0.18);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11.5px;
  color: var(--green);
  font-weight: 500;
}

.footer-pill svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
}

.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.footer-col button,
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 0.65rem;
  font-size: 13.5px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: 'Instrument Sans', sans-serif;
}

.footer-col button:hover,
.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════ */
@media (max-width: 1024px) {
  header {
    padding: 0 2rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .hero-inner {
    padding: 104px 2rem 4rem;
    gap: 3rem;
  }

  .home-diensten .container {
    padding: 0;
  }

  .hd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-img-card {
    height: 320px;
  }

  .hp-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .hp-item:first-child {
    grid-row: 1 / 3;
  }

  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-inner {
    gap: 3rem;
  }

  .lb-panel {
    grid-template-columns: 1fr;
  }

  .lb-img {
    min-height: 240px;
  }

  .port-grid {
    columns: 2;
  }
}

/* ════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════ */
@media (max-width: 768px) {
  header {
    padding: 0 1.5rem;
  }

  .ph-inner h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
  }

  .ph-meta {
    display: none;
  }

  nav {
    display: none;
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    background: rgba(25, 25, 25, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 12px 22px;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 1.5rem 3rem;
    gap: 2.5rem;
  }

  .hero-right {
    display: none;
  }

  .home-diensten .container {
    padding: 0;
  }

  .hd-grid {
    grid-template-columns: 1fr;
  }

  .hd-img-grid {
    grid-template-columns: 1fr;
  }

  .hd-img-card {
    height: 280px;
  }

  .hd-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hp-item:first-child {
    grid-row: auto;
    grid-column: auto;
    height: 300px;
  }

  .hp-item {
    height: 220px;
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .usp-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .usp-img-wrap {
    height: 320px;
  }

  .usp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .do-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-grid {
    columns: 1;
  }

  .port-filter {
    padding: 1.5rem;
    top: 104px;
  }

  .port-grid-section {
    padding: 2rem 1.5rem 4rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-body {
    padding: 2rem 1.5rem 4rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    border: none;
    gap: 0.75rem;
  }

  .cta-form input {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
  }

  .cta-form button {
    border-radius: 100px;
  }

  .home-cta {
    padding: 5rem 1.5rem;
  }

  .ph-inner {
    padding: 104px 1.5rem 3rem;
  }

  .lb-panel {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .lb-img {
    min-height: 200px;
    max-height: 200px;
  }

  .lb-body {
    padding: 1.75rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .home-portfolio {
    padding: 4rem 1.5rem;
  }

  .hp-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════════════════════════
   RESPONSIVE — SMALL PHONE (≤480px)
════════════════════════════ */
@media (max-width: 480px) {
  .hero-inner {
    padding: 100px 1.25rem 2.5rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .ph-inner h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-p, .btn-ghost, .btn-o {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ph-inner {
    padding: 90px 1.25rem 2.5rem;
  }

  .port-filter-inner {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 13px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .footer-top {
    gap: 2rem;
  }

  .form-row {
    gap: 1rem;
  }
}

/* ════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════ */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1500;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-4px);
}

.wa-float-mascot {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(25, 25, 25, 0.28));
}

.wa-float-badge {
  position: absolute;
  right: -4px;
  bottom: 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--white);
}

.wa-float-badge svg {
  width: 21px;
  height: 21px;
  color: var(--white);
}

@media (max-width: 768px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
  }

  .wa-float-mascot {
    height: 72px;
  }

  .wa-float-badge {
    width: 28px;
    height: 28px;
  }

  .wa-float-badge svg {
    width: 15px;
    height: 15px;
  }
}
