/* =====================================================
   NATIVE LANDS — Premium Real Estate & Construction
   style.css — Core Styles & Design System
   ===================================================== */

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
  /* ── Brand Colors (Native Lands Logo Palette) ── */
  --primary: #A9C98A;
  --primary-dark: #88B36C;
  --primary-deep: #6A964D;
  --secondary: #D6E7BE;
  --accent: #FFC83D;
  --accent-dark: #E5B100;

  /* ── Surfaces ── */
  --dark: #3D5A32;
  /* footer dark green */
  --dark-2: #222222;
  --dark-3: #2E4428;
  --dark-4: #4B7040;
  --light: #F7FAF3;
  --light-2: #EEF6E5;
  --light-3: rgba(169, 201, 138, 0.25);
  --surface: #FFFFFF;
  --text: #222222;
  --text-muted: #666666;
  --text-light: #999999;
  --white: #FFFFFF;

  /* ── Brand Gradients ── */
  --grad-primary: linear-gradient(135deg, #A9C98A 0%, #88B36C 60%, #6A964D 100%);
  --grad-accent: linear-gradient(135deg, #FFC83D 0%, #E5B100 100%);
  --grad-dark: linear-gradient(135deg, #3D5A32 0%, #2E4428 50%, #1e3018 100%);
  --grad-hero: linear-gradient(145deg, #F7FAF3 0%, #EEF6E5 50%, #dff0cc 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 229, 0.6));
  --grad-cta: linear-gradient(135deg, #88B36C 0%, #A9C98A 60%, #c2dba0 100%);

  /* ── Glass (light, nature-inspired) ── */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(169, 201, 138, 0.30);
  --glass-shadow: 0 8px 32px rgba(61, 90, 50, 0.12);
  --glass-light-bg: rgba(255, 255, 255, 0.88);
  --glass-light-border: rgba(169, 201, 138, 0.5);

  /* ── Typography ── */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Spacing ── */
  --section-py: 100px;
  --container-px: 24px;
  --max-width: 1280px;

  /* ── Borders & Shadows ── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(61, 90, 50, 0.06);
  --shadow-md: 0 8px 32px rgba(61, 90, 50, 0.09);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 32px 80px rgba(61, 90, 50, 0.12);
  --shadow-primary: 0 8px 32px rgba(136, 179, 108, 0.40);
  --shadow-accent: 0 8px 32px rgba(255, 200, 61, 0.40);

  /* ── Transitions ── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-med: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* ── Selection ── */
  --selection-bg: #A9C98A;
  --selection-text: #ffffff;
}

/* ─── Reset & Base ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
  /* Custom cursor */
}

/* ─── Text Selection ─────────────────────────────── */
::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-deep);
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: none;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
  outline: none;
}

/* ─── Scroll Progress Bar ───────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary);
}

/* ─── Custom Cursor ─────────────────────────────────── */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth), background 0.3s;
  mix-blend-mode: difference;
}

#cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(169, 201, 138, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease-smooth);
}

#cursor.hover {
  width: 20px;
  height: 20px;
  background: var(--accent);
}

#cursor-follower.hover {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

/* ─── Loading Screen ─────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f0f7e8 0%, #e4f2d4 50%, #d6ebbe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  z-index: 99997;
  transition: opacity 0.7s var(--ease-smooth), visibility 0.7s;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loading — logo image version */
.loader-logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  animation: loaderLogoAnim 1.2s var(--ease-expo) both;
  filter: drop-shadow(0 8px 28px rgba(136, 179, 108, 0.45));
  border-radius: 50%;
}

@keyframes loaderLogoAnim {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: drop-shadow(0 0 0 rgba(136, 179, 108, 0));
  }

  60% {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 28px rgba(136, 179, 108, 0.55));
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 6px 20px rgba(136, 179, 108, 0.40));
  }
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(136, 179, 108, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  animation: loadBar 2s var(--ease-expo) forwards;
}

