/* ══════════════════════════════════════
   AAAPro Construction — styles.css
   ══════════════════════════════════════ */

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

:root {
  --g1: #0a2e14;
  --g2: #1a5c2e;
  --g3: #2d8a4e;
  --ga: #7ec850;
  --o1: #e85d04;
  --o2: #f48c06;
  --blk: #0d0d0d;
  --dk: #141414;
  --lg: #c0c0c0;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  font-family: 'Barlow', sans-serif;
  background: var(--blk);
  color: white;
  -webkit-font-smoothing: antialiased;
}

/* ── SLIDE TRACK ── */
#track {
  display: flex;
  width: 600vw;
  height: 100vh;
  transition: transform 0.78s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  user-select: none;
}

.logo-img {
  height: 100px;   /* adjust size as needed */
  width: auto;
  cursor: pointer;
}

.logo-hex {
  width: 38px; height: 38px;
  background: var(--o1);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; color: white; letter-spacing: 0;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 2px; color: white;
}
.logo-text em { color: var(--o1); font-style: normal; }

.nav-pills {
  display: flex; gap: 4px; align-items: center; list-style: none;
}

.nav-pills li a {
  display: block;
  padding: 7px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.nav-pills li a:hover { color: white; border-color: rgba(255,255,255,0.15); }
.nav-pills li a.active { color: white; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); }
.nav-pills .cta a { background: var(--o1); color: white; border-color: var(--o1); margin-left: 10px; }
.nav-pills .cta a:hover { background: var(--o2); border-color: var(--o2); }

.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.ham span { width: 24px; height: 2px; background: white; display: block; transition: all 0.3s; border-radius: 2px; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-nav {
  position: fixed; inset: 66px 0 0 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none; flex-direction: column;
  padding: 24px; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  display: block; padding: 16px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none; border-radius: 8px;
  cursor: pointer; transition: background 0.2s;
}
.mob-nav a:hover { background: rgba(255,255,255,0.06); }
.mob-nav .mob-cta { background: var(--o1); color: white; text-align: center; margin-top: 10px; }

/* ── DOTS ── */
.dots {
  position: fixed; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex; gap: 10px; align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  cursor: pointer; transition: all 0.35s;
  border: none; padding: 0;
}
.dot.active { width: 28px; border-radius: 4px; background: var(--o1); }

/* ── ARROWS ── */
.arrow {
  position: fixed; top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 50px; height: 50px;
  background: rgba(15,15,15,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  font-size: 20px; color: white; user-select: none;
}
.arrow:hover { background: rgba(232,93,4,0.35); border-color: var(--o1); }
.arrow.prev { left: 20px; }
.arrow.next { right: 20px; }
.arrow.hidden { opacity: 0; pointer-events: none; }

/* ── SLIDE LABEL ── */
.slide-label {
  position: fixed; bottom: 72px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap; pointer-events: none;
}

/* ── SHARED COMPONENTS ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-o { background: rgba(232,93,4,0.12); border: 1px solid rgba(232,93,4,0.28); color: var(--o2); }
.badge-o::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--o2); animation: blink 2s infinite; }
.badge-g { background: rgba(78,175,112,0.12); border: 1px solid rgba(78,175,112,0.28); color: var(--ga); }

@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.3;} }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.btn-o  { background: var(--o1); color: white; }
.btn-o:hover  { background: var(--o2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,93,4,0.32); }
.btn-wh { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.22); }
.btn-wh:hover { border-color: white; background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-g  { background: var(--g2); color: white; }
.btn-g:hover  { background: var(--g3); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,138,78,0.32); }
.btn-go { background: transparent; color: white; border: 1.5px solid rgba(78,175,112,0.28); }
.btn-go:hover { border-color: var(--ga); background: rgba(78,175,112,0.07); transform: translateY(-2px); }

.sec-tag { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 10px; }
.tag-g { color: var(--g2); }
.tag-o { color: var(--o1); }

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 70px);
  letter-spacing: 2px; line-height: 1; margin-bottom: 12px;
}
.title-dark  { color: var(--g1); }
.title-light { color: white; }

.sec-sub       { font-size: 15px; color: #666; max-width: 480px; line-height: 1.7; font-weight: 300; }
.sec-sub-light { color: rgba(255,255,255,0.45); }

/* ── SERVICE STRIP (shared by land + const) ── */
.svc-strip {
  position: relative; z-index: 2;
  display: flex;
  backdrop-filter: blur(10px);
}
.svc-item {
  flex: 1; padding: 20px 22px;
  transition: background 0.25s;
  cursor: default;
}
.svc-item:last-child { border-right: none; }
.svc-ico  { font-size: 20px; margin-bottom: 7px; }
.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 4px;
}
.svc-green .svc-name  { color: var(--ga); }
.svc-orange .svc-name { color: var(--o2); }
.svc-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ── GALLERY GRID ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px; flex: 1;
}
.gal-item {
  border-radius: 8px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  cursor: pointer; transition: transform 0.3s;
}
.gal-item:hover { transform: scale(1.025); }
.gal-face {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 9px;
  transition: transform 0.4s;
}
.gal-item:hover .gal-face { transform: scale(1.06); }
.gal-icon { font-size: 36px; opacity: 0.7; }
.gal-cap {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.6;
}
.gal-header { margin-bottom: 40px; }
.gal-cta    { margin-top: 32px; text-align: center; }

