/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary Palette — Nature & Luxury */
  --clr-forest: #1a3c2a;
  --clr-forest-deep: #0f2318;
  --clr-sage: #4a7c59;
  --clr-sage-light: #6b9e7a;
  --clr-sand: #c9a96e;
  --clr-sand-light: #ddc18f;
  --clr-sand-glow: rgba(201, 169, 110, 0.35);
  --clr-cream: #f5f0e8;
  --clr-warm-white: #faf8f4;
  --clr-charcoal: #1c1c1c;
  --clr-slate: #2a2a2a;
  --clr-text-dark: #1a1a1a;
  --clr-text-body: #3d3d3d;
  --clr-text-muted: #6b6b6b;
  --clr-white: #ffffff;
  --clr-accent-teal: #2d8c7e;
  --clr-accent-terracotta: #c76b3a;
  --clr-overlay-dark: rgba(15, 35, 24, 0.7);
  --clr-overlay-hero: linear-gradient(135deg,
      rgba(15, 35, 24, 0.82) 0%,
      rgba(26, 60, 42, 0.55) 50%,
      rgba(15, 35, 24, 0.78) 100%);
  --clr-glass: rgba(255, 255, 255, 0.08);
  --clr-glass-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Outfit', -apple-system, sans-serif;
  --font-brand: 'Inter Tight', 'Inter', sans-serif;

  /* Brand Colors (from official palette) */
  --clr-brand-green: #236537;
  --clr-brand-orange: #FF6700;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur-normal: 0.4s;
  --dur-slow: 0.6s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 40px var(--clr-sand-glow);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text-body);
  background-color: var(--clr-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--clr-sage);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--clr-text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--clr-sand), var(--clr-accent-terracotta));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 169, 110, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-forest);
  border: 2px solid var(--clr-sage);
}

.btn-outline:hover {
  background: var(--clr-forest);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  transition: transform var(--dur-fast) var(--ease-spring);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--dur-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-brand-name {
  text-shadow: none;
}

.navbar.scrolled .nav-brand-tagline {
  color: var(--clr-text-muted);
}

.navbar.scrolled .nav-links a {
  color: var(--clr-text-body);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--clr-brand-green);
  background: rgba(35, 101, 55, 0.08);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--clr-text-dark);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-name {
  font-family: var(--font-brand);
  font-size: 25px;
  font-weight: 800;
  color: var(--clr-brand-green);
  letter-spacing: -0.5px;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-brand-name span {
  color: var(--clr-brand-orange);
}

.nav-brand-tagline {
  font-family: var(--font-brand);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn {
  padding: 12px 28px;
  font-size: 13px;
}

.sidebar-socials {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease-out);
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide.active img {
  animation: heroZoom 12s ease-in-out forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-overlay-hero);
  z-index: 3;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(20px);
  padding: 10px 22px;
  border-radius: 60px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-sand-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 600px;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 80px;
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero-stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--clr-sand-light);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
}

.hero-scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-sand);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

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

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

/* ===== ABOUT SECTION ===== */
.about {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--clr-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-sage));
  color: var(--clr-white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(26, 60, 42, 0.3);
  text-align: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float-badge 6s ease-in-out infinite;
}

@keyframes float-badge {

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

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

.about-experience .exp-number {
  display: block;
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-sand);
  margin-bottom: 4px;
}

.about-experience .exp-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content .section-title {
  margin-bottom: 24px;
  text-align: left;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 3px solid var(--clr-brand-orange);
  padding-left: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--clr-text-body);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--clr-forest);
  font-size: 15px;
}

.about-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(35, 101, 55, 0.1);
  color: var(--clr-brand-green);
  border-radius: 50%;
  font-size: 12px;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-experience {
    bottom: -10px;
    right: 10px;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--clr-warm-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: var(--radius-md);
  background: var(--clr-warm-white);
  border: 1.5px solid #e8e2d7;
  overflow: visible;
  transition: transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out),
    border-color var(--dur-normal) var(--ease-out),
    background var(--dur-normal) var(--ease-out);
}

.service-card-img {
  flex: 0 0 35%;
  overflow: hidden;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-icon-wrap {
  position: absolute;
  left: 35%;
  top: 28px;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid #e8e2d7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
}

.service-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  transition: stroke var(--dur-normal) var(--ease-out);
}