@keyframes loadBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.loader-text {
  font-size: 0.78rem;
  color: var(--primary-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ─── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ─── Section Shared ─────────────────────────────────── */
section {
  position: relative;
  overflow: hidden;
}

.section-py {
  padding: var(--section-py) 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(169, 201, 138, 0.15);
  border: 1px solid rgba(169, 201, 138, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag i {
  font-size: 0.7rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-2);
  margin-bottom: 20px;
}

.section-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  cursor: none;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #A9C98A 0%, #88B36C 100%);
  color: var(--white);
  box-shadow: var(--shadow-primary);
  text-shadow: 0 1px 2px rgba(61, 90, 50, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #88B36C 0%, #6A964D 100%);
  box-shadow: 0 12px 40px rgba(136, 179, 108, 0.55);
}

.btn-accent {
  background: linear-gradient(135deg, #FFC83D 0%, #E5B100 100%);
  color: #3D5A32;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 200, 61, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary-deep);
  border: 2px solid rgba(169, 201, 138, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--grad-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ─── Gradient Text Utility ─────────────────────────── */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-med);
}

#navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(169, 201, 138, 0.25);
  box-shadow: 0 4px 32px rgba(61, 90, 50, 0.10);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  gap: 24px;
}

/* ─── Logo ───────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Image-based logo */
.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(61, 90, 50, 0.15));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(136, 179, 108, 0.40));
}

/* Keep text logo as fallback (hidden when image logo is shown) */
.nav-logo-text-wrap {
  display: none;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-2);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--primary-dark);
}

.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-med);
}

.nav-link:hover {
  color: var(--primary-dark);
  background: rgba(169, 201, 138, 0.12);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-link.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: rgba(169, 201, 138, 0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(169, 201, 138, 0.3);
  cursor: none;
  transition: all var(--transition-fast);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO SECTION ───────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 60%;
  right: 30%;
  animation-delay: -2s;
  opacity: 0.2;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly linear infinite;
}

@keyframes particleFly {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) scale(1.5);
    opacity: 0;
  }
}

/* Organic blob grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(169, 201, 138, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 201, 138, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Content */
.hero-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(169, 201, 138, 0.18);
  border: 1px solid rgba(169, 201, 138, 0.45);
  border-radius: var(--radius-full);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
  animation: fadeInDown 0.8s var(--ease-expo) 0.3s both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark-2);
  letter-spacing: -2px;
  animation: fadeInUp 0.9s var(--ease-expo) 0.5s both;
}

.hero-headline .line-accent {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Typing cursor */
.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s ease-in-out infinite;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 520px;
  animation: fadeInUp 0.9s var(--ease-expo) 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-expo) 0.9s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-expo) 1.1s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero-stat-number .suffix {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(169, 201, 138, 0.35);
  align-self: center;
}

/* Hero Right */
.hero-right {
  position: relative;
  animation: fadeInRight 1s var(--ease-expo) 0.6s both;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.hero-image-wrap:hover img {
  transform: scale(1.04);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(238, 246, 229, 0.3) 100%);
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glass-shadow);
  animation: floatY 4s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-card.card-1 {
  bottom: -16px;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 20px;
  right: -30px;
  animation-delay: -2s;
}

.hero-float-card.card-3 {
  top: 50%;
  right: -50px;
  animation-delay: -1s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.float-card-icon.accent {
  background: var(--grad-accent);
}

.float-card-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.float-card-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-expo) 1.5s both;
  z-index: 2;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
#about {
  background: var(--light);
  padding: var(--section-py) 0;
}

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

/* About Image Side */
.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-main:hover img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-primary);
  z-index: 2;
}

.about-image-accent .accent-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.about-image-accent .accent-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
}

.about-image-bg-blob {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: rgba(169, 201, 138, 0.25);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  }

  33% {
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
  }

  66% {
    border-radius: 50% 50% 30% 70% / 30% 70% 50% 50%;
  }
}

/* About Content Side */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Mission & Vision */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-mini-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.about-mini-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.about-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
  border-color: transparent;
}

.about-mini-card:hover::before {
  opacity: 1;
}

.about-mini-card:hover * {
  color: var(--white) !important;
}

.about-mini-card>* {
  position: relative;
  z-index: 1;
}

.about-mini-card-icon {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  transition: color var(--transition-med);
}

.about-mini-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 6px;
}

.about-mini-card-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Counters */
.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow-sm);
}

.about-counter-item {
  text-align: center;
}

.about-counter-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.about-counter-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ─── SERVICES SECTION ───────────────────────────────── */
#services {
  background: var(--dark);
  /* dark forest green #3D5A32 */
  padding: var(--section-py) 0;
  position: relative;
}

