﻿/* ============================================
  GEOSYNC â€” Eco Premium (Light) Theme
  Inspired by your reference (clean + premium),
  but with GeoSync forest-green branding.
============================================ */

:root {
  --bg: #f6f5f1;
  --bg-2: #fbfbf9;
  --paper: #ffffff;
  --paper-2: #fcfcfb;
  --text: #1a2620;
  --muted: rgba(26, 38, 32, 0.72);
  --muted-2: rgba(26, 38, 32, 0.54);
  --stroke: rgba(47, 90, 63, 0.16);
  --stroke-2: rgba(47, 90, 63, 0.28);
  --accent: #2f8e4f;   /* forest green */
  --accent-2: #256f3f;
  --accent-soft: rgba(47, 142, 79, 0.12);
  --shadow: 0 18px 50px rgba(15, 26, 20, 0.12);
  --shadow-2: 0 26px 70px rgba(15, 26, 20, 0.16);
  --radius: 18px;
  --radius-sm: 14px;
  --nav-h: 78px;
  --section-pad: 96px;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  background: radial-gradient(900px 520px at 18% 10%, rgba(47, 142, 79, 0.08), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(47, 142, 79, 0.06), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  /* overflow-x: hidden; */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #07110a;
}

.container {
  max-width: 1180px;
  padding: 0 22px;
  margin: 0 auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PRELOADER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(700px 500px at 30% 10%, rgba(47, 142, 79, 0.16), transparent 60%),
    linear-gradient(180deg, #0e1511 0%, #0b120e 100%);
  z-index: 9999;
  transition: opacity 650ms ease, visibility 650ms ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-shell {
  width: min(520px, 92vw);
  padding: 44px 36px;
  border-radius: 22px;
  background: rgba(14, 20, 16, 0.86);
  border: 1px solid rgba(47, 142, 79, 0.24);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.preloader-logo img {
  height: 44px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.55));
}

.preloader-rings {
  position: relative;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.preloader-rings .ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 1px solid rgba(47, 142, 79, 0.18);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.preloader-rings .ring-1 {
  animation: spin 2.4s linear infinite;
  border-color: rgba(47, 142, 79, 0.35);
}
.preloader-rings .ring-2 {
  width: 86px;
  height: 86px;
  animation: spin 2.9s linear infinite reverse;
  border-color: rgba(47, 142, 79, 0.22);
}
.preloader-rings .ring-3 {
  width: 60px;
  height: 60px;
  animation: spin 2.1s linear infinite;
  border-color: rgba(47, 142, 79, 0.18);
}
.preloader-rings .ring-core {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(47, 142, 79, 0.12), 0 0 40px rgba(47, 142, 79, 0.35);
}

.preloader-brand {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.12em;
  margin: 6px 0 0;
}

.preloader-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TOP PROGRESS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(47, 142, 79, 0.45));
  box-shadow: 0 0 18px rgba(47, 142, 79, 0.22);
  z-index: 1200;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1100;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(47, 90, 63, 0.12);
  transition: background 260ms var(--ease-soft), border-color 260ms var(--ease-soft);
  backdrop-filter: blur(14px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(47, 90, 63, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(15, 26, 20, 0.08);
}

.nav-container {
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(47, 142, 79, 0.08);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(47, 142, 79, 0.12);
}

.nav-cta {
  margin-left: 10px;
  background: var(--accent);
  color: #0b1a12;
  font-weight: 800;
  padding: 10px 16px;
  box-shadow: 0 16px 50px rgba(47, 142, 79, 0.18);
}

.nav-cta:hover {
  background: var(--accent-2);
  color: #07110a;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(14, 24, 18, 0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  display: block;
  transition: transform 220ms var(--ease-soft), opacity 220ms var(--ease-soft);
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   UI: Buttons
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  user-select: none;
  padding: 12px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft), background 220ms var(--ease-soft),
    color 220ms var(--ease-soft), border-color 220ms var(--ease-soft);
}

.btn i {
  font-size: 12px;
  transform: translateX(0);
  transition: transform 220ms var(--ease-soft);
}
.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: #0b1a12;
  box-shadow: 0 16px 54px rgba(47, 142, 79, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 20px 70px rgba(47, 142, 79, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 90, 63, 0.18);
  color: var(--text);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(47, 142, 79, 0.1);
  border-color: rgba(47, 90, 63, 0.28);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(26, 38, 32, 0.18);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(47, 142, 79, 0.4);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-full,
.btn--full {
  width: 100%;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SECTIONS + headings
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(47, 142, 79, 0.06) 0%, rgba(47, 142, 79, 0) 60%);
}

.section-header {
  margin-bottom: 48px;
}

.services .section-header {
  margin-bottom: 40px;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.85vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.section-subtitle,
.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 820px;
  margin: 0;
}

.section-header.centered .section-subtitle,
.section-header.centered .section-sub {
  margin: 0 auto;
}

.mini-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted-2);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   REVEAL animations (for [data-reveal])
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition: opacity 760ms var(--ease-soft), transform 760ms var(--ease-soft), filter 760ms var(--ease-soft);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal="left"] {
  transform: translateX(-56px) scale(0.985);
}
[data-reveal="right"] {
  transform: translateX(56px) scale(0.985);
}
[data-reveal="zoom"] {
  transform: translateY(18px) scale(0.94);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-stage {
  opacity: 0;
  transform: translateY(24px);
}

body.hero-ready .hero-stage {
  animation: heroStageReveal 0.8s var(--ease-soft) forwards;
  animation-delay: var(--hero-delay, 0s);
}

@keyframes heroStageReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero background like reference */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    120deg,
    rgba(6, 20, 12, 0.58) 0%,
    rgba(6, 20, 12, 0.48) 40%,
    rgba(6, 20, 12, 0.7) 100%
  ); */
  z-index: 1;
}

@media (min-width: 992px) {
  .hero::before {
    background-attachment: fixed;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(47, 142, 79, 0.35), transparent 60%),
    radial-gradient(700px 500px at 80% 70%, rgba(47, 142, 79, 0.18), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.02);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(47, 142, 79, 0.1);
  animation: dotPulse 2.6s var(--ease-soft) infinite;
}
@keyframes dotPulse {
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.08);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.55vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  margin: 0 0 16px;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(47, 142, 79, 0.12);
}

