/* ─────────────────────────────────────────────────
   Green Hands — Main Stylesheet
   ───────────────────────────────────────────────── */

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

:root {
  --forest:      #1A3A2A;
  --forest-mid:  #234d38;
  --sage:        #7B9E87;
  --sage-light:  #a8c4b0;
  --ivory:       #F8F5EE;
  --ivory-warm:  #f0ebe0;
  --gold:        #C9A84C;
  --gold-light:  #e2c67a;
  --white:       #FAFAF7;
  --text-dark:   #1a2a1e;
  --text-mid:    #4a6355;
  --text-light:  #7a9484;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--forest);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}
.announcement a { color: var(--gold); text-decoration: underline; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(26,58,42,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: top 0.3s;
}
nav.scrolled { top: 0; box-shadow: 0 4px 32px rgba(0,0,0,0.18); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: rgba(250,250,247,0.82);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--forest) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 98;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 20px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--gold);
  color: var(--forest) !important;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-icons a {
  color: rgba(250,250,247,0.75);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.nav-icons a:hover { color: var(--gold); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #0d2218 0%, #1A3A2A 40%, #234d38 70%, #2d6349 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 108px;
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-leaves svg {
  position: absolute;
  opacity: 0.12;
}
.leaf-1 { top: -60px; right: 5%; width: 520px; animation: sway1 8s ease-in-out infinite; }
.leaf-2 { top: 20%; right: -40px; width: 380px; animation: sway2 10s ease-in-out infinite; }
.leaf-3 { bottom: -80px; right: 15%; width: 440px; animation: sway1 12s ease-in-out infinite reverse; }
.leaf-4 { top: 10%; left: -60px; width: 280px; opacity: 0.07 !important; animation: sway2 9s ease-in-out infinite; }

@keyframes sway1 {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
}
@keyframes sway2 {
  0%, 100% { transform: rotate(4deg) scale(1); }
  50% { transform: rotate(-2deg) scale(0.98); }
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up var(--dur, 6s) linear var(--delay, 0s) infinite;
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; transform: translateY(-40px) scale(1); }
  80%  { opacity: 0.3; transform: translateY(-180px) scale(0.6); }
  100% { opacity: 0; transform: translateY(-240px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 0 48px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease forwards;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,247,0.72);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); }

.btn-outline {
  border: 1px solid rgba(250,250,247,0.4);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); color: var(--gold-light); }

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 5;
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  margin-top: 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 0 36px;
}
.marquee-sep { color: var(--forest); opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SLIDER ── */
.slider-section {
  position: relative;
  background: var(--forest);
  overflow: hidden;
  user-select: none;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-visual {
  width: 100%;
  height: 560px;
  display: block;
  position: relative;
}

.slide-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.92) 0%, rgba(10,28,18,0.5) 60%, transparent 100%);
  padding: 48px 64px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.slide-caption-text {}
.slide-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.slide-loc {
  font-size: 13px;
  color: rgba(250,250,247,0.55);
  letter-spacing: 0.04em;
}

.slide-counter {
  text-align: right;
  flex-shrink: 0;
}
.slide-counter .current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.slide-counter .total {
  font-size: 12px;
  color: rgba(250,250,247,0.35);
  letter-spacing: 0.06em;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(26,58,42,0.7);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250,250,247,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  transition: none;
}
.slider-progress.animating {
  transition: width 4.5s linear;
}

/* Pause on hover */
.slider-section:hover .slider-progress.animating {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .slide-visual { height: 320px; }
  .slide-caption { padding: 32px 20px 28px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .slide-counter { display: none; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 100px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  color: var(--sage);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 1px;
  background: var(--sage);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--sage); }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 60px;
}

/* ── SERVICES ── */
.services-bg { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(123,158,135,0.12);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,58,42,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 36px; margin-bottom: 20px; display: block; filter: saturate(1.2); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-desc { font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; }
.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { color: var(--forest); gap: 14px; }

.service-number {
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(123,158,135,0.1);
  line-height: 1;
  pointer-events: none;
}

/* ── FEATURED / ABOUT ── */
.featured-bg { background: var(--forest); }

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

.featured-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #234d38 0%, #1A3A2A 50%, #0d2218 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 28px;
  right: -28px;
  background: var(--gold);
  color: var(--forest);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  animation: spin-slow 20s linear infinite;
  padding: 10px;
}
.featured-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--forest);
  display: block;
}
.featured-badge .text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.3;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.featured-visual { position: relative; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-top: 2px;
}
.why-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.why-text p { font-size: 13px; color: rgba(250,250,247,0.55); line-height: 1.6; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ivory-warm);
  border: 1px solid var(--ivory-warm);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 60px;
}
.process-step {
  background: var(--white);
  padding: 44px 32px;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: var(--ivory); }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px; top: 44px;
  font-size: 20px;
  color: var(--sage-light);
  z-index: 2;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--ivory-warm);
  line-height: 1;
  margin-bottom: 20px;
}
.process-title { font-size: 15px; font-weight: 600; color: var(--forest); margin-bottom: 10px; letter-spacing: 0.02em; }
.process-desc { font-size: 13px; line-height: 1.7; color: var(--text-mid); }
.process-icon { font-size: 28px; display: block; margin-bottom: 16px; }