#services .section-title {
  color: var(--white);
}

#services .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.services-header {
  margin-bottom: 64px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(169, 201, 138, 0.18) 0%, rgba(214, 231, 190, 0.12) 100%);
  opacity: 0;
  transition: opacity var(--transition-med);
  border-radius: inherit;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(169, 201, 138, 0.4);
  box-shadow: 0 24px 60px rgba(61, 90, 50, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(169, 201, 138, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all var(--transition-med);
  border: 1px solid rgba(169, 201, 138, 0.25);
}

.service-card:hover .service-card-icon {
  background: rgba(255, 200, 61, 0.2);
  color: var(--accent);
  border-color: rgba(255, 200, 61, 0.35);
  transform: scale(1.1) rotate(5deg);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--transition-med);
}

.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  transition: color var(--transition-med);
}

.service-card:hover .service-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-med);
}

.service-card:hover .service-card-arrow {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: rotate(45deg);
}

/* Services Bg Blob */
.services-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(169, 201, 138, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── WHY CHOOSE US ──────────────────────────────────── */
#why-us {
  background: var(--light);
  padding: var(--section-py) 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 201, 138, 0.3);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(169, 201, 138, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  transition: all var(--transition-med);
}

.why-card:hover .why-card-icon-wrap {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
  transform: scale(1.05);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── PROJECTS SECTION ───────────────────────────────── */
#projects {
  background: var(--dark-3);
  /* deep dark green */
  padding: var(--section-py) 0;
}

#projects .section-title {
  color: var(--white);
}

#projects .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.projects-header {
  margin-bottom: 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
}

.project-card:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.project-card:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition-med);
}

.project-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-med);
}

.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
#testimonials {
  background: var(--light);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-expo);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  color: rgba(169, 201, 138, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  select: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-dark);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-2);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Testimonials Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonials-prev,
.testimonials-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-primary);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(169, 201, 138, 0.3);
  transition: all var(--transition-med);
  cursor: none;
}

.t-dot.active {
  width: 24px;
  background: var(--primary-dark);
}

/* ─── CTA SECTION ────────────────────────────────────── */
#cta {
  background: var(--grad-cta);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.15);
  top: -20%;
  right: -10%;
}

.cta-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(255, 200, 61, 0.18);
  bottom: -10%;
  left: 10%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-title span {
  background: linear-gradient(135deg, #FFC83D, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── CONTACT SECTION ────────────────────────────────── */
#contact {
  background: var(--light);
  padding: var(--section-py) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ─── Form Fields ───────────────────────────────── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid rgba(169, 201, 138, 0.35);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.5;
  transition: border-color 0.25s var(--ease-smooth),
    box-shadow 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(136, 179, 108, 0.65);
  background: #fafffe;
}

/* ─── Select: custom arrow ───────────────────── */
.form-select {
  /* Brand-green chevron icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2388B36C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 44px;
  cursor: pointer;
  /* Right inner border accent on hover */
  border-right-width: 2px;
}

.form-select:hover {
  border-right-color: var(--primary-dark);
}

/* Arrow rotates when select is open (via :focus-within sibling trick) */
.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236A964D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
}

/* Style native options (limited browser support, but improves Firefox/Chrome) */
.form-select option {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  padding: 10px 14px;
}

.form-select option:checked,
.form-select option:hover {
  background: linear-gradient(90deg, #EEF6E5, #D6E7BE);
  color: var(--primary-deep);
  font-weight: 600;
}

.form-select option[value=""] {
  color: var(--text-light);
  font-style: italic;
}

/* ─── Textarea ───────────────────────────────── */
.form-textarea {
  resize: vertical;
  min-height: 126px;
  line-height: 1.7;
  /* Brand-green resize handle via scrollbar override trick */
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.form-textarea::-webkit-resizer {
  /* The default resizer; we tint the corner with a box-shadow overlay */
  border-radius: 0 0 var(--radius-md) 0;
}

/* ─── Focus state (shared) ───────────────────── */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-dark);
  background: var(--white);
  box-shadow:
    0 0 0 3px rgba(169, 201, 138, 0.22),
    0 2px 12px rgba(136, 179, 108, 0.12);
}

/* Left accent bar on focus */
.form-group:focus-within .form-label {
  color: var(--primary-dark);
}