.hero-word-shell {
  display: inline;
  padding: 0 0 3px;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(47, 142, 79, 0.9);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-desc {
  max-width: 620px;
  margin: 0 0 24px;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual-wrap {
  perspective: 1200px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  border-radius: 26px;
  padding: 26px;
  /* background: rgba(255, 255, 255, 0.92); */
  background: rgb(83 173 106 / 55%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  transition: transform 300ms var(--ease-soft);
  overflow: hidden;
}

.hero-orbit {
  display: block;
  position: absolute;
  inset: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(47, 142, 79, 0.12);
  opacity: 0.55;
}
.orbit-outer {
  animation: orbitSpin 20s linear infinite;
}
.orbit-mid {
  width: 410px;
  height: 410px;
  border-style: solid;
  border-color: rgba(47, 142, 79, 0.1);
  animation: orbitSpin 16s linear infinite reverse;
}
.orbit-inner {
  width: 290px;
  height: 290px;
  border-style: solid;
  border-color: rgba(47, 142, 79, 0.08);
  animation: orbitSpin 12s linear infinite;
}
@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-node {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(10, 22, 15, 0.74);
  border: 1px solid rgba(79, 191, 69, 0.2);
  backdrop-filter: blur(10px);
  transform: translateZ(30px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.orbit-node strong {
  font-size: 18px;
  color: var(--accent);
}
.orbit-node span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.orbit-node-a {
  top: 34px;
  left: 34px;
}
.orbit-node-b {
  top: 52px;
  right: 34px;
}
.orbit-node-c {
  bottom: 40px;
  left: 85%;
  transform: translateX(-50%) translateZ(30px);
}

.hero-core-panel {
  position: relative;
  z-index: 2;
  max-width: 320px;
  margin-top: auto;
  border-radius: 22px;
  padding: 18px 18px 18px 20px;
  /* background: rgba(255, 255, 255, 0.9); */
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(47, 90, 63, 0.12);
  border-left: 3px solid rgba(47, 142, 79, 0.45);
  box-shadow: 0 20px 48px rgba(8, 14, 11, 0.14);
}
.core-label {
  margin: 0 0 8px;
  font-family: var(--font);
  color: rgba(26, 38, 32, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.hero-core-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.65vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero-core-panel p {
  margin: 0;
  font-family: var(--font);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-floating-card {
  display: none;
}
.hero-floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text);
}
.floating-card-top {
  top: 120px;
  right: -20px;
}
.floating-card-bottom {
  bottom: 40px;
  right: 18px;
  animation-duration: 6.2s;
  animation-direction: alternate-reverse;
}
@keyframes floatCard {
  to {
    transform: translate3d(0, -8px, 42px);
  }
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding-bottom: 28px;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.hero .btn-ghost:hover {
  border-color: rgba(47, 142, 79, 0.65);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 6px 10px;
  border-radius: 0;
  /* background: rgba(255, 255, 255, 0.08); */
  background: rgb(22 54 27 / 71%);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.stat-card {
  padding: 20px 16px 18px;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  text-align: center; /* center align numbers */
}
.stat-card:last-child {
  border-right: none;
}
.stat-number {
  display: block;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 2.8vw, 38px); /* pehle se bada */
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ABOUT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow);
}

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.86);
  transform: scale(1.01);
  transition: transform 650ms var(--ease-soft);
}
.about-media:hover .about-image {
  transform: scale(1.06);
}

.about-media-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 90, 63, 0.14);
  backdrop-filter: blur(12px);
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.about-media-badge i {
  color: var(--accent);
}

.about-note {
  position: absolute;
  left: 18px;
  right: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 90, 63, 0.12);
  backdrop-filter: blur(12px);
}
.note-top {
  bottom: 102px;
}
.note-bottom {
  bottom: 18px;
}
.about-note strong {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.about-content p {
  margin: 0 0 14px;
  color: var(--muted);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 24px;
}

.about-proof {
  padding: 14px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 142, 79, 0.12), rgba(47, 142, 79, 0.04));
  border: 1px solid rgba(47, 90, 63, 0.12);
}

.about-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}

.about-proof span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-pillars {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.pillar-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: var(--accent);
}
.pillar-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.services-grid--catalog {
  grid-template-columns: repeat(3, 1fr);
}

.service-card--commodity h3 {
  font-size: 14px;
}

.services-catalog-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.service-card {
  border-radius: 22px;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), border-color 240ms var(--ease-soft), background 240ms var(--ease-soft);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 90, 63, 0.22);
  background: var(--paper-2);
  box-shadow: var(--shadow-2);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.service-index {
  font-family: var(--font-display);
  font-size: 19px;
  color: rgba(47, 142, 79, 0.7);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 142, 79, 0.12);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: var(--accent);
  transition: transform 240ms var(--ease-soft), background 240ms var(--ease-soft);
}
.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(47, 142, 79, 0.16);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
}
.service-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.service-list {
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.service-list li {
  color: var(--muted);
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.service-link:hover {
  gap: 14px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROJECTS MAP (Leaflet)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-map-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(47, 90, 63, 0.16);
  background: var(--paper);
  box-shadow: var(--shadow);
}

#worldMap {
  height: 500px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 90, 63, 0.12);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 10px;
  min-width: 230px;
  pointer-events: none; /* do not block marker clicks */
}

.leaflet-container {
  cursor: grab;
}
.leaflet-container:active {
  cursor: grabbing;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  cursor: pointer;
}
.legend-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
}
.legend-dot-hq {
  background: var(--accent);
}
.legend-dot-headquarter {
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.18);
}
.legend-dot-project {
  background: #4fbf45;
}
/* Leaflet theming */
.leaflet-container {
  background: #eef2ed;
  font-family: var(--font);
}
.leaflet-control-container {
  display: none; /* keeps it clean + premium */
}
.leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border: 1px solid rgba(47, 90, 63, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}
.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.98);
}
.map-popup strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--accent);
}
.map-popup p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.leaflet-continent-label {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 11, 8, 0.62);
  border: 1px solid rgba(238, 246, 240, 0.08);
  color: rgba(238, 246, 240, 0.55);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TEAM
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-card {
  border-radius: 22px;
  padding: 20px 18px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  min-height: 220px;
}
.team-card.featured {
  grid-column: span 2;
  background: radial-gradient(700px 380px at 10% 10%, rgba(47, 142, 79, 0.14), transparent 60%),
    var(--paper);
}
.team-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}
.team-number {
  display: inline-block;
  font-family: var(--font-display);
  color: rgba(34, 197, 94, 0.55);
  font-size: 19px;
  margin-bottom: 8px;
}
.team-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
}
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.team-points {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-points span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 90, 63, 0.12);
  background: rgba(47, 142, 79, 0.08);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}



/* ── WHY BENTO ── */
.why-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.why-bento-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 260ms var(--ease-soft), border-color 260ms, box-shadow 260ms;
}

.why-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 142, 79, 0.28);
  box-shadow: var(--shadow-2);
}

/* Featured card spans full height on left */
.why-bento-card--featured {
  grid-row: span 2;
}

/* Tall card spans full height on right */
.why-bento-card--tall {
  grid-row: span 2;
}

.why-bento-img {
  overflow: hidden;
  flex-shrink: 0;
}

.why-bento-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.88);
  transition: transform 560ms var(--ease-soft), filter 380ms;
}

.why-bento-card--featured .why-bento-img img,
.why-bento-card--tall .why-bento-img img {
  height: 300px;
}

.why-bento-card:hover .why-bento-img img {
  transform: scale(1.06);
  filter: saturate(1.0) brightness(0.95);
}

.why-bento-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.why-bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* Reuse existing .why-number and .why-icon styles — no change needed */

.why-bento-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
}

.why-bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-bento {
    grid-template-columns: 1fr 1fr;
  }
  .why-bento-card--featured,
  .why-bento-card--tall {
    grid-row: span 1;
  }
  .why-bento-card--featured .why-bento-img img,
  .why-bento-card--tall .why-bento-img img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .why-bento {
    grid-template-columns: 1fr;
  }
}




/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CONTACT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-content {
  border-radius: 28px;
  padding: 24px 22px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
}
.contact-lead {
  color: var(--muted);
  margin: 0 0 18px;
}

.contact-items {
  display: grid;
  gap: 12px;
  margin: 18px 0 18px;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(47, 142, 79, 0.06);
  border: 1px solid rgba(47, 90, 63, 0.12);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 142, 79, 0.12);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: var(--accent);
}
.contact-item a {
  color: var(--text);
}
.contact-item a:hover {
  color: var(--accent);
}

.contact-form-panel {
  border-radius: 28px;
  padding: 24px 22px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
}
.form-panel-head h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.12;
}