/* ── PORTFOLIO ── */
.portfolio-bg { background: var(--ivory); }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(123,158,135,0.35);
  background: transparent;
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--forest);
}
.portfolio-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.portfolio-visual {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
  overflow: hidden;
  transition: transform 0.6s;
}
.portfolio-item:first-child .portfolio-visual { aspect-ratio: 1; }
.portfolio-item:hover .portfolio-visual { transform: scale(1.04); }

/* 6-item layout: row 2 is 3 equal columns */
.portfolio-item:nth-child(n+4) {
  grid-column: span 1;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: opacity 0.3s;
}
.portfolio-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.portfolio-loc { font-size: 12px; color: rgba(250,250,247,0.6); margin-top: 4px; }

.p-gradient-1 { background: linear-gradient(135deg, #1e4a30 0%, #2d6a45 50%, #1a3a2a 100%); }
.p-gradient-2 { background: linear-gradient(135deg, #2d4a1e 0%, #4a6a2d 100%); }
.p-gradient-3 { background: linear-gradient(135deg, #1e2d4a 0%, #2d4a6a 100%); }
.p-gradient-4 { background: linear-gradient(135deg, #4a2d1e 0%, #6a4a2d 100%); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Urdu/mixed text in cards */
.testi-text[lang="ur"], .testi-text {
  font-size: 18px;
  line-height: 1.75;
}
.testi-card {
  background: var(--white);
  border: 1px solid rgba(123,158,135,0.15);
  border-radius: 4px;
  padding: 36px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(26,58,42,0.1); transform: translateY(-4px); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: block;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--ivory-warm);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: var(--ivory);
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--forest); }
.testi-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* ── INDUSTRIES ── */
.industries-bg { background: var(--forest); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.industry-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 20px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.industry-item:hover { background: rgba(201,168,76,0.12); }
.industry-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.industry-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.7);
}

/* ── SUSTAINABILITY ── */
.sustain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sustain-visual {
  background: var(--ivory);
  border-radius: 4px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sustain-stat {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(123,158,135,0.2);
  transition: border-color 0.2s, transform 0.2s;
}
.sustain-stat:hover { border-color: var(--sage); transform: scale(1.02); }
.sustain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--forest);
}
.sustain-label { font-size: 12px; color: var(--text-mid); margin-top: 6px; line-height: 1.5; }

.sustain-pledge { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.pledge-item { display: flex; gap: 16px; align-items: flex-start; }
.pledge-icon { font-size: 22px; min-width: 36px; margin-top: 2px; }
.pledge-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.pledge-text p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(100deg, var(--forest) 0%, var(--forest-mid) 60%, #2d6349 100%);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-light); }
.cta-strip p { font-size: 16px; color: rgba(250,250,247,0.6); margin-bottom: 40px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--ivory);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(123,158,135,0.2);
}
.contact-detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-detail span { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(123,158,135,0.25);
  background: var(--ivory);
  border-radius: 2px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,135,0.12);
}
textarea { min-height: 120px; resize: vertical; }

.form-submit {
  background: var(--gold);
  color: var(--forest);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-submit.sent { background: var(--forest); color: var(--white); }

/* ── FOOTER ── */
footer { background: #0d1f17; padding: 72px 48px 32px; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,250,247,0.45);
  margin: 20px 0 28px;
  max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.12); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(250,250,247,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(250,250,247,0.85); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(250,250,247,0.3); }
.footer-lang { display: flex; gap: 16px; }
.footer-lang a {
  font-size: 12px;
  color: rgba(250,250,247,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-lang a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-640 { max-width: 640px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-layout,
  .sustain-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-badge { right: 12px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-icons { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 20px 80px; }
  .hero-stats { display: none; }
  .section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .cta-strip { padding: 60px 20px; }
}
