/* ═══════════════════════════════════════════════════════════
   PLUMB-TEC LLC — STYLESHEET
   Premium, Apple-inspired, dark-mode-first
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET: enforce hidden attribute ────────────────────── */
[hidden] { display: none !important; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --green:        #6BBF3A;
  --green-dark:   #4D9B26;
  --green-dim:    rgba(107, 191, 58, 0.12);
  --green-glow:   rgba(107, 191, 58, 0.25);

  --bg:           #0A0A0A;
  --bg-2:         #111111;
  --bg-3:         #181818;
  --bg-card:      #161616;
  --bg-card-hover:#1E1E1E;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(107,191,58,0.35);

  --text:         #FFFFFF;
  --text-2:       rgba(255,255,255,0.70);
  --text-3:       rgba(255,255,255,0.40);

  --nav-h:        72px;
  --announce-h:   40px;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-card:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.7);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
blockquote { font: inherit; }

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 100px 0; }
.section-tight  { padding: 60px 0 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
p  { color: var(--text-2); font-size: 16px; line-height: 1.75; }

.green-text  { color: var(--green); font-style: normal; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-sub { font-size: 17px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,191,58,0.3);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(107,191,58,0.5),
    0 0 60px rgba(107,191,58,0.2),
    0 2px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(107,191,58,0.2),
    0 8px 24px rgba(0,0,0,0.4);
}

/* ─── RIPPLE EFFECT ──────────────────────────────────────── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-out 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.animate-up, .animate-left, .animate-right {
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-up    { opacity: 0; transform: translateY(48px); }
.animate-left  { opacity: 0; transform: translateX(-48px); }
.animate-right { opacity: 0; transform: translateX(48px); }

.animate-up.is-visible,
.animate-left.is-visible,
.animate-right.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--green);
  color: #000;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.announcement-link { color: #000; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(0,0,0,0.3); }
.announcement-close {
  position: absolute;
  right: 16px;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1;
  padding: 6px;
  transition: color var(--transition-fast);
}
.announcement-close:hover { color: #000; }


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition),
              top var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}
.nav.no-announce {
  top: 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover {
  color: var(--text);
  background: var(--border);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--green);
  padding: 10px 20px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  position: relative;
  z-index: 1000;
}
.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.mobile-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--green); }
.mobile-cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--green);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 100px;
  justify-content: center;
}


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

/* Media layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.80) 75%,
    rgba(0,0,0,0.95) 100%
  );
}
.video-badge {
  position: absolute;
  top: calc(var(--announce-h) + var(--nav-h) + 24px);
  right: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.video-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-location {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--text);
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.85);
}
.hero-glow {
  display: inline-block;
  text-shadow:
    0 0 30px rgba(107, 191, 58, 0.75),
    0 0 80px rgba(107, 191, 58, 0.4),
    0 0 140px rgba(107, 191, 58, 0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 30px rgba(107, 191, 58, 0.75),
      0 0 80px rgba(107, 191, 58, 0.4),
      0 0 140px rgba(107, 191, 58, 0.2);
  }
  50% {
    text-shadow:
      0 0 50px rgba(107, 191, 58, 0.95),
      0 0 100px rgba(107, 191, 58, 0.6),
      0 0 180px rgba(107, 191, 58, 0.3);
  }
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero animations */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-anim.delay-0 { transition-delay: 0.3s; }
.hero-anim.delay-1 { transition-delay: 0.5s; }
.hero-anim.delay-2 { transition-delay: 0.7s; }
.hero-anim.delay-3 { transition-delay: 0.9s; }
.hero-anim.fired {
  opacity: 1;
  transform: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0.5;
}
.scroll-indicator span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  writing-mode: vertical-rl;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Hero water wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
}
.wave-path {
  fill: var(--bg);
}
.wave-path-1 {
  opacity: 0.6;
  animation: wave-flow 6s ease-in-out infinite;
}
.wave-path-2 {
  opacity: 1;
  animation: wave-flow 8s ease-in-out infinite reverse;
}
@keyframes wave-flow {
  0%, 100% { d: path("M0,40 C180,80 360,0 540,40 C720,80 900,0 1080,40 C1260,80 1380,20 1440,40 L1440,80 L0,80 Z"); }
  50%       { d: path("M0,30 C200,5  400,75 600,30 C800,0  1000,75 1200,30 C1340,10 1420,50 1440,30 L1440,80 L0,80 Z"); }
}