.contact-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: grid;
  gap: 6px;
}
.form-group label {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(47, 90, 63, 0.16);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  transition: border-color 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
  font-family: var(--font);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(47, 142, 79, 0.36);
  box-shadow: 0 0 0 4px rgba(47, 142, 79, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(238, 246, 240, 0.35);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER + Back to top
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 72px 0 0;
  border-top: 1px solid rgba(47, 90, 63, 0.14);
  background: #0f1a14;
  color: rgba(255, 255, 255, 0.86);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 44px;
}
.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  max-width: 420px;
}
.footer-logo {
  height: 40px;
}
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: var(--accent);
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-soft);
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(34, 197, 94, 0.16);
}
.footer-column h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-column ul {
  display: grid;
  gap: 10px;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.footer-column a:hover {
  color: var(--accent);
}
.footer-contact li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  align-items: start;
  margin: 0 0 10px;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 2px;
}
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(47, 90, 63, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
  z-index: 1200;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  border-color: rgba(47, 142, 79, 0.34);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES PAGE (standalone)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-page-hero {
  padding-top: var(--nav-h);
  min-height: 38vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 12, 0.58) 0%, rgba(6, 20, 12, 0.72) 100%),
    url("../assets/img/InCollage_20230531_173650106-min-1024x1024.jpg") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.02);
}
.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 480px at 20% 30%, rgba(47, 142, 79, 0.28), transparent 58%);
  opacity: 0.65;
  pointer-events: none;
}
.services-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 0 44px;
}
.services-page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.services-page-hero p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}
.service-split--reverse .service-split-media {
  order: 2;
}
.service-split-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow);
  min-height: 220px;
  background: var(--paper-2);
}
.service-split-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.service-split-body .section-label {
  margin-bottom: 8px;
}
.service-split-kicker {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-split-body h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.service-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.services-page-cta {
  text-align: center;
  padding: 48px 0 64px;
}
.services-page-cta p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROJECTS PAGE (standalone)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-page-hero {
  padding-top: var(--nav-h);
  min-height: 42vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.projects-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 12, 0.62) 0%, rgba(6, 20, 12, 0.76) 100%),
    url("../assets/projects/geomap-facebook-card-1024x503.jpg") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.02);
}
.projects-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 480px at 20% 30%, rgba(47, 142, 79, 0.3), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
}
.projects-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 0 48px;
}
.projects-page-hero h1 {
  margin: 0 0 12px;
  max-width: 980px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.projects-page-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.project-page-stats-shell {
  padding-top: 28px;
}
.project-page-stats-shell .stats-grid {
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.project-page-stats-shell .stat-card {
  border-right: 1px solid rgba(47, 90, 63, 0.08);
}
.project-page-stats-shell .stat-card:last-child {
  border-right: none;
}
.project-page-stats-shell .stat-number {
  color: var(--text);
}
.project-page-stats-shell .stat-label {
  color: rgba(26, 38, 32, 0.58);
}

.project-global-showcase {
  padding-top: 16px;
}
.project-global-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
.project-global-list {
  border-radius: 24px;
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow);
}
.project-global-list {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 247, 0.97) 100%);
  padding: 22px;
  color: var(--text);
}
.project-global-list .section-label {
  color: var(--accent);
}
.project-global-list .section-title {
  margin-bottom: 8px;
  color: var(--text);
}
.project-global-list .section-subtitle {
  color: var(--muted);
}
.project-global-list-head {
  margin-bottom: 16px;
}
.project-global-group {
  margin-top: 12px;
}
.project-global-group-title {
  margin: 0 0 10px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(47, 90, 63, 0.14);
  background: rgba(47, 142, 79, 0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 38, 32, 0.72);
  font-weight: 700;
}
.project-global-group-title-green {
  background: rgba(47, 142, 79, 0.12);
  border-color: rgba(47, 142, 79, 0.2);
}
.project-global-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 90, 63, 0.12);
}
.project-global-item h3 {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text);
}
.project-global-item p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}
.project-tag {
  white-space: nowrap;
  align-self: center;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(47, 90, 63, 0.07);
  border: 1px solid rgba(47, 90, 63, 0.12);
  color: rgba(26, 38, 32, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-tag-live {
  background: rgba(47, 142, 79, 0.12);
  border-color: rgba(47, 142, 79, 0.22);
  color: var(--accent-2);
}

.project-core-map-section {
  margin-top: 18px;
}

.project-core-map-section #worldMap {
  height: 560px;
}

.projects-map-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 66, 39, 0.76);
  z-index: 3;
  pointer-events: none;
}

.project-core-map-visual {
  position: relative;
}

/* Legend colors to match the reference: base = yellow, projects = dark blue */
.project-core-map-section .legend-dot-hq {
  background: #f8cc19;
  box-shadow: 0 0 0 6px rgba(248, 204, 25, 0.14);
}
.project-core-map-section .legend-dot-headquarter {
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.18);
}
.project-core-map-section .legend-dot-project {
  background: #07145c;
}

.hq-base-connector {
  animation: connectorFlow 1.6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.35));
}

.map-route-arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #22c55e;
  filter: drop-shadow(0 2px 7px rgba(15, 26, 20, 0.24));
  transform-origin: 50% 50%;
}

.map-route-arrow-wrap {
  pointer-events: none;
}

@keyframes connectorFlow {
  to {
    stroke-dashoffset: -28;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hq-base-connector {
    animation: none;
  }
}

.project-cluster-head {
  margin-bottom: 26px;
  max-width: 760px;
}

.project-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-story-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft), border-color 240ms var(--ease-soft);
}
.project-story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
  border-color: rgba(47, 90, 63, 0.2);
}
.project-story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-story-body {
  padding: 18px 18px 20px;
}
.project-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.project-story-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 142, 79, 0.08);
  border: 1px solid rgba(47, 142, 79, 0.12);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-story-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.project-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}
