/* ============================================================
   ECOLO AFRICA TOGO — Stylesheet
   Design: Minimaliste, Moderne, Écologique
   Mobile-First Responsive
============================================================ */

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

:root {
  --green-dark:   #1a4d2e;
  --green:        #2d7a3a;
  --green-mid:    #3a9a4a;
  --green-light:  #4ade80;
  --green-pale:   #e8f5e9;
  --green-ultra:  #f0faf2;
  --beige:        #f7f4ee;
  --beige-dark:   #ede8df;
  --off-white:    #fafaf8;
  --white:        #ffffff;
  --gray-100:     #f5f5f5;
  --gray-200:     #e8e8e8;
  --gray-400:     #9ca3af;
  --gray-600:     #6b7280;
  --gray-800:     #1f2937;
  --dark:         #111814;
  --dark-card:    #162118;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: 80px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(45,122,58,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-tag.light {
  color: var(--green-light);
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-sub.light {
  color: rgba(255,255,255,0.75);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,122,58,0.35);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- ANIMATIONS ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 0;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
  padding: 12px 24px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(45,122,58,0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.navbar.scrolled .brand-name {
  color: var(--green-dark);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  transition: color 0.3s;
}

.navbar.scrolled .brand-sub {
  color: var(--green);
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

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

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}

/* Nav CTA */
.nav-cta {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: var(--white);
}

.navbar.scrolled .nav-cta {
  background: var(--green);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--gray-800);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--green);
  background: var(--green-ultra);
  padding-left: 32px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,30,15,0.82) 0%,
    rgba(18,50,25,0.72) 40%,
    rgba(26,77,46,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 120px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.text-green {
  color: var(--green-light);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Hero Strip */
.hero-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 32px;
  text-align: center;
}

.strip-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.strip-item span {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.strip-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================================
   À PROPOS
============================================================ */
.about {
  background: var(--off-white);
}

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

.about-image-col {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

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

.about-img-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.img-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-img-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.about-img-card span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  display: none;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
}

/* Text side */
.about-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
}

.highlight-icon {
  width: 30px;
  height: 30px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-manager {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green);
}

.manager-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-manager strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.about-manager span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--beige);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   VALEURS
============================================================ */
.values {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.values-bg-art {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,122,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.value-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.value-card:hover {
  border-color: rgba(74,222,128,0.2);
  transform: translateY(-4px);
  background: #1c2e20;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(74,222,128,0.5);
  margin-bottom: 14px;
}

.value-icon {
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ============================================================
   GALERIE
============================================================ */
.gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   STATISTIQUES
============================================================ */
.stats {
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,15,0.92) 0%, rgba(26,77,46,0.85) 100%);
}

.stats .container {
  position: relative;
  z-index: 1;
}

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

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(74,222,128,0.3);
  transform: translateY(-4px);
}

.stat-icon {
  margin: 0 auto 14px;
  width: 52px;
  height: 52px;
  background: rgba(74,222,128,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-light);
  display: inline;
  margin-left: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--beige);
}

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

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

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

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--green);
}

/* Map Placeholder */
.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), #d4edda);
  border: 2px dashed rgba(45,122,58,0.3);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 30px;
}

.map-inner strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.map-inner span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.map-link {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.map-link:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45,122,58,0.3);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.02em;
}

.req {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,122,58,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%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;
}

.form-msg {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-msg.success {
  background: var(--green-pale);
  color: var(--green-dark);
  display: block;
  border: 1px solid rgba(45,122,58,0.25);
}

.form-msg.error {
  background: #fef2f2;
  color: #c53030;
  display: block;
  border: 1px solid rgba(197,48,48,0.2);
}

/* ============================================================
   TERMES & CONDITIONS
============================================================ */
.terms {
  background: var(--off-white);
}

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

.terms-nav {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.terms-nav h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}

.terms-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-nav ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}

.terms-nav ul li a:hover {
  color: var(--green);
  background: var(--green-pale);
  padding-left: 16px;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.terms-section p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.terms-list {
  margin-top: 12px;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.terms-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.85rem;
}

.terms-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}

.terms-contact div {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.terms-contact a {
  color: var(--green);
  font-weight: 600;
}

.terms-contact a:hover {
  color: var(--green-dark);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  padding: 60px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.footer-brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: 0.2em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 320px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-light);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--green-light);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--green-light);
}

.footer-legal span {
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL TO TOP BUTTON
============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(45,122,58,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  transform: translateY(12px);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45,122,58,0.5);
}

/* ============================================================
   RESPONSIVE — TABLET (≥ 640px)
============================================================ */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .about-img-secondary {
    display: block;
  }

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

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

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-strip {
    gap: 0;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 900px)
============================================================ */
@media (min-width: 900px) {
  .section {
    padding: 100px 0;
  }

  /* Navbar */
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .hamburger {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

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

  /* Values */
  .values-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
  }

  /* Terms */
  .terms-grid {
    grid-template-columns: 260px 1fr;
    gap: 50px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — LARGE (≥ 1100px)
============================================================ */
@media (min-width: 1100px) {
  .hero-title {
    font-size: 4rem;
  }

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

  .gallery-item.gallery-large {
    grid-column: span 2;
  }

  .gallery-item:last-child.gallery-large {
    grid-column: span 2;
  }
}

/* ============================================================
   UTILITIES
============================================================ */
::selection {
  background: var(--green);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