/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.trust-check { color: var(--green); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(107,191,58,0.5),
    0 0 30px rgba(107,191,58,0.15),
    0 0 60px rgba(107,191,58,0.08);
  border-color: rgba(107,191,58,0.6);
}
.service-card-photo {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-photo {
  transform: scale(1.06);
}
.service-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 100px;
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--green-dim);
  border: 1px solid rgba(107,191,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.service-card-body h3 { color: var(--text); margin-bottom: 4px; }
.service-card-body p  { font-size: 14px; flex: 1; }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
  padding-top: 4px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-cta:hover { gap: 10px; }
.service-cta span { transition: transform var(--transition-fast); }
.service-cta:hover span { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: grayscale(30%);
  transition: filter var(--transition);
}
.about-image-wrap:hover .about-photo {
  filter: grayscale(0%);
}
.about-photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.about-accent-line {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  border: 2px solid var(--green);
  border-radius: calc(var(--radius-xl) + 16px);
  opacity: 0.15;
  pointer-events: none;
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content h2 { margin-top: 4px; }
.about-lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
}
.about-content > p { font-size: 15px; }
.about-stats {
  display: flex;
  gap: 0;
  margin: 12px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}
.stat-suffix {
  font-size: 22px;
  font-weight: 800;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 48px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(107,191,58,0.08); }
.gallery-item:hover { transform: scale(1.005); }

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gi-wide {
  grid-column: span 2;
}


/* ═══════════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════════ */
.why-us {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35) saturate(0.7);
}
.why-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}
.why-content { position: relative; z-index: 1; }
.light-header h2  { color: var(--text); }
.light-header p   { color: rgba(255,255,255,0.65); }
.light-tag { color: var(--green); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  background: rgba(107,191,58,0.08);
  border-color: rgba(107,191,58,0.55);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(107,191,58,0.3),
    0 0 25px rgba(107,191,58,0.2),
    0 16px 40px rgba(0,0,0,0.5);
}
.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--green-dim);
  border: 1px solid rgba(107,191,58,0.25);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 { color: var(--text); margin-bottom: 10px; font-size: 18px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews { background: #F5F4F0; }
.reviews .section-tag { color: var(--green-dark); }
.reviews .section-header { text-align: center; }
.reviews .section-header h2 { color: #0A0A0A; }
.reviews .section-sub { color: #555; }
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
}

.reviews-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 0 16px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.14),
    0 0 0 2px rgba(107,191,58,0.4),
    0 0 20px rgba(107,191,58,0.1);
  border-color: rgba(107,191,58,0.35);
}
.review-stars {
  font-size: 18px;
  color: #F5A623;
  letter-spacing: 2px;
}
.review-card blockquote {
  font-size: 15px;
  color: #222;
  line-height: 1.65;
  flex: 1;
  quotes: "\201C" "\201D";
}
.review-card blockquote::before { content: open-quote; }
.review-card blockquote::after  { content: close-quote; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: #111; }
.reviewer-date { font-size: 12px; color: #888; margin-top: 2px; }

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  z-index: 2;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.reviews-nav:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  transform: translateY(-50%) scale(1.08);
}
.reviews-prev { left: 8px; }
.reviews-next { right: 8px; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  padding-bottom: 8px;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.reviews-dot.active {
  background: var(--green-dark);
  transform: scale(1.3);
}


/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 50%;
  filter: brightness(0.45) saturate(0.8);
  transition: transform 0.8s ease;
}
.cta-banner:hover .cta-bg-layer { transform: scale(1.03); }
.cta-overlay-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text);
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════════════════ */
.service-area { background: var(--bg-2); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-content { display: flex; flex-direction: column; gap: 20px; }
.area-content h2 { margin-top: 4px; }
.area-content > p { font-size: 16px; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.area-tag:hover { color: var(--green); border-color: var(--border-hover); }
.area-tag-more {
  background: var(--green-dim);
  border-color: rgba(107,191,58,0.25);
  color: var(--green);
}
.area-map { }
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-embed-wrap iframe { display: block; }


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { margin-top: 4px; }
.contact-details { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition-fast);
}
.contact-detail-item:hover { background: var(--bg-2); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-dim);
  border: 1px solid rgba(107,191,58,0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
a.contact-detail-item .contact-detail-value { color: var(--green); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.required { color: var(--green); }
input, textarea, select {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: var(--bg-2);
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: -8px;
}
.form-note a { color: var(--green); font-weight: 600; }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
  color: var(--green);
}
.form-success h3 { font-size: 24px; color: var(--text); }
.form-success p  { color: var(--text-2); }
.form-success a  { color: var(--green); font-weight: 700; }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.footer-social:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --announce-h: 40px;
  }
  .section { padding: 72px 0; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero { padding-bottom: 80px; min-height: 600px; }
  .hero-title { font-size: clamp(42px, 11vw, 70px); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }
  .video-badge { top: 16px; right: 16px; }

  /* Trust bar */
  .trust-container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .trust-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 15px 20px;
    justify-content: center;
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-sep { display: none; }

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

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-photo { aspect-ratio: 16/9; }
  .about-accent-line { display: none; }
  .about-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gi-large  { grid-column: span 2; grid-row: span 1; }
  .gi-wide   { grid-column: span 2; }

  /* Why us */
  .why-us { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 18px; }

  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 48px); }
  .reviews-nav { display: none; }

  /* CTA */
  .cta-banner { padding: 90px 0; }
  .cta-content h2 { font-size: clamp(30px, 8vw, 48px); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Area */
  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .gi-large { grid-column: span 1; grid-row: span 1; }
  .gi-wide  { grid-column: span 1; }
  .announcement-inner { font-size: 12px; }
  .hero-sub { display: none; }

  /* Trust bar — smaller text on tiny screens */
  .trust-item { font-size: 13px; padding: 12px 16px; }

  /* Service cards — reduce image height */
  .service-image { height: 180px; }

  /* Review carousel — larger touch dots */
  .review-dots button {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
  }

  /* Contact form — ensure inputs don't overflow */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  /* Gallery — ensure consistent spacing */
  .gallery-grid { gap: 8px; }
}

/* ─── SELECTION HIGHLIGHT ─────────────────────────────────── */
::selection { background: var(--green); color: #000; }