.service-card-body {
  flex: 1;
  padding: 20px 16px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-body h3 {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.service-card-body p {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-dark);
  transition: color var(--dur-fast) var(--ease-out);
  margin-top: auto;
}

.service-learn-more .arrow-icon {
  transition: transform var(--dur-fast) var(--ease-spring);
}

.service-card:hover .service-learn-more .arrow-icon {
  transform: translateX(4px);
}

/* Individual Service Hover Highlights & Colors */
/* 1. Swimming Pools (Blue) */
.service-card:nth-child(1) .service-icon-wrap {
  color: #2f80ed;
}

.service-card:nth-child(1):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(45, 156, 219, 0.04) 100%);
  border-color: rgba(45, 156, 219, 0.4);
}

.service-card:nth-child(1):hover .service-icon-wrap {
  background: #2f80ed;
  border-color: #2f80ed;
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
}

/* 2. Resort Cottages (Forest Green) */
.service-card:nth-child(2) .service-icon-wrap {
  color: var(--clr-brand-green);
}

.service-card:nth-child(2):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(35, 101, 55, 0.04) 100%);
  border-color: rgba(35, 101, 55, 0.4);
}

.service-card:nth-child(2):hover .service-icon-wrap {
  background: var(--clr-brand-green);
  border-color: var(--clr-brand-green);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(35, 101, 55, 0.3);
}

/* 3. Eco-Friendly Huts (Terracotta) */
.service-card:nth-child(3) .service-icon-wrap {
  color: var(--clr-accent-terracotta);
}

.service-card:nth-child(3):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(199, 107, 58, 0.04) 100%);
  border-color: rgba(199, 107, 58, 0.4);
}

.service-card:nth-child(3):hover .service-icon-wrap {
  background: var(--clr-accent-terracotta);
  border-color: var(--clr-accent-terracotta);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(199, 107, 58, 0.3);
}

/* 4. Underground Structures (Slate / Grey) */
.service-card:nth-child(4) .service-icon-wrap {
  color: var(--clr-slate);
}

.service-card:nth-child(4):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(90, 90, 90, 0.04) 100%);
  border-color: rgba(90, 90, 90, 0.4);
}

.service-card:nth-child(4):hover .service-icon-wrap {
  background: var(--clr-slate);
  border-color: var(--clr-slate);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(42, 42, 42, 0.3);
}

/* 5. Farm Stay Buildings (Gold / Sand) */
.service-card:nth-child(5) .service-icon-wrap {
  color: var(--clr-sand);
}

.service-card:nth-child(5):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(201, 169, 110, 0.06) 100%);
  border-color: rgba(201, 169, 110, 0.4);
}

.service-card:nth-child(5):hover .service-icon-wrap {
  background: var(--clr-sand);
  border-color: var(--clr-sand);
  color: var(--clr-forest-deep);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

/* 6. Water Features (Teal / Cyan) */
.service-card:nth-child(6) .service-icon-wrap {
  color: var(--clr-accent-teal);
}

.service-card:nth-child(6):hover {
  background: linear-gradient(135deg, var(--clr-warm-white) 0%, rgba(45, 140, 126, 0.04) 100%);
  border-color: rgba(45, 140, 126, 0.4);
}

.service-card:nth-child(6):hover .service-icon-wrap {
  background: var(--clr-accent-teal);
  border-color: var(--clr-accent-teal);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(45, 140, 126, 0.3);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--clr-cream) 0%, var(--clr-warm-white) 100%);
  position: relative;
  /* Removed overflow: hidden here so the half-faded divider text at the top boundary is not clipped.
     Instead, background overflow is clipped via the .projects-decor container wrapper. */
}