.project-story-client {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(47, 90, 63, 0.1);
  color: rgba(26, 38, 32, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.project-page-cta {
  text-align: center;
  padding: 52px 0 72px;
}
.project-page-cta p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 82px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-core-panel {
    margin-top: 0;
  }
  .services-grid--catalog {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-split {
    grid-template-columns: 1fr;
  }
  .service-split--reverse .service-split-media {
    order: 0;
  }
  .project-global-shell {
    grid-template-columns: 1fr;
  }
  .project-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card.featured {
    grid-column: span 2;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 520px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 66px;
  }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(47, 90, 63, 0.2);
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(47, 90, 63, 0.14);
    box-shadow: 0 18px 44px rgba(17, 35, 24, 0.14);
    backdrop-filter: blur(18px);
    padding: 14px 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms var(--ease-soft), visibility 220ms var(--ease-soft), transform 260ms var(--ease-soft);
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links .nav-link {
    width: 100%;
    color: var(--text);
  }
  .nav-links .nav-link.active {
    color: var(--accent);
    background: rgba(47, 142, 79, 0.1);
  }
  .nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    color: #07110a;
    background: var(--accent);
  }

  .services-grid--catalog {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
  }
  .stat-card,
  .stat-card:nth-child(2n),
  .stat-card:nth-child(n + 3) {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(8, 18, 12, 0.24);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .project-global-list {
    border-radius: 18px;
  }
  .project-global-list {
    padding: 18px;
  }
  .project-story-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card.featured {
    grid-column: span 1;
  }
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  #worldMap {
    height: 440px;
  }
  .project-core-map-section #worldMap {
    height: 430px;
  }
  .project-page-stats-shell .stats-grid {
    border-radius: 18px;
  }
  .project-page-stats-shell .stat-card:nth-child(2n) {
    border-right: none;
  }
  .project-page-stats-shell .stat-card:nth-child(n + 3) {
    border-top: 1px solid rgba(47, 90, 63, 0.08);
  }
  .hero-visual {
    min-height: 300px;
    max-width: 100%;
    padding: 18px;
    border-radius: 22px;
  }
  .hero-orbit {
    width: 320px;
    height: 320px;
  }
  .orbit-mid {
    width: 245px;
    height: 245px;
  }
  .orbit-inner {
    width: 170px;
    height: 170px;
  }
  .orbit-node {
    padding: 9px 10px;
    border-radius: 13px;
  }
  .orbit-node strong {
    font-size: 15px;
  }
  .orbit-node span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .orbit-node-a {
    top: 16px;
    left: 14px;
  }
  .orbit-node-b {
    top: 24px;
    right: 14px;
  }
  .orbit-node-c {
    bottom: 16px;
  }
  .hero-core-panel {
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
  }
  .hero-core-panel h2 {
    font-size: 16px;
  }
  .hero-core-panel p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 18px);
  }
  .hero-grid {
    gap: 22px;
    padding: 34px 0 18px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-kicker {
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(27px, 9vw, 36px);
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .hero-word-shell {
    border-bottom-width: 1px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.55;
    margin: 0 auto 18px;
  }
  .hero-actions {
    justify-content: center;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 270px;
    padding: 11px 14px;
  }
  .hero-stats {
    margin-top: 0;
    padding-bottom: 18px;
  }
  .stat-card {
    padding: 14px 10px 12px;
  }
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-floating-card {
    display: none;
  }
  .hero-visual {
    min-height: 270px;
    padding: 14px;
  }
  .hero-visual-wrap {
    perspective: none;
  }
  .hero-orbit {
    width: 275px;
    height: 275px;
  }
  .orbit-mid {
    width: 210px;
    height: 210px;
  }
  .orbit-inner {
    width: 145px;
    height: 145px;
  }
  .orbit-node-a,
  .orbit-node-b {
    top: 12px;
  }
  .orbit-node-c {
    bottom: 12px;
  }
  .project-core-map-section #worldMap {
    height: 470px;
  }
  .map-legend {
    right: 10px;
    bottom: 10px;
    min-width: 190px;
    padding: 10px;
    gap: 7px;
  }
  .legend-row {
    font-size: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .preloader-shell {
    padding: 36px 22px;
  }
}

/* ============================================
   GeoSync â€” About Page Styles (about.css)
   Load AFTER css/style.css
============================================ */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-page-hero {
  padding-top: var(--nav-h);
  min-height: 42vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 12, 0.62) 0%, rgba(6, 20, 12, 0.74) 100%),
    url("../assets/img/InCollage_20230531_173650106-min-1024x1024.jpg") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.02);
}

.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 480px at 20% 30%, rgba(47, 142, 79, 0.28), transparent 58%);
  opacity: 0.65;
  pointer-events: none;
}

.about-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 0 52px;
}

.about-page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.about-page-hero p {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO STATS STRIP
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.about-stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat {
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  color: #fff;
}

.about-stat .lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 5px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   OUR STORY
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow);
}

.story-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.88);
  transition: transform 650ms var(--ease-soft);
}

.story-media:hover .story-img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 90, 63, 0.14);
  backdrop-filter: blur(12px);
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.story-badge i {
  color: var(--accent);
}

.story-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 90, 63, 0.12);
  backdrop-filter: blur(12px);
}

.story-note strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.story-body p {
  color: var(--muted);
  margin: 0 0 14px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   VALUE CARDS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.story-values {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.value-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  transition: border-color 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

.value-card:hover {
  border-color: rgba(47, 142, 79, 0.28);
  transform: translateX(4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 142, 79, 0.12);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: var(--accent);
  flex-shrink: 0;
}

.value-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-process {
  background:
    linear-gradient(180deg, rgba(47, 142, 79, 0.06), rgba(47, 142, 79, 0)),
    #f8faf7;
  border-top: 1px solid rgba(47, 90, 63, 0.10);
  border-bottom: 1px solid rgba(47, 90, 63, 0.10);
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 1040px;
  margin: 44px auto 0;
  padding: 10px 0 6px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(47, 142, 79, 0), rgba(47, 142, 79, 0.75), rgba(47, 142, 79, 0));
  border-radius: 999px;
}

.process-step {
  position: relative;
  width: min(45%, 460px);
  margin-bottom: 34px;
}

.process-step:nth-child(odd) {
  margin-right: auto;
}

.process-step:nth-child(even) {
  margin-left: auto;
}

.process-step-number {
  position: absolute;
  top: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #6fcf82);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(47, 142, 79, 0.28);
  z-index: 2;
}

.process-step:nth-child(odd) .process-step-number {
  right: -82px;
}

.process-step:nth-child(even) .process-step-number {
  left: -82px;
}

.process-step-card {
  padding: 28px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), border-color 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 142, 79, 0.28);
  box-shadow: var(--shadow-2);
}

.process-step-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
}

.process-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.process-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47, 142, 79, 0.10);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   EXPERTISE BAND
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.expertise-band {
  background: linear-gradient(135deg, rgba(47, 142, 79, 0.10) 0%, rgba(47, 142, 79, 0.04) 100%);
  border-top: 1px solid rgba(47, 90, 63, 0.12);
  border-bottom: 1px solid rgba(47, 90, 63, 0.12);
  padding: 48px 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.expertise-card {
  border-radius: 20px;
  padding: 22px 18px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  text-align: center;
  transition: transform 220ms var(--ease-soft), border-color 220ms var(--ease-soft);
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 142, 79, 0.26);
}

.expertise-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(47, 142, 79, 0.12);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: var(--accent);
  margin: 0 auto 14px;
  font-size: 18px;
}

.expertise-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expertise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TEAM GRID
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-member-card {
  border-radius: 22px;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), border-color 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
  display: flex;
  flex-direction: column;
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 142, 79, 0.24);
  box-shadow: var(--shadow-2);
}

.team-member-card.featured {
  grid-column: span 2;
  background: radial-gradient(600px 300px at 5% 10%, rgba(47, 142, 79, 0.12), transparent 60%), var(--paper);
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.featured-body {
  flex: 1;
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(47, 142, 79, 0.14);
  border: 1px solid rgba(47, 90, 63, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.team-member-card.featured .member-avatar {
  width: 70px;
  height: 70px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.member-role-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 142, 79, 0.1);
  border: 1px solid rgba(47, 90, 63, 0.16);
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 8px;
}

.team-member-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.team-member-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  flex: 1;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.member-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(47, 90, 63, 0.12);
  background: rgba(47, 142, 79, 0.07);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GLOBAL PRESENCE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.presence-band {
  padding: 56px 0;
}

.presence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.presence-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.country-pill i {
  color: var(--accent);
  font-size: 11px;
}

.presence-map-placeholder {
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow);
  padding: 22px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.presence-map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 60% 40%, rgba(47, 142, 79, 0.10), transparent 60%);
}

.presence-map-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.presence-map-text .big-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 86px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.22;
}

.presence-map-text .big-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CTA
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-cta {
  text-align: center;
  padding: 48px 0 64px;
}

