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

:root {
  --green-dark:   #1B5E20;
  --green-mid:    #2E7D32;
  --green-light:  #7CB342;
  --accent:       #AEEA00;
  --white:        #FFFFFF;
  --off-white:    #F7FAF5;
  --text:         #222222;
  --text-muted:   #666666;
  --border:       #E8F5E9;
  --shadow-sm:    0 2px 12px rgba(27,94,32,.08);
  --shadow-md:    0 8px 32px rgba(27,94,32,.14);
  --shadow-lg:    0 20px 60px rgba(27,94,32,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
  box-shadow: 0 4px 18px rgba(124,179,66,.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,94,32,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '— ';
}
.section-tag::after {
  content: ' —';
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17,17,17,.97);
  color: var(--white);
  z-index: 10000;
  padding: 20px 0;
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--green-light);
  transition: transform .4s ease;
}
#cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.cookie-inner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--green-light);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--green-dark); }
.btn-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.7);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}
.btn-cookie-reject:hover { border-color: var(--white); color: var(--white); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--green-dark);
  background: var(--off-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--off-white); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('pics/jan-canty-KcQuXaHCSPE-unsplash.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,40,10,.82) 0%,
    rgba(27,94,32,.65) 50%,
    rgba(10,40,10,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(174,234,0,.4);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255,255,255,.88);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.hero-scroll:hover { background: rgba(255,255,255,.1); color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.section-services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,94,32,.5) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-img-overlay { opacity: 1; }

.service-body {
  padding: 24px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green-dark);
  color: var(--white);
}
.service-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SERVICE CARD – FEATURED (Kertdiagnosztika)
═══════════════════════════════════════════ */
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card--featured:hover {
  transform: translateY(-6px);
}

.service-featured-img {
  overflow: hidden;
  position: relative;
}
.service-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 360px;
}
.service-card--featured:hover .service-featured-img img {
  transform: scale(1.05);
}

.service-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.service-icon--light {
  background: rgba(255,255,255,.15);
  color: var(--accent);
}
.service-card--featured:hover .service-icon--light {
  background: rgba(255,255,255,.25);
  color: var(--accent);
}

.service-card--featured h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-featured-desc {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-featured-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-featured-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.service-featured-list svg { color: var(--accent); flex-shrink: 0; }

.service-featured-cta {
  align-self: flex-start;
  background: var(--accent);
  color: var(--green-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(174,234,0,.3);
}
.service-featured-cta:hover {
  background: #c6ff00;
  border-color: #c6ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(174,234,0,.4);
}

@media (max-width: 768px) {
  .service-card--featured {
    grid-template-columns: 1fr;
  }
  .service-featured-img img { min-height: 240px; }
  .service-featured-body { padding: 28px 24px; }
  .service-card--featured h3 { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.section-why {
  padding: 100px 0;
  background: var(--off-white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-image-badge strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}
.why-image-badge span {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
}

.why-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-list strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-list p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.section-process {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 32px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.process-step:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.process-step:hover h3,
.process-step:hover p { color: var(--white); }
.process-step:hover .step-icon { background: rgba(255,255,255,.15); color: var(--accent); }
.process-step:hover .step-num { background: var(--accent); color: var(--green-dark); }

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--green-light);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(124,179,66,.4);
  transition: var(--transition);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 18px;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition);
}
.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--transition);
}

.step-connector {
  display: none;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.section-gallery {
  padding: 100px 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item--large img { min-height: 400px; }
.gallery-item:not(.gallery-item--large) img { min-height: 190px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  padding: 10px 24px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  backdrop-filter: blur(4px);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden], .lightbox-backdrop[hidden] { display: none; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.8);
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--green-light);
}

/* ═══════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════ */
.section-cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip-text p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.section-form {
  padding: 100px 0;
  background: var(--white);
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.form-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.form-info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.form-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.form-contact-list svg { color: var(--green-light); flex-shrink: 0; }
.form-contact-list a:hover { color: var(--green-dark); text-decoration: underline; }

.quote-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(124,179,66,.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-gdpr {
  margin-bottom: 28px !important;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-dark);
  cursor: pointer;
}
.checkbox-label a { color: var(--green-dark); text-decoration: underline; }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E8F5E9;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 600;
}
.form-success[hidden] { display: none; }
.form-success svg { color: var(--green-light); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CONTACT / MAP
═══════════════════════════════════════════ */
.section-contact {
  position: relative;
}
.map-placeholder {
  height: 420px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--border) 100%);
  background-image:
    repeating-linear-gradient(45deg, rgba(27,94,32,.03) 0, rgba(27,94,32,.03) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(124,179,66,.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(27,94,32,.08) 0%, transparent 50%);
}
.map-overlay-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  min-width: 280px;
}
.map-overlay-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.map-overlay-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.map-overlay-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.map-overlay-card li svg { color: var(--green-light); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #0d2010;
  color: rgba(255,255,255,.8);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 48px;
}

.footer-brand img { margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green-light); }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.footer-col a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg { color: var(--green-light); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: var(--transition);
  white-space: nowrap;
}
.fab-phone {
  background: var(--green-dark);
  color: var(--white);
}
.fab-phone:hover { background: var(--green-light); transform: translateY(-3px) scale(1.03); }

.fab-quote {
  background: var(--accent);
  color: var(--green-dark);
}
.fab-quote:hover { background: #c6ff00; transform: translateY(-3px) scale(1.03); }

.fab-label { font-size: 13px; }

/* ═══════════════════════════════════════════
   FOCUS STYLES (a11y)
═══════════════════════════════════════════ */
*:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image { max-width: 600px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .nav-menu {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; }
  .hamburger { display: flex; }
  .nav-cta { font-size: 12px; padding: 10px 16px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-badges { gap: 16px; }
  .hero-badge { font-size: 12px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: 1 / 3; grid-row: 1 / 2; }

  /* CTA strip */
  .cta-strip-inner { flex-direction: column; text-align: center; }

  /* Form */
  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  /* Map */
  .map-placeholder { justify-content: center; padding: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Floating */
  .fab-label { display: none; }
  .fab { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: 1; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
}