.projects .faded-divider-text {
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
  font-family: var(--font-brand);
  font-size: clamp(40px, 10vw, 130px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(26, 60, 42, 0.15);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.projects .container {
  position: relative;
  z-index: 2;
}

/* Decor container to clip overflowing background items locally while leaving parent overflow visible */
.projects-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.projects-decor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 101, 55, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 101, 55, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.projects-decor::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
}

.projects .section-label {
  color: var(--clr-brand-green);
}

.projects .section-label::before {
  background: var(--clr-brand-orange);
}

.projects .section-title {
  color: var(--clr-text-dark);
}

.projects .section-subtitle {
  color: var(--clr-text-muted);
}

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

.projects-header .section-subtitle {
  margin: 0 auto;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(35, 101, 55, 0.15);
  background: rgba(255, 255, 255, 0.7);
  color: var(--clr-text-body);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-brand-green);
  color: var(--clr-white);
  border-color: var(--clr-brand-green);
  box-shadow: 0 4px 12px rgba(35, 101, 55, 0.15);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

a.project-card {
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(35, 101, 55, 0.15);
}

.project-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-card-img .card-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clr-brand-orange);
  color: var(--clr-white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  z-index: 10;
  box-shadow: 0 3px 8px rgba(255, 103, 0, 0.3);
  letter-spacing: 0.5px;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 101, 55, 0.92) 0%, rgba(35, 101, 55, 0.45) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--dur-normal);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card-body {
  padding: 28px;
}

.project-card-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-brand-orange);
  margin-bottom: 10px;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.project-card-desc {
  font-size: 14.5px;
  color: var(--clr-text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.project-meta-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--clr-brand-green);
  stroke-width: 2;
}

/* ===== PROJECTS ACTIONS ===== */
.projects-actions {
  text-align: center;
  margin-top: 50px;
}

.projects-actions .btn:hover .btn-icon {
  transform: translateY(3px);
}

.projects-actions .btn.expanded:hover .btn-icon {
  transform: translateY(-3px);
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--clr-cream) 0%, #eae4d9 100%);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 101, 55, 0.06), transparent 70%);
  pointer-events: none;
}

.process .section-label {
  color: var(--clr-sage);
}

.process .section-label::before {
  background: var(--clr-sage);
}

.process .section-title {
  color: var(--clr-text-dark);
}

.process .section-subtitle {
  color: var(--clr-text-muted);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  height: 380px;
  margin-top: 50px;
}

.process-wave {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

.process-step {
  position: relative;
  height: 100%;
}

/* Node placement centered on the wave */
.process-step.odd .process-node-wrap {
  top: 230px;
  /* Valley (100px top offset + 130px SVG offset) */
}

.process-step.even .process-node-wrap {
  top: 130px;
  /* Peak (100px top offset + 30px SVG offset) */
}

.process-node-wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 74px;
  filter: drop-shadow(0 8px 16px rgba(35, 101, 55, 0.12));
  z-index: 2;
  transition: all var(--dur-normal) var(--ease-out);
}

.process-node-border {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-brand-green), var(--clr-sage-light));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 3px;
  transition: background var(--dur-normal) var(--ease-out);
}

.process-node {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon {
  font-size: 24px;
}

/* Hover effects */
.process-step:hover .process-node-wrap {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(255, 103, 0, 0.22));
}

.process-step:hover .process-node-border {
  background: linear-gradient(135deg, var(--clr-brand-orange), var(--clr-sand));
}

/* Content Placement offset vertically */
.process-step-content {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
}

.process-step.odd .process-step-content {
  bottom: 170px;
  top: 0;
  justify-content: flex-end;
}

.process-step.even .process-step-content {
  top: 170px;
  bottom: 0;
  justify-content: flex-start;
}

.process-step-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
  transition: color var(--dur-fast);
}

.process-step:hover .process-step-content h4 {
  color: var(--clr-brand-orange);
}

.process-step-content p {
  font-size: 13.5px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* Large Background Numbers */
.process-bg-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-brand-green);
  opacity: 0.04;
  font-family: var(--font-brand);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #0d1410;
  /* Very rich dark forest charcoal */
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
}

.testimonials-heading-area {
  margin-bottom: 40px;
  position: relative;
}

.testimonials-heading-area .section-label {
  color: var(--clr-brand-orange);
}

.testimonials-heading-area .section-title {
  color: var(--clr-white);
  text-align: left;
  margin-bottom: 0;
}

.testimonials-line-decorator {
  width: 100px;
  height: 2px;
  background: var(--clr-brand-orange);
  margin-top: 15px;
}