.about-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline::before {
    left: 30px;
  }
  .process-step,
  .process-step:nth-child(even),
  .process-step:nth-child(odd) {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 78px;
  }
  .process-step:nth-child(even) .process-step-number,
  .process-step:nth-child(odd) .process-step-number {
    left: 1px;
    right: auto;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-img {
    height: 420px;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-member-card.featured {
    grid-column: span 2;
    flex-direction: column;
  }
  .presence-inner {
    grid-template-columns: 1fr;
  }
  .about-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat:nth-child(2) {
    border-right: none;
  }
  .about-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-full-grid {
    grid-template-columns: 1fr;
  }
  .team-member-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(47, 90, 63, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15, 26, 20, 0.14);
  min-width: 190px;
  padding: 8px;
  z-index: 500;
  list-style: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 38, 32, 0.78);
  transition: background 160ms, color 160ms;
}

.dropdown-menu li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f8e4f;
  opacity: 0.55;
  flex-shrink: 0;
}

.dropdown-menu li a:hover {
  background: rgba(47, 142, 79, 0.09);
  color: #2f8e4f;
}

/* Mobile mein dropdown band karo */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none !important;
  }
}
/* â”€â”€ PROJECTS PAGE â€” THEMED LIST SECTION â”€â”€ */
.project-global-list {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid rgba(47, 90, 63, 0.14);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 50px rgba(15, 26, 20, 0.10);
}

.project-global-group {
  margin-top: 20px;
}

.project-global-group-title {
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(47, 142, 79, 0.08);
  border: 1px solid rgba(47, 90, 63, 0.14);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 38, 32, 0.65);
  font-weight: 700;
}

.project-global-group-title-green {
  background: rgba(47, 142, 79, 0.13);
  border-color: rgba(47, 142, 79, 0.22);
  color: #256f3f;
}

.project-global-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(47, 90, 63, 0.10);
  transition: border-color 200ms, transform 200ms;
}

.project-global-item:hover {
  border-color: rgba(47, 142, 79, 0.28);
  transform: translateX(4px);
}

.project-global-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #1a2620;
  font-weight: 600;
}

.project-global-item p {
  margin: 0;
  font-size: 12px;
  color: rgba(26, 38, 32, 0.58);
}

.project-tag {
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47, 90, 63, 0.07);
  border: 1px solid rgba(47, 90, 63, 0.14);
  color: rgba(26, 38, 32, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-tag-live {
  background: rgba(47, 142, 79, 0.12);
  border-color: rgba(47, 142, 79, 0.24);
  color: #256f3f;
}/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MINERALS PAGE â€” minerals.css
   Import this AFTER your main style.css
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ HERO â”€â”€ */
.minerals-hero {
  padding-top: var(--nav-h);
  min-height: 52vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.minerals-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6,20,12,0.70) 0%, rgba(6,20,12,0.55) 50%, rgba(6,20,12,0.72) 100%),
    url("../assets/projects/Resize8-1-1024x768.jpg") center / cover no-repeat;
  filter: saturate(0.9) contrast(1.04);
}

.minerals-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 500px at 15% 40%, rgba(47,142,79,0.32), transparent 58%);
  pointer-events: none;
}

.minerals-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 0 52px;
}

.minerals-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 780px;
}

.minerals-hero p {
  margin: 0 0 28px;
  max-width: 600px;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.65;
}

.minerals-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.minerals-hero-badges {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.minerals-hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}


/* â”€â”€ INTRO SPLIT â”€â”€ */
.minerals-intro {
  padding: 84px 0;
}

.minerals-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.minerals-intro-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin: 0 0 18px;
}

.minerals-intro-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.70;
  margin: 0 0 14px;
}

.minerals-intro-body a.btn {
  margin-top: 8px;
}

/* Single Big Image */
.minerals-intro-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(47,90,63,0.14);
  box-shadow: var(--shadow-2);
  position: relative;
  height: 480px;
}

.minerals-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.92);
  transition: transform 600ms ease, filter 400ms;
}

.minerals-intro-img-wrap:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.98);
}

.minerals-intro-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(6,20,12,0.78);
  border: 1px solid rgba(47,142,79,0.35);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}


/* â”€â”€ ABOUT BAND â”€â”€ */
.minerals-about-band {
  padding: 52px 0;
  background: linear-gradient(135deg, rgba(47,142,79,0.07) 0%, rgba(47,142,79,0.03) 100%);
  border-top: 1px solid rgba(47,90,63,0.10);
  border-bottom: 1px solid rgba(47,90,63,0.10);
}

.minerals-about-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.minerals-about-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.minerals-about-inner p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.70;
  margin: 0;
}


/* â”€â”€ MINERALS CATALOG â”€â”€ */
.minerals-catalog {
  padding: 84px 0;
}

.minerals-catalog-head {
  margin-bottom: 48px;
}

.minerals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mineral-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), border-color 240ms, box-shadow 240ms;
  display: flex;
  flex-direction: column;
}

.mineral-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47,142,79,0.26);
  box-shadow: var(--shadow-2);
}

.mineral-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.mineral-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.90);
  transition: transform 500ms var(--ease-soft), filter 400ms;
}

.mineral-card:hover .mineral-card-img {
  transform: scale(1.07);
  filter: saturate(1.0) brightness(0.95);
}

.mineral-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,90,63,0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  backdrop-filter: blur(8px);
}

.mineral-card-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mineral-card-body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.mineral-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  flex: 1;
}

.mineral-grades {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.mineral-grades span {
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(47,142,79,0.08);
  border: 1px solid rgba(47,90,63,0.12);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}


/* â”€â”€ WHY CHOOSE â”€â”€ */
.minerals-why {
  padding: 80px 0;
  background: #0f1a14;
}

.minerals-why .section-label { color: #4fbf65; }
.minerals-why .section-title { color: #ffffff; }

.minerals-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.minerals-why-card {
  border-radius: 20px;
  padding: 22px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(47,142,79,0.18);
  text-align: center;
  transition: background 220ms, border-color 220ms, transform 220ms;
}

.minerals-why-card:hover {
  background: rgba(47,142,79,0.10);
  border-color: rgba(47,142,79,0.32);
  transform: translateY(-5px);
}

.minerals-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47,142,79,0.16);
  border: 1px solid rgba(47,142,79,0.22);
  color: #4fbf65;
  font-size: 18px;
  margin: 0 auto 14px;
}

.minerals-why-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.minerals-why-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
}


/* â”€â”€ CTA BANNER â”€â”€ */
.minerals-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.minerals-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6,20,12,0.72) 0%, rgba(6,20,12,0.62) 100%),
    url("../assets/projects/Resize8-1-1024x768.jpg") center / cover no-repeat;
  filter: saturate(0.8);
}

.minerals-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.minerals-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px;
}

.minerals-cta-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.minerals-cta-inner .btn-primary {
  font-size: 13px;
  padding: 14px 28px;
  letter-spacing: 0.12em;
}


/* â”€â”€ NAV DROPDOWN â”€â”€ */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(47,90,63,0.16);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15,26,20,0.14);
  min-width: 190px;
  padding: 8px;
  z-index: 500;
  list-style: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26,38,32,0.78);
  transition: background 160ms, color 160ms;
}

.dropdown-menu li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f8e4f;
  opacity: 0.55;
  flex-shrink: 0;
}

.dropdown-menu li a:hover {
  background: rgba(47,142,79,0.09);
  color: #2f8e4f;
}


/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .minerals-grid { grid-template-columns: repeat(3, 1fr); }
  .minerals-why-grid { grid-template-columns: repeat(3, 1fr); }
  .minerals-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .minerals-intro-img-wrap { height: 380px; }
}