.form-group:focus-within .form-label i {
  color: var(--accent-dark);
  transform: scale(1.15);
  transition: transform 0.2s var(--ease-bounce), color 0.2s;
}

/* Placeholder */
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
  font-style: italic;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   CUSTOM SELECT COMPONENT  (.cs-*)
   ═══════════════════════════════════════════════════════ */

/* Hide the native select completely */
.cs-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Wrapper */
.cs-wrap {
  position: relative;
  width: 100%;
  user-select: none;
  font-family: var(--font-body);
}

/* ── Trigger Button ───────────────────────────────────── */
.cs-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid rgba(169, 201, 138, 0.40);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.25s var(--ease-smooth),
    box-shadow 0.25s var(--ease-smooth),
    background 0.22s var(--ease-smooth),
    transform 0.18s var(--ease-bounce);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.cs-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(169, 201, 138, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease-smooth);
}

.cs-trigger:hover::before {
  transform: translateX(100%);
}

.cs-trigger:hover {
  border-color: var(--primary-dark);
  background: #f8fdf4;
  box-shadow: 0 2px 12px rgba(136, 179, 108, 0.14);
  transform: translateY(-1px);
}

/* Open state */
.cs-wrap[aria-expanded="true"] .cs-trigger {
  border-color: var(--primary-dark);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow:
    0 0 0 3px rgba(169, 201, 138, 0.20),
    0 2px 12px rgba(136, 179, 108, 0.15);
  background: #f6fcf1;
}

/* Focus ring */
.cs-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(169, 201, 138, 0.35);
}

/* ── Left icon ───────────────────────────────────────── */
.cs-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(169, 201, 138, 0.20), rgba(136, 179, 108, 0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: all 0.25s var(--ease-smooth);
}

.cs-wrap[aria-expanded="true"] .cs-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(136, 179, 108, 0.35);
}

/* ── Value text ──────────────────────────────────────── */
.cs-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}

.cs-placeholder {
  color: var(--text-light);
  font-style: italic;
}

/* Selected value */
.cs-wrap.cs-has-value .cs-placeholder {
  display: none;
}

.cs-wrap.cs-has-value .cs-value {
  color: var(--dark-2);
  font-weight: 500;
  font-style: normal;
}

/* ── Chevron arrow ───────────────────────────────────── */
.cs-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
  background: rgba(169, 201, 138, 0.12);
  border-radius: 50%;
  transition:
    transform 0.35s var(--ease-bounce),
    background 0.25s,
    color 0.25s;
}

.cs-wrap[aria-expanded="true"] .cs-arrow {
  transform: rotate(180deg);
  background: rgba(136, 179, 108, 0.22);
  color: var(--primary-deep);
}

/* ── Dropdown Panel ──────────────────────────────────── */
.cs-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--primary-dark);
  border-top: none;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  box-shadow:
    0 16px 48px rgba(61, 90, 50, 0.15),
    0 4px 16px rgba(61, 90, 50, 0.08);
  z-index: 200;
  overflow: hidden;

  /* Closed state */
  opacity: 0;
  transform: scaleY(0.88) translateY(-8px);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease-smooth),
    transform 0.28s var(--ease-expo);
}

.cs-wrap[aria-expanded="true"] .cs-panel {
  opacity: 1;
  transform: scaleY(1) translateY(0);
  pointer-events: auto;
}

/* ── Search bar ──────────────────────────────────────── */
.cs-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(169, 201, 138, 0.22);
  background: #f8fdf4;
}

.cs-search-wrap i {
  font-size: 0.78rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.cs-search {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.86rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
}

.cs-search::placeholder {
  color: var(--text-light);
  font-style: italic;
}

/* ── Options list ────────────────────────────────────── */
.cs-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.cs-list::-webkit-scrollbar {
  width: 4px;
}

.cs-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ── Single option ───────────────────────────────────── */
.cs-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--dark-2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.18s var(--ease-smooth),
    color 0.18s,
    padding-left 0.2s var(--ease-smooth);
}

/* Slide-in left accent bar */
.cs-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
  transform: scaleY(0);
  transition: transform 0.2s var(--ease-bounce);
  border-radius: 0 2px 2px 0;
}

/* Icon inside option */
.cs-option i {
  font-size: 0.82rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: rgba(169, 201, 138, 0.12);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.18s;
}