/* Green gallery swatches */
.gl1 { background: linear-gradient(135deg,#0a2e14,#1a5c2e); color:white; }
.gl2 { background: linear-gradient(135deg,#1a5c2e,#2d8a4e); color:white; }
.gl3 { background: linear-gradient(135deg,#0e3d1a,#145c2a); color:white; }
.gl4 { background: linear-gradient(160deg,#2d8a4e,#4caf70); color:white; }
.gl5 { background: linear-gradient(135deg,#061a0c,#1a5c2e); color:white; }
.gl6 { background: linear-gradient(135deg,#1a5c2e,#0a2e14); color:white; }

/* Orange gallery swatches */
.go1 { background: linear-gradient(135deg,#1a0800,#3d1200); color:rgba(255,255,255,0.8); }
.go2 { background: linear-gradient(135deg,#2e1000,#5a2000); color:rgba(255,255,255,0.8); }
.go3 { background: linear-gradient(135deg,#3d1200,#c94a03); color:rgba(255,255,255,0.8); }
.go4 { background: linear-gradient(135deg,#111,#2e1000);    color:rgba(255,255,255,0.8); }
.go5 { background: linear-gradient(135deg,#5a2000,#3d1200); color:rgba(255,255,255,0.8); }
.go6 { background: linear-gradient(135deg,#1a1a00,#3d2200); color:rgba(255,255,255,0.8); }

/* ── SLIDE FOOTER ── */
.slide-footer {
  padding: 26px 80px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; margin-top: auto;
}
.sf-light       { border-top: 1px solid rgba(0,0,0,0.08); }
.sf-dark-border { border-top: 1px solid rgba(255,255,255,0.06); }
.sf-brand   { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px; }
.sf-brand-g { color: var(--g2); }
.sf-brand-o { color: var(--o1); }
.sf-copy       { font-size: 12px; }
.sf-copy-dark  { color: rgba(0,0,0,0.3); }
.sf-copy-light { color: rgba(255,255,255,0.22); }

/* ════════════════════════════
   SLIDE 0 — HOME
════════════════════════════ */
#s0 { background: var(--blk); justify-content: flex-end; }

.home-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 78% 48%, rgba(232,93,4,0.08) 0%, transparent 68%),
    repeating-linear-gradient(45deg,  transparent, transparent 50px, rgba(255,255,255,0.012) 50px, rgba(255,255,255,0.012) 51px),
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255,255,255,0.012) 50px, rgba(255,255,255,0.012) 51px);
}
.home-stripe {
  position: absolute; right: -80px; top: 0; bottom: 0; width: 48%;
  background: linear-gradient(155deg, var(--o1), var(--o2));
  clip-path: polygon(18% 0%,100% 0%,100% 100%,0% 100%);
  opacity: 0.07;
}

.home-hero {
  position: relative; z-index: 2;
  padding: 120px 80px 40px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 860px;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 9vw, 130px);
  line-height: 0.88; letter-spacing: 2px;
  margin-bottom: 28px; color: white;
}
.hero-h1 .ho { color: var(--o1); }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 520px; margin-bottom: 44px;
}

.home-stats {
  position: absolute; bottom: 140px; right: 80px;
  display: flex; gap: 56px; z-index: 2;
}
.stat { text-align: right; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--o1); line-height: 1; }
.stat-l { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }

.home-cards {
  position: relative; z-index: 2;
  display: flex; border-top: 1px solid rgba(255,255,255,0.06);
}
.home-card {
  flex: 1; padding: 28px 36px;
  display: flex; align-items: center; gap: 18px;
  cursor: pointer; transition: all 0.3s;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid transparent;
}
.home-card:last-child { border-right: none; }
.home-card:hover { transform: translateY(-3px); }
.hc-land  { background: rgba(26,92,46,0.18);  border-top-color: var(--g3); }
.hc-land:hover  { background: rgba(26,92,46,0.28); }
.hc-const { background: rgba(232,93,4,0.1);   border-top-color: var(--o1); }
.hc-const:hover { background: rgba(232,93,4,0.18); }
.hc-cnt   { background: rgba(255,255,255,0.03); border-top-color: rgba(255,255,255,0.12); }
.hc-cnt:hover   { background: rgba(255,255,255,0.07); }
.hc-ico  { font-size: 28px; flex-shrink: 0; }
.hc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 3px;
}
.hc-land .hc-name  { color: var(--ga); }
.hc-const .hc-name { color: var(--o2); }
.hc-cnt .hc-name   { color: white; }
.hc-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.hc-arr  { margin-left: auto; font-size: 18px; opacity: 0.3; transition: all 0.3s; }
.home-card:hover .hc-arr { opacity: 1; transform: translateX(4px); }

/* ════════════════════════════
   SLIDE 1 — LANDSCAPING
════════════════════════════ */
#s1 { background: linear-gradient(140deg, #061a0c 0%, var(--g1) 40%, #0f3d1e 100%); justify-content: center; }

.land-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 75% at 85% 45%, rgba(78,175,112,0.11) 0%, transparent 65%);
}
.land-deco {
  position: absolute; right: 0; top: 0; bottom: 0; width: 35%;
  border-left: 1px solid rgba(78,175,112,0.08);
  background: linear-gradient(180deg, rgba(78,175,112,0.05) 0%, transparent 100%);
}

.land-main {
  position: relative; z-index: 2;
  padding: 120px 80px 50px;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 800px;
}

.land-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(62px, 9vw, 128px);
  line-height: 0.88; letter-spacing: 2px;
  margin-bottom: 28px; color: white;
}
.land-h1 span { color: var(--ga); }

.land-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 500px; margin-bottom: 44px;
}

/* Land-specific strip overrides */
.land-strip {
  background: rgba(5,18,9,0.88);
  border-top: 1px solid rgba(78,175,112,0.13);
}
.land-strip .svc-item { border-right: 1px solid rgba(78,175,112,0.09); }
.land-strip .svc-item:hover { background: rgba(45,138,78,0.14); }

/* ════════════════════════════
   SLIDE 2 — LANDSCAPE GALLERY
════════════════════════════ */
#s2 { background: #f4f8f2; }

.gal-wrap {
  padding: 90px 80px 50px;
  overflow-y: auto; height: 100%;
  display: flex; flex-direction: column;
}

/* ════════════════════════════
   SLIDE 3 — CONSTRUCTION
════════════════════════════ */
#s3 { background: var(--blk); justify-content: center; }

.const-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 18% 50%, rgba(232,93,4,0.09) 0%, transparent 65%),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(232,93,4,0.022) 30px, rgba(232,93,4,0.022) 31px);
}
.const-deco {
  position: absolute; left: 0; top: 0; bottom: 0; width: 36%;
  border-right: 1px solid rgba(232,93,4,0.07);
  background: linear-gradient(90deg, rgba(232,93,4,0.05) 0%, transparent 100%);
}

.const-main {
  position: relative; z-index: 2;
  padding: 120px 80px 50px;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 900px; margin-left: auto;
}

.const-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(62px, 9vw, 128px);
  line-height: 0.88; letter-spacing: 2px;
  margin-bottom: 28px; color: white; text-align: right;
}
.const-h1 span { color: var(--o1); }

.const-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 520px; margin-bottom: 44px;
  margin-left: auto;
}
.const-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* Const-specific strip overrides */
.const-strip {
  background: rgba(8,8,8,0.92);
  border-top: 1px solid rgba(232,93,4,0.09);
}
.const-strip .svc-item { border-right: 1px solid rgba(232,93,4,0.07); }
.const-strip .svc-item:hover { background: rgba(232,93,4,0.07); }

/* ════════════════════════════
   SLIDE 4 — CONSTRUCTION GALLERY
════════════════════════════ */
#s4 { background: #111; }

.gal-wrap-dark {
  padding: 90px 80px 50px;
  overflow-y: auto; height: 100%;
  display: flex; flex-direction: column;
}

/* ════════════════════════════
   SLIDE 5 — CONTACT
════════════════════════════ */
#s5 { background: #0a0a0a; }

.contact-inner {
  padding: 90px 80px 40px;
  overflow-y: auto; height: 100%;
  display: flex; flex-direction: column;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px; margin-top: 44px;
  flex: 1; align-items: start;
}

.ci-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--o1); margin-bottom: 30px;
}

.ci-row {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 26px; padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ci-row:last-child { border-bottom: none; }
.ci-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(232,93,4,0.09); border: 1px solid rgba(232,93,4,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ci-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: white; font-weight: 500; line-height: 1.6; }

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 42px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: white; margin-bottom: 30px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { margin-bottom: 16px; }
.f-lbl {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 7px;
}
.f-grp input,
.f-grp select,
.f-grp textarea {
  width: 100%; padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 5px; color: white;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: all 0.25s;
  -webkit-appearance: none;
}
.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
  border-color: var(--o1); background: rgba(232,93,4,0.04);
}
.f-grp select option { background: #1a1a1a; color: white; }
.f-grp textarea { resize: vertical; min-height: 110px; }

.f-submit {
  width: 100%; padding: 15px;
  background: var(--o1); color: white; border: none; border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 4px;
}
.f-submit:hover { background: var(--o2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,93,4,0.28); }

.f-ok { display: none; text-align: center; padding: 40px 20px; }
.f-ok.show { display: block; }
.f-ok-ico   { font-size: 50px; margin-bottom: 14px; }
.f-ok-title { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 2px; color: var(--ga); margin-bottom: 10px; }
.f-ok-msg   { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-pills { display: none; }
  .ham { display: flex; }

  .home-hero  { padding: 86px 24px 36px; }
  .home-stats { display: none; }
  .home-cards { flex-direction: column; }
  .home-card  { padding: 18px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .land-main  { padding: 86px 24px 36px; }
  .svc-strip  { flex-wrap: wrap; }
  .svc-item   { flex: 1 1 33%; min-width: 100px; padding: 14px 16px; }

  .const-main  { padding: 86px 24px 36px; margin-left: 0; }
  .const-h1    { text-align: left; }
  .const-btns  { justify-content: flex-start; }
  .const-sub   { margin-left: 0; }

  .gal-wrap,
  .gal-wrap-dark { padding: 86px 20px 40px; }
  .gal-grid      { grid-template-columns: repeat(2,1fr); }

  .contact-inner { padding: 86px 20px 36px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 28px; }
  .form-card     { padding: 26px 18px; }
  .f-row         { grid-template-columns: 1fr; }
  .slide-footer  { padding: 20px; }

  .dots        { display: none; }
  .slide-label { display: none; }
  .arrow       { display: none; }
}

@media (max-width: 560px) {
  .gal-grid   { grid-template-columns: repeat(2,1fr); }
  .svc-strip  { display: grid; grid-template-columns: repeat(3,1fr); }
}