@media (max-width: 768px) {
  .minerals-grid { grid-template-columns: repeat(2, 1fr); }
  .minerals-why-grid { grid-template-columns: repeat(2, 1fr); }
  .minerals-intro-img-wrap { height: 300px; }
  .dropdown-menu { display: none !important; }
}

@media (max-width: 480px) {
  .minerals-grid { grid-template-columns: 1fr; }
  .minerals-why-grid { grid-template-columns: 1fr 1fr; }
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NATURAL STONES PAGE â€” natural-stones.css
   Load AFTER css/style.css
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ HERO â”€â”€ */
.stones-hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stones-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6,14,10,0.78) 0%, rgba(6,14,10,0.55) 50%, rgba(6,14,10,0.80) 100%),
    url("../assets/img/naturals.png") center / cover no-repeat;
  filter: saturate(0.88) contrast(1.06);
}

.stones-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 560px at 12% 38%, rgba(47,142,79,0.28), transparent 60%);
  pointer-events: none;
}

.stones-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0 56px;
  text-align: center;
}

.stones-hero-inner .section-label {
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.28em;
  margin-bottom: 16px;
}

.stones-hero-inner h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.stones-hero-tagline {
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.stones-hero-categories {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stones-hero-categories span {
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.30);
  line-height: 1;
}

.stones-hero-categories span:last-child { border-right: none; }

.stones-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* â”€â”€ USP BAR â”€â”€ */
.stones-usp-bar {
  padding: 64px 0 72px;
  background: #f6f5f1;
  border-bottom: 1px solid rgba(47,90,63,0.10);
}

.stones-usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}

.stones-usp-card {
  text-align: center;
  padding: 28px 14px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(47,90,63,0.10);
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}

.stones-usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15,26,20,0.10);
  border-color: rgba(47,142,79,0.22);
}

.stones-usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(47,142,79,0.12);
  border: 1px solid rgba(47,90,63,0.14);
  color: var(--accent);
  font-size: 22px;
  margin: 0 auto 16px;
}

.stones-usp-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}

.stones-usp-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.58;
}

/* â”€â”€ CATEGORY CARDS â”€â”€ */
.stones-cat-head {
  text-align: center;
  margin-bottom: 20px;
}

.stones-cat-head p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.stones-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.stones-cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-soft), box-shadow 260ms, border-color 260ms;
}

.stones-cat-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-2);
  border-color: rgba(47,142,79,0.28);
}

.stones-cat-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.88);
  transition: transform 500ms var(--ease-soft), filter 380ms;
}

.stones-cat-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.0) brightness(0.95);
}

.stones-cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(transparent, rgba(6,14,10,0.75));
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}


/* â”€â”€ WHY â”€â”€ */
.stones-why {
  padding: 80px 0;
  background: #0f1a14;
}

.stones-why .section-label { color: #4fbf65; }
.stones-why .section-title { color: #ffffff; }
.stones-why .section-subtitle { color: rgba(255,255,255,0.55); max-width: 680px; margin: 0 auto; }

.stones-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.stones-why-card {
  border-radius: 20px;
  padding: 24px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(47,142,79,0.18);
  transition: background 220ms, border-color 220ms, transform 220ms;
}

.stones-why-card:hover {
  background: rgba(47,142,79,0.10);
  border-color: rgba(47,142,79,0.32);
  transform: translateY(-5px);
}

.stones-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47,142,79,0.16);
  border: 1px solid rgba(47,142,79,0.22);
  color: #4fbf65;
  font-size: 18px;
  margin-bottom: 16px;
}

.stones-why-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.stones-why-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.58;
}


/* â”€â”€ CTA â”€â”€ */
.stones-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.stones-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6,14,10,0.78) 0%, rgba(6,14,10,0.65) 100%),
    url("../assets/img/naturals.png") center / cover no-repeat;
  filter: saturate(0.8);
}

.stones-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.stones-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px;
}

.stones-cta-inner p {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.stones-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .stones-usp-grid { grid-template-columns: repeat(3, 1fr); }
  .stones-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .stones-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stones-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stones-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stones-hero-categories span { border-right: none; }
}

@media (max-width: 480px) {
  .stones-why-grid { grid-template-columns: 1fr 1fr; }
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STONES GALLERY PAGE â€” stones-gallery.css
   Used by: marbles.html, granites.html,
            sandstones.html, quartzites.html,
            cobbles.html
   Load AFTER css/style.css
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ HERO â”€â”€ */
.gallery-hero {
  padding-top: var(--nav-h);
  min-height: 48vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(6,14,10,0.80) 0%, rgba(6,14,10,0.54) 55%, rgba(6,14,10,0.82) 100%),
    var(--gallery-hero-img, url("../assets/marble/White-Dunes.jpg")) center / cover no-repeat;
  filter: saturate(0.88) contrast(1.06);
}

.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(780px 480px at 14% 42%, rgba(47,142,79,0.26), transparent 58%);
  pointer-events: none;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  padding: 44px 0 52px;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(47,142,79,0.18);
  border: 1px solid rgba(47,142,79,0.32);
  color: #6dd88a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gallery-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fbf65;
  flex-shrink: 0;
}

.gallery-hero-inner h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 780px;
}

.gallery-hero-inner p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
}

/* breadcrumb */
.gallery-breadcrumb {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-breadcrumb i { font-size: 8px; }
.gallery-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 160ms; }
.gallery-breadcrumb a:hover { color: var(--accent); }
.gallery-breadcrumb span:last-child { color: rgba(255,255,255,0.78); }


/* â”€â”€ FILTERS â”€â”€ */
.gallery-filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(246,245,241,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47,90,63,0.12);
  padding: 14px 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-item label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.filter-item select {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232f8e4f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid rgba(47,90,63,0.18);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 36px 9px 14px;
  cursor: pointer;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  min-width: 160px;
}

.filter-item select:focus {
  border-color: rgba(47,142,79,0.40);
  box-shadow: 0 0 0 3px rgba(47,142,79,0.10);
}

.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 600;
  white-space: nowrap;
}

.filter-count span {
  font-weight: 800;
  color: var(--accent);
}


/* â”€â”€ STONE GRID â”€â”€ */
.gallery-grid {
  padding: 52px 0 80px;
}

.stone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stone-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.11);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), border-color 240ms, box-shadow 240ms;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.stone-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47,142,79,0.28);
  box-shadow: var(--shadow-2);
}

.stone-img {
  position: relative;
  overflow: hidden;
}

.stone-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.90);
  transition: transform 500ms var(--ease-soft), filter 380ms;
}

.stone-card:hover .stone-img img {
  transform: scale(1.07);
  filter: saturate(1.02) brightness(0.96);
}

.stone-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,90,63,0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  backdrop-filter: blur(8px);
}

/* color dot on card */
.stone-color-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.90);
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.stone-card h3 {
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.3;
}

/* hidden state */
.stone-card[style*="display: none"],
.stone-card[style*="display:none"] {
  display: none !important;
}

/* empty state */
.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
}

.gallery-empty i {
  font-size: 36px;
  color: rgba(47,142,79,0.25);
  margin-bottom: 14px;
  display: block;
}

.gallery-empty p {
  margin: 0;
  font-size: 14px;
}


/* â”€â”€ BACK LINK â”€â”€ */
.gallery-back {
  padding: 0 0 64px;
  text-align: center;
}


/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .stone-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stone-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { gap: 10px; }
  .filter-item select { min-width: 130px; }
  .filter-count { width: 100%; }
  .gallery-hero-inner h1 { font-size: clamp(26px, 6vw, 40px); }
}