.testimonials-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.testimonial-dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--dur-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-dark-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card-author-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
  line-height: 1.2;
}

.testimonial-card-author-info span {
  font-size: 11px;
  color: var(--clr-text-muted);
  line-height: 1.2;
  margin-bottom: 6px;
}

.testimonial-card-bar {
  width: 45px;
  height: 3px;
  background: var(--clr-brand-orange);
  border-radius: 2px;
}

.testimonial-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.testimonial-card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-style: italic;
}

.testimonials-cta-wrapper {
  display: flex;
  justify-content: center;
}

#testimonialsCtaBtn {
  background: var(--clr-brand-orange);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(255, 103, 0, 0.3);
}

#testimonialsCtaBtn:hover {
  background: #e05b00;
  box-shadow: 0 8px 25px rgba(255, 103, 0, 0.45);
  transform: translateY(-3px);
}

.testimonials-visual {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

.testimonials-visual:hover .testimonials-visual-img {
  transform: scale(1.04);
}

@media (max-width: 1199px) {
  .testimonials-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-visual {
    max-height: 400px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--clr-warm-white) 0%, var(--clr-cream) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 101, 55, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 101, 55, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}

.contact .section-label {
  color: var(--clr-brand-green);
}

.contact .section-label::before {
  background: var(--clr-brand-orange);
}

.contact .section-title {
  color: var(--clr-text-dark);
}

.contact .section-subtitle {
  color: var(--clr-text-muted);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.contact-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(35, 101, 55, 0.06);
  border: 1px solid rgba(35, 101, 55, 0.15);
  color: var(--clr-brand-green);
}

.contact-item-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-brand-green);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 16px;
  color: var(--clr-text-body);
  line-height: 1.6;
  transition: color var(--dur-fast);
}

.contact-item-content a:hover {
  color: var(--clr-brand-orange);
}

.contact-form {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.contact-form>p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-brand-green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fbfbfc;
  color: var(--clr-text-dark);
  outline: none;
  transition: all var(--dur-fast) var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-brand-green);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(35, 101, 55, 0.1);
}

.form-group select option {
  background: var(--clr-white);
  color: var(--clr-text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 24px;
  grid-column: 1 / -1;
}

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

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-sage) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  font-size: 17px;
  padding: 20px 48px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  background: var(--clr-charcoal);
}

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

.footer-brand .nav-brand-name {
  font-size: 21px;
  margin-bottom: 6px;
}

.footer-brand .nav-brand-tagline {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--dur-fast) var(--ease-out);
}

.footer-social-link:hover {
  background: var(--clr-sand);
  border-color: var(--clr-sand);
  color: var(--clr-forest-deep);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur-fast);
}

.footer-col ul li a:hover {
  color: var(--clr-sand-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--dur-fast);
}

.footer-bottom-links a:hover {
  color: var(--clr-sand-light);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--dur-fast) var(--ease-out);
  animation: whatsappPulse 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ===== PHONE FLOATING BUTTON ===== */
.phone-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00a8ff;
  display: none;
  /* Hidden on desktop */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 168, 255, 0.4);
  transition: all var(--dur-fast) var(--ease-out);
  animation: phonePulse 2.5s ease infinite;
  color: var(--clr-white);
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(0, 168, 255, 0.55);
}

.phone-float svg {
  width: 24px;
  height: 24px;
}

@keyframes phonePulse {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.4);
  }

  50% {
    box-shadow: 0 6px 25px rgba(0, 168, 255, 0.4), 0 0 0 12px rgba(0, 168, 255, 0.15);
  }
}