/* Checkmark slot on right */
.cs-option::after {
  content: '';
  margin-left: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(169, 201, 138, 0.35);
  flex-shrink: 0;
  transition: all 0.2s var(--ease-bounce);
}

/* ── Hover state ─────────────────────────────────────── */
.cs-option:hover {
  background: linear-gradient(90deg, rgba(169, 201, 138, 0.12), rgba(214, 231, 190, 0.08));
  color: var(--primary-deep);
  padding-left: 22px;
}

.cs-option:hover::before {
  transform: scaleY(1);
}

.cs-option:hover i {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(136, 179, 108, 0.30);
}

.cs-option:hover::after {
  border-color: var(--primary);
  background: rgba(169, 201, 138, 0.10);
}

/* ── Active (mousedown) flash ────────────────────────── */
.cs-option:active {
  background: rgba(169, 201, 138, 0.22);
  transform: scale(0.98);
}

/* ── Selected state ──────────────────────────────────── */
.cs-option.cs-selected {
  background: linear-gradient(90deg, rgba(169, 201, 138, 0.18), rgba(214, 231, 190, 0.10));
  color: var(--primary-deep);
  font-weight: 600;
}

.cs-option.cs-selected::before {
  transform: scaleY(1);
}

.cs-option.cs-selected i {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.cs-option.cs-selected::after {
  content: '';
  background: var(--grad-primary);
  border-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  box-shadow: 0 2px 8px rgba(136, 179, 108, 0.40);
}

/* ── Highlighted (keyboard nav) ──────────────────────── */
.cs-option.cs-highlighted {
  background: rgba(169, 201, 138, 0.16);
  color: var(--primary-deep);
}

/* ── No results ──────────────────────────────────────── */
.cs-no-results {
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}


.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 2px solid var(--light-3);
  background: var(--light-2);
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(169, 201, 138, 0.08), rgba(214, 231, 190, 0.10));
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.6;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-med);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(169, 201, 138, 0.35);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(169, 201, 138, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-2);
  line-height: 1.4;
}

/* ─── FOOTER ─────────────────────────────────────────── */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-link:hover::before {
  width: 12px;
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(169, 201, 138, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright span {
  color: var(--accent);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--accent);
}

/* ─── FLOATING BUTTONS ───────────────────────────────── */
/* WhatsApp */
#whatsapp-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 500;
  transition: all var(--transition-med);
  animation: floatY 3s ease-in-out infinite;
  cursor: none;
}

#whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Scroll to Top */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-primary);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-med);
  cursor: none;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(169, 201, 138, 0.55);
}

/* ─── MOUSE GLOW ───────────────────────────────── */
#mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 201, 138, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="scale"] {
  transform: scale(0.92);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger]>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}

[data-stagger].animated>*:nth-child(1) {
  transition-delay: 0.0s;
}

[data-stagger].animated>*:nth-child(2) {
  transition-delay: 0.1s;
}

[data-stagger].animated>*:nth-child(3) {
  transition-delay: 0.2s;
}

[data-stagger].animated>*:nth-child(4) {
  transition-delay: 0.3s;
}

[data-stagger].animated>*:nth-child(5) {
  transition-delay: 0.4s;
}

[data-stagger].animated>*:nth-child(6) {
  transition-delay: 0.5s;
}

[data-stagger].animated>*:nth-child(7) {
  transition-delay: 0.6s;
}

[data-stagger].animated>*:nth-child(8) {
  transition-delay: 0.7s;
}

[data-stagger].animated>*:nth-child(9) {
  transition-delay: 0.8s;
}

[data-stagger].animated>* {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Global keyframes ───────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

/* ─── Services Wave Divider ─────────────────────────── */
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ─── Tilt effect utility ───────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-smooth);
}

/* ─── Utility: Visually Hidden ──────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Mobile Menu ────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 17, 32, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.nav-mobile.open {
  display: flex;
  animation: fadeInUp 0.4s var(--ease-expo);
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 40px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-align: center;
}

.nav-mobile-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(169, 201, 138, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-2);
  font-size: 1.1rem;
  cursor: none;
  border: 1px solid rgba(169, 201, 138, 0.3);
}

.nav-mobile-cta {
  margin-top: 16px;
}