@media (max-width: 480px) {
  .stone-grid { grid-template-columns: repeat(2, 1fr); }
  .stone-img img { height: 150px; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ══════════════════════════════════════════
   TEAM PAGE — team.css (inline)
══════════════════════════════════════════ */

/* ── HERO ── */
.team-page-hero {
  padding-top: var(--nav-h);
  min-height: 62vh;
  display: block;
  position: relative;
  overflow: hidden;
}

.team-page-hero::before {
 content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 12, 0.62) 0%, rgba(6, 20, 12, 0.74) 100%),
    url("../assets/img/InCollage_20230531_173650106-min-1024x1024.jpg") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.02);
}

.team-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 500px at 16% 38%, rgba(47,142,79,0.30), transparent 58%);
  pointer-events: none;
}

.team-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 22px 100px;
  max-width: 1180px;
  margin: 0 auto;
}

.team-page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 720px;
}

.team-page-hero p {
  margin: 0;
  max-width: 580px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.65;
}


/* ── HERO STATS STRIP (inside hero) ── */
.team-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.09);
  border-top: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}

.team-stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.team-stat {
  padding: 20px 18px;
  border-right: 1px solid rgba(255,255,255,0.13);
}

.team-stat:last-child { border-right: none; }

.team-stat .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: #fff;
}

.team-stat .lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 5px;
}

/* ── INTRO BAND ── */
.team-intro-band {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(47,142,79,0.07) 0%, rgba(47,142,79,0.02) 100%);
  border-bottom: 1px solid rgba(47,90,63,0.10);
}

.team-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.team-intro-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}

.team-intro-inner p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}

/* ── TEAM GRID ── */
.team-leadership {
  background:
    radial-gradient(720px 360px at 12% 0%, rgba(47, 142, 79, 0.12), transparent 62%),
    linear-gradient(180deg, #ffffff, #f8faf7);
  border-bottom: 1px solid rgba(47,90,63,0.10);
  overflow: hidden;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 38px;
}

.leadership-card {
  display: grid;
  grid-template-columns: minmax(300px, 390px) 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 24px;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft), border-color 260ms var(--ease-soft);
}

.leadership-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47,142,79,0.28);
  box-shadow: var(--shadow-2);
}

.leadership-photo {
  position: relative;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(280px 220px at 50% 18%, rgba(47,142,79,0.18), transparent 70%),
    linear-gradient(135deg, rgba(47,142,79,0.12), rgba(47,142,79,0.04));
}

.leadership-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,20,12,0.28));
  pointer-events: none;
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.94) contrast(1.02) brightness(0.93);
  transition: transform 560ms var(--ease-soft), filter 360ms var(--ease-soft);
}

.leadership-card:hover .leadership-photo img {
  transform: scale(1.06);
  filter: saturate(1.03) brightness(0.98);
}

.leadership-content {
  padding: 18px 12px 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47,142,79,0.10);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-content h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.08;
  color: var(--text);
}

.leadership-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.leadership-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.leadership-tags span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(9, 34, 19, 0.05);
  border: 1px solid rgba(47,90,63,0.10);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.gs-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gs-team-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-soft), box-shadow 240ms, border-color 240ms;
}

.gs-team-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-2);
  border-color: rgba(47,90,63,0.22);
}

/* ── IMAGE WRAP ── */
.gs-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  background: linear-gradient(135deg, rgba(47,142,79,0.14), rgba(47,142,79,0.05));
}

/* fallback — behind image, absolute */
.gs-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.gs-img-fallback i {
  font-size: 64px;
  color: rgba(47,142,79,0.32);
}

/* actual photo — on top of fallback */
.gs-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.90) brightness(0.90);
  transition: transform 520ms var(--ease-soft), filter 380ms;
  display: block;
  z-index: 1;
}

.gs-team-card:hover .gs-img-wrap img {
  transform: scale(1.07);
  filter: saturate(1.02) brightness(0.96);
}

/* dark overlay on hover */
.gs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,20,12,0.52);
  opacity: 0;
  transition: opacity 320ms var(--ease-soft);
  pointer-events: none;
  z-index: 2;
}

.gs-team-card:hover .gs-overlay {
  opacity: 1;
}

/* social icons */
.gs-socials {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(44px);
  opacity: 0;
  transition: transform 280ms var(--ease-soft), opacity 260ms;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-team-card:hover .gs-socials {
  transform: translateY(0);
  opacity: 1;
}

.gs-soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: background 180ms, border-color 180ms;
  text-decoration: none;
}

.gs-soc-btn:hover {
  background: rgba(47,142,79,0.65);
  border-color: rgba(47,142,79,0.95);
  color: #fff;
}

/* card detail area */
.gs-detail {
  padding: 18px 18px 20px;
}

.gs-name {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.25;
}

.gs-role {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.gs-bio {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.60;
}

.gs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.gs-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47,142,79,0.08);
  border: 1px solid rgba(47,90,63,0.13);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── WHY SECTION (dark) ── */
.team-why {
  padding: 80px 0;
  background: #0f1a14;
}

.team-why .section-label { color: #4fbf65; }
.team-why .section-title { color: #ffffff; }
.team-why .section-sub { color: rgba(255,255,255,0.55); max-width: 640px; margin: 0 auto; }

.team-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.team-why-card {
  border-radius: 20px;
  padding: 24px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(47,142,79,0.18);
  transition: background 220ms, border-color 220ms, transform 220ms;
}

.team-why-card:hover {
  background: rgba(47,142,79,0.10);
  border-color: rgba(47,142,79,0.32);
  transform: translateY(-5px);
}

.team-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47,142,79,0.16);
  border: 1px solid rgba(47,142,79,0.22);
  color: #4fbf65;
  font-size: 18px;
  margin-bottom: 16px;
}

.team-why-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.team-why-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.58;
}

/* ── CTA ── */
.team-cta {
  text-align: center;
  padding: 52px 0 72px;
}

.team-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.team-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leadership-card {
    grid-template-columns: minmax(280px, 340px) 1fr;
  }
  .gs-team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-stat:nth-child(2) { border-right: none; }
  .team-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.13); }
  .team-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(28px) scale(0.985);
  }
  .leadership-card {
    grid-template-columns: 1fr;
  }
  .leadership-photo {
    min-height: 360px;
  }
  .gs-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .process-step,
  .process-step:nth-child(even),
  .process-step:nth-child(odd) {
    padding-left: 58px;
  }
  .process-timeline::before {
    left: 22px;
  }
  .process-step-number {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .process-step-card {
    padding: 20px;
  }
  .leadership-photo {
    min-height: 300px;
  }
  .leadership-content {
    padding: 0;
  }
  .gs-team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gs-img-wrap { aspect-ratio: 1 / 1.15; }
  .gs-detail { padding: 12px 12px 14px; }
  .gs-name { font-size: 13px; }
  .gs-bio { display: none; }
  .team-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-why-grid { grid-template-columns: 1fr 1fr; }
}
/* ══════════════════════════════════════════
   FEATURES SCROLL SECTION — features-scroll.css
   Load AFTER style.css
══════════════════════════════════════════ */

.features-scroll {
  background: linear-gradient(180deg, rgba(47, 142, 79, 0.05) 0%, rgba(47, 142, 79, 0) 60%);
}

.features-scroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Image left, text right */
.features-scroll-visual { order: 1; }
.features-scroll-list   { order: 2; }