@media (max-width: 768px) {
  .phone-float {
    display: flex;
    /* Show on mobile/tablet */
    bottom: 85px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .phone-float svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    margin-top: 40px;
    position: relative;
  }

  .process-timeline::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 33px;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-brand-green), var(--clr-brand-orange));
    opacity: 0.15;
    z-index: 0;
  }

  .process-wave {
    display: none;
  }

  .process-step {
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 80px;
  }

  .process-step.odd .process-node-wrap,
  .process-step.even .process-node-wrap {
    top: 50%;
    left: 33px;
    transform: translate(-50%, -50%);
  }

  .process-step.odd:hover .process-node-wrap,
  .process-step.even:hover .process-node-wrap {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .process-step-content {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .process-step-content h4 {
    margin-bottom: 6px;
  }

  .process-step-content p {
    max-width: 100%;
    margin: 0;
  }

  .process-bg-number {
    left: auto;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 100px 24px 40px;
    transition: right var(--dur-normal) var(--ease-out);
    box-shadow: -5px 0 35px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sidebar-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
  }

  .sidebar-socials a {
    color: var(--clr-text-muted) !important;
    background: rgba(35, 101, 55, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: all var(--dur-fast) ease;
  }

  .sidebar-socials a:hover {
    color: var(--clr-white) !important;
    background: var(--clr-brand-green);
  }

  .sidebar-socials a svg {
    width: 18px;
    height: 18px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    padding: 14px 24px;
    color: var(--clr-text-dark);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--clr-brand-green);
    background: rgba(35, 101, 55, 0.08);
  }

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

  .nav-hamburger {
    display: flex;
  }

  .nav-hamburger.open span {
    background: var(--clr-text-dark);
  }

  .hero-content {
    padding: 120px 0 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 50px;
  }

  .hero-stat {
    border-right: none;
    padding: 0;
    min-width: 100px;
  }

  .hero-stat-number {
    font-size: 32px;
  }

  .services-grid {
    gap: 12px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card-img {
    flex: 0 0 100px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }

  .service-icon-wrap {
    left: 50%;
    top: 100px;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
  }

  .service-icon-wrap svg {
    width: 16px;
    height: 16px;
  }

  .service-card-body {
    padding: 22px 10px 12px 10px;
    text-align: center;
    align-items: center;
  }

  .service-card-body h3 {
    font-size: 13.5px;
    margin-bottom: 4px;
  }

  .service-card-body p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .service-learn-more {
    font-size: 11.5px;
    justify-content: center;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project-card-img {
    height: 130px;
  }

  .project-card-body {
    padding: 12px;
  }

  .project-card-category {
    font-size: 9.5px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .project-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .project-card-desc {
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .project-card-meta {
    gap: 8px;
  }

  .project-meta-item {
    font-size: 10px;
    gap: 4px;
  }

  .project-meta-item svg {
    width: 10px;
    height: 10px;
  }

  .footer-grid {
    gap: 32px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 13.5px;
  }

  .footer-col {
    grid-column: span 1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
  }

  .footer-col:last-child ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

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

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 576px) {
  .nav-links {
    max-width: 85vw;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card-img {
    flex: 0 0 100px;
  }

  .service-icon-wrap {
    top: 100px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card-img {
    height: 220px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .contact-form > p {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .form-grid {
    gap: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .form-submit {
    margin-top: 12px;
  }

  .form-submit .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .contact-item-content h4 {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .contact-item-content p,
  .contact-item-content a {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .footer-col:last-child ul {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0 0 clamp(60px, 8vw, 100px) 0;
  background: var(--clr-warm-white);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  display: block;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--clr-warm-white);
}

.legal-container {
  max-width: 860px;
}

.legal-updated {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

.legal-page section {
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--clr-text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--clr-text-body);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page a {
  color: var(--clr-brand-green);
  font-weight: 700;
}

/* Specific styling for the standalone projects page banner */
.projects-page-hero {
  padding: 160px 0 120px;
  background: linear-gradient(rgba(15, 35, 24, 0.5), rgba(15, 35, 24, 0.5)), url('../images/project/project_bgimage.webp') no-repeat center center/cover;
  color: var(--clr-white);
  text-align: center;
  position: relative;
}

.projects-page-hero .hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.projects-page-hero .hero-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.projects-page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.projects-page-hero p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--clr-sand-light);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Specific styling for the standalone contact page banner */
.contact-page-hero {
  padding: 160px 0 120px;
  background: linear-gradient(rgba(15, 35, 24, 0.5), rgba(15, 35, 24, 0.5)), url('../images/project/contact_bgimage.webp') no-repeat center center/cover;
  color: var(--clr-white);
  text-align: center;
  position: relative;
}

.contact-page-hero .hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.contact-page-hero .hero-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.contact-page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.contact-page-hero p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--clr-sand-light);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}