.features-scroll-stack {
  transition: transform 480ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* ── LEFT LIST ── */
.features-scroll-list {
  display: flex;
  flex-direction: column;
}

.feature-scroll-item {
  /* padding: 42px 0 42px 28px; */
    padding: 64px 0 64px 28px; 
      min-height: 320px;     
  border-left: 2px solid rgba(47, 90, 63, 0.14);
  position: relative;
  opacity: 0.42;
  filter: saturate(0.7);
  transition: opacity 380ms var(--ease-soft), filter 380ms var(--ease-soft), border-color 380ms var(--ease-soft);
}

.feature-scroll-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--accent);
  transition: height 420ms var(--ease-soft);
}

.feature-scroll-item.is-active {
  opacity: 1;
  filter: saturate(1);
}

.feature-scroll-item.is-active::before {
  height: 100%;
}

.feature-scroll-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(47, 142, 79, 0.55);
  margin-bottom: 10px;
  transition: color 380ms var(--ease-soft);
}

.feature-scroll-item.is-active .feature-scroll-num {
  color: var(--accent);
}

.feature-scroll-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: var(--text);
}

.feature-scroll-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 440px;
}

/* ── RIGHT VISUAL — filmstrip pattern (Framer-style) ── */
.features-scroll-visual {
  position: relative;
}

.features-scroll-sticky {
  position: sticky;              /* ← genuine CSS sticky, no JS hacks needed */
  top: calc(var(--nav-h) + 40px);
  height: 560px;
  border-radius: 26px;
  overflow: hidden;               /* stack ke baaki panels ko chhupata hai */
  border: 1px solid rgba(47, 90, 63, 0.14);
  box-shadow: var(--shadow-2);
  background: var(--paper);
}

.features-scroll-stack {
  display: flex;
  flex-direction: column;
  transition: transform 620ms var(--ease-soft);  /* slide animation */
  will-change: transform;
}

.feature-scroll-visual-item {
  height: 560px;        /* sticky container ki height se match */
  flex-shrink: 0;
}

.feature-scroll-visual-item img,
.feature-scroll-visual-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-scroll-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features-scroll-visual {
    display: none;
  }
  .feature-scroll-item {
    padding: 26px 0 26px 22px;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .feature-scroll-item h3 {
    font-size: 17px;
  }
}

.gs-expertise { background: var(--bg); }
 
.gs-exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
}
 
.gs-exp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(47,90,63,0.10);
}
 
.gs-exp-item:last-child { border-bottom: none; }
 
.gs-exp-item--flip .gs-exp-img { order: 2; }
.gs-exp-item--flip .gs-exp-body { order: 1; }
 
.gs-exp-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(47,142,79,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
 
.gs-exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.92);
  transition: transform 500ms var(--ease-soft), filter 400ms;
}
 
.gs-exp-item:hover .gs-exp-img img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.96);
}
 
.gs-exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(6,20,12,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(47,142,79,0.30);
  display: grid;
  place-items: center;
}
 
.gs-exp-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
}
 
.gs-exp-body { }
 
.gs-exp-body .section-label {
  margin-bottom: 10px;
}
 
.gs-exp-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.18;
}
 
.gs-exp-body > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.70;
  margin: 0 0 22px;
}
 
.gs-exp-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.gs-exp-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
 
.gs-exp-points li i {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}
 
@media (max-width: 900px) {
  .gs-exp-item,
  .gs-exp-item--flip .gs-exp-img,
  .gs-exp-item--flip .gs-exp-body {
    grid-template-columns: 1fr;
    order: unset;
  }
  .gs-exp-item { gap: 24px; padding: 40px 0; }
  .gs-exp-img { aspect-ratio: 16/9; }
}



/* ══ CONTACT PAGE ══ */

/* HERO */
.contact-hero {
  padding-top: var(--nav-h);
  min-height: 44vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6,20,12,0.72) 0%, rgba(6,20,12,0.50) 55%, rgba(6,20,12,0.76) 100%),
    url("assets/img/InCollage_20230531_173650106-min-1024x1024.jpg") center / cover no-repeat;
  filter: saturate(0.85) contrast(1.05);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(740px 460px at 12% 42%, rgba(47,142,79,0.28), transparent 60%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 0 0;
}

.contact-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 12px;
  max-width: 640px;
  line-height: 1.08;
}

.contact-hero-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

/* HERO STATS STRIP — embedded at bottom */
.contact-hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  background: rgba(255,255,255,0.09);
  border-top: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
}

.contact-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip-item {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.contact-strip-item:last-child { border-right: none; }

.contact-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(47,142,79,0.22);
  border: 1px solid rgba(47,142,79,0.32);
  display: grid;
  place-items: center;
  color: #4fbf65;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-strip-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.contact-strip-item span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* MAIN CONTACT SECTION */
.contact-main {
  padding: 72px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}

/* LEFT INFO PANEL */
.contact-info { }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.contact-info > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin: 0 0 36px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  transition: border-color 220ms, transform 220ms;
}

.contact-card:hover {
  border-color: rgba(47,142,79,0.28);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(47,142,79,0.10);
  border: 1px solid rgba(47,90,63,0.14);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-card-body strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-card-body p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}

.contact-card-body a {
  color: var(--text);
  text-decoration: none;
  transition: color 180ms;
}

.contact-card-body a:hover { color: var(--accent); }

/* MAP EMBED */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
  filter: saturate(0.7) contrast(1.1);
}

/* RIGHT FORM PANEL */
.contact-form-wrap {
  background: var(--paper);
  border-radius: 28px;
  padding: 38px 36px 42px;
  border: 1px solid rgba(47,90,63,0.12);
  box-shadow: var(--shadow-2);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.contact-form-wrap > p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* FORM */
.gs-form { display: flex; flex-direction: column; gap: 16px; }

.gs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.gs-field input,
.gs-field select,
.gs-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 13px;
  border: 1px solid rgba(47,90,63,0.18);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.gs-field input:focus,
.gs-field select:focus,
.gs-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47,142,79,0.12);
}

.gs-field input::placeholder,
.gs-field textarea::placeholder { color: rgba(0,0,0,0.28); }

.gs-field textarea { resize: vertical; min-height: 110px; }

.gs-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f8e4f' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* WhatsApp row */
.gs-form-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 13px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.22);
}

.gs-form-whatsapp i { color: #25D366; font-size: 18px; }

.gs-form-whatsapp p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.gs-form-whatsapp a {
  color: #1a9e4a;
  font-weight: 600;
  text-decoration: none;
}

.gs-form-whatsapp a:hover { text-decoration: underline; }

/* Submit */
.gs-form-submit {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.gs-form-submit .btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.gs-form-note {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  text-align: center;
  width: 100%;
}

/* SUCCESS STATE */
.gs-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0;
  gap: 14px;
}

.gs-form-success i {
  font-size: 48px;
  color: var(--accent);
}

.gs-form-success h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.gs-form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* OFFICES STRIP */
.contact-offices {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(47,142,79,0.06), rgba(47,142,79,0.02));
  border-top: 1px solid rgba(47,90,63,0.09);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.office-card {
  padding: 24px 22px 26px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(47,90,63,0.11);
  box-shadow: var(--shadow);
  transition: transform 220ms, border-color 220ms;
}

.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47,142,79,0.24);
}

.office-flag {
  font-size: 26px;
  margin-bottom: 12px;
}

.office-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.office-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.58;
  margin: 0 0 14px;
}

.office-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47,142,79,0.10);
  border: 1px solid rgba(47,90,63,0.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { position: static; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .contact-strip-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .contact-form-wrap { padding: 24px 18px 28px; border-radius: 20px; }
  .gs-field-row { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
}

