/* ============================================================
   Modher Majeed & Partners — RV02 redesign
   Theme: deep purple / ivory-warm white / green
   ============================================================ */

:root {
  --purple: #3a2352;
  --purple-dark: #2c1a3f;
  --purple-soft: #55346f;
  --green: #8db932;
  --green-dark: #6f9427;
  --green-soft: #eef4dd;
  --ivory: #faf7f1;
  --ivory-2: #f4efe4;
  --white: #ffffff;
  --ink: #2e2438;
  --muted: #6b6175;
  --line: #e8e2d6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(58, 35, 82, 0.10);
  --shadow-sm: 0 4px 14px rgba(58, 35, 82, 0.08);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--purple); text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .serif { font-family: var(--font-serif); color: var(--purple); }

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; }
h3 { font-size: 1.18rem; }

.accent-em { color: var(--green); font-style: normal; }

/* green underline bar used under headings (as in mockups) */
.bar::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  margin-top: 0.6rem;
}
.bar.bar-center::after { margin-left: auto; margin-right: auto; }

.section { padding: 4.5rem 0; }
.section-head { max-width: 720px; margin-bottom: 2.4rem; }
.section-head p { color: var(--muted); margin-top: 1rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.22s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn.btn-primary { background: var(--purple); color: #fff; }
.btn.btn-primary:hover { background: var(--purple-dark); color: #fff; }
.btn.btn-primary .arr { color: var(--green); }

.btn.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn.btn-outline:hover { background: var(--purple); color: #fff; }

.btn.btn-light { background: #fff; color: var(--purple); }
.btn.btn-light:hover { background: var(--green); color: #fff; }

.btn.btn-green { background: var(--green); color: #fff; }
.btn.btn-green:hover { background: var(--green-dark); color: #fff; }

.link-more {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; color: var(--purple); font-size: 0.95rem;
}
.link-more .arr { color: var(--green); transition: transform 0.2s; }
.link-more:hover .arr { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand img { height: 54px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover { color: var(--purple); }
.main-nav a.active { color: var(--purple); border-bottom-color: var(--green); font-weight: 600; }
.main-nav .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid var(--purple);
  border-radius: 10px;
  width: 46px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--purple); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero slider ---------- */
.hero { padding: 2.6rem 0 3.2rem; }
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.slides { position: relative; min-height: 480px; }
.slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; visibility: visible; position: relative; }

.slide-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
/* faded transition from the text box into the picture */
.slide-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0.55) 22%, rgba(255,255,255,0) 55%);
}
.slide-body {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, var(--white) 78%, rgba(255,255,255,0));
}
.slide-kicker {
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}
/* numbered slide indicator (01 /05) as in the RV02 mockup */
.slide-num {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.slide-num span { color: var(--muted); font-weight: 400; font-size: 0.85rem; }

.slide-body h1, .slide-body h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.slide-body p { color: var(--muted); max-width: 46ch; margin-bottom: 0.65rem; }
.slide-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }

.hero-controls {
  position: absolute;
  bottom: 1.2rem; right: 1.4rem;
  display: flex; gap: 0.5rem; z-index: 5;
}
.hero-controls button {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  color: var(--purple);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-controls button:hover { background: var(--green-soft); }

.hero-dots {
  position: absolute;
  bottom: 1.55rem; left: clamp(1.8rem, 4vw, 3.4rem);
  display: flex; gap: 0.5rem; z-index: 5;
}
.hero-dots button {
  width: 34px; height: 5px;
  border: none; border-radius: 3px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.hero-dots button.active { background: var(--green); width: 52px; }

/* ---------- Service cards (homepage) ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-card h3 { font-size: 1.1rem; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge.green { background: var(--green); }

/* photo service cards (homepage, per RV02 mockup) */
.svc-card.has-photo { flex-direction: row; padding: 0; gap: 0; overflow: hidden; }
.svc-card-content {
  flex: 1.15;
  padding: 1.7rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.svc-card-content h3.bar::after { width: 30px; height: 3px; margin-top: 0.4rem; }
.svc-card-photo {
  flex: 0.85;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

/* ---------- Consultation box ---------- */
.consult-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.consult-icon svg { width: 30px; height: 30px; }
.consult-lead { display: flex; align-items: center; gap: 1.4rem; }

.consult-box {
  background:
    radial-gradient(circle at 85% 20%, rgba(141, 185, 50, 0.18), transparent 45%),
    linear-gradient(120deg, var(--purple-dark), var(--purple) 60%, var(--purple-soft));
  border-radius: var(--radius);
  color: #fff;
  padding: 2.6rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.consult-box h2 { color: #fff; margin-bottom: 0.5rem; }
.consult-box .bar::after { background: var(--green); }
.consult-box p { color: rgba(255,255,255,0.82); max-width: 56ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.85);
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.3fr;
  gap: 2.2rem;
  padding: 3.2rem 0 2.4rem;
}
.footer-brand .logo-box {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-box img { height: 64px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.site-footer h4 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer h4::after {
  content: ""; display: block; width: 28px; height: 3px;
  background: var(--green); border-radius: 2px; margin-top: 0.45rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.78); font-size: 0.93rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

.footer-contact { list-style: none; font-size: 0.93rem; }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.78); }
.footer-contact a:hover { color: var(--green); }

.newsletter {
  display: flex;
  align-items: stretch;
  margin-top: 0.9rem;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.newsletter input {
  flex: 1; min-width: 0;
  padding: 0 0.9rem;
  border: none; outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.newsletter button {
  background: var(--green); color: #fff;
  border: none;
  width: 52px;
  flex-shrink: 0;
  cursor: pointer; font-size: 1rem;
  transition: background 0.2s;
}
.newsletter button:hover { background: var(--green-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--green); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 4rem 0 3.4rem;
  background:
    linear-gradient(90deg, var(--ivory) 30%, rgba(250,247,241,0.82) 55%, rgba(250,247,241,0.45)),
    var(--page-hero-img, none) center 35% / cover no-repeat,
    var(--ivory-2);
}
.page-hero.bg-samarra { --page-hero-img: url("../assets/img/hero-samarra.jpg"); }
.page-hero.bg-tower { --page-hero-img: url("../assets/img/hero-cbi-tower.jpg"); }
.page-hero h1 { margin-bottom: 0.4rem; }
.page-hero .lead { max-width: 62ch; color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
}
.panel.panel-green { background: var(--green-soft); border-color: #dde8c2; }
.panel p + p { margin-top: 0.9rem; }
.panel p { color: var(--ink); }
.panel .muted { color: var(--muted); }

.pillars {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.3rem;
}
.pillars span {
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  letter-spacing: 0.03em;
}

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 1.1rem 0.8rem;
}
.stat b { font-family: var(--font-serif); font-size: 1.9rem; color: var(--purple); display: block; }
.stat span { font-size: 0.85rem; color: var(--muted); }

.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.founder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  padding: 1.6rem 1rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.avatar {
  width: 96px; height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--purple-soft), var(--purple-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  border: 3px solid var(--green-soft);
  outline: 2px solid var(--green);
}
img.avatar { object-fit: cover; }
.founder h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.founder span { color: var(--green-dark); font-weight: 600; font-size: 0.85rem; }

.value-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.2rem; }
.value-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.value-box .vb-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.value-box h3 { font-size: 1.1rem; }
.value-box p { color: var(--muted); font-size: 0.95rem; }
.value-box p + p { margin-top: 0.7rem; }

/* ---------- Services page ---------- */
.svc-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.svc-col .svc-col-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.svc-col h2 { font-size: 1.3rem; }
.svc-list { list-style: none; flex: 1; }
.svc-list li {
  display: flex; gap: 0.6rem;
  padding: 0.44rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list .tick { color: var(--green); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.svc-col .link-more { margin-top: 1.3rem; }

/* ---------- Why Work With Us ---------- */
.why-page {
  --why-img: url("../assets/img/hero-samarra.jpg");
  background:
    linear-gradient(180deg, rgba(250,247,241,0.30) 0px, rgba(250,247,241,0.88) 380px, var(--ivory) 640px),
    var(--why-img, none) top center / 100% auto no-repeat,
    var(--ivory);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.why-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card .wc-head { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 0.85rem; }
.why-card h3 { font-size: 1.1rem; line-height: 1.35; }
.why-card p, .why-card li { color: var(--muted); font-size: 0.95rem; }
.why-card ul { list-style: none; margin: 0.3rem 0 0.5rem; }
.why-card li { display: flex; gap: 0.5rem; padding: 0.16rem 0; }
.why-card li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---------- Challenges page (layout per RV02 mockup) ---------- */
.chal-hero {
  background:
    linear-gradient(90deg, var(--ivory) 30%, rgba(250,247,241,0.35) 55%, rgba(250,247,241,0)),
    url("../assets/img/chal-skyline.jpg") right 78% / cover no-repeat,
    var(--ivory);
}
.chal-hero-inner { display: flex; align-items: center; gap: 2.2rem; }

.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.challenge-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.challenge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.challenge-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; line-height: 1.35; }
.challenge-card h3.bar::after { width: 40px; height: 3px; margin-top: 0.45rem; }
.challenge-card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.7rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.contact-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
}
.icon-outline {
  width: 44px; height: 44px;
  border: 1.5px solid var(--green);
  border-radius: 10px;
  background: #fff;
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-outline svg { width: 20px; height: 20px; }
.map-panel { padding: 0; overflow: hidden; display: flex; }
.map-panel iframe { width: 100%; min-height: 420px; border: 0; flex: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: 0.85rem; font-weight: 600; color: var(--purple); display: block; margin-bottom: 0.35rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); background: #fff; }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; }
.form-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--green-dark);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
}

.getintouch { list-style: none; }
.getintouch li { display: flex; gap: 0.85rem; margin-bottom: 1.05rem; align-items: flex-start; }
.getintouch b { display: block; color: var(--purple); font-size: 0.92rem; }
.getintouch span, .getintouch a { color: var(--muted); font-size: 0.92rem; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 1.6rem;
}
.map-wrap iframe { width: 100%; height: 330px; border: 0; display: block; }

/* updates / topic chips */
.updates-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
}
.updates-head { display: flex; align-items: center; gap: 1.1rem; }
.updates-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.updates-icon svg { width: 26px; height: 26px; }

.chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #f2f6e6;
  border: 1.5px solid #dde8c2;
  border-radius: 12px;
  padding: 0.6rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4c661b;
  transition: all 0.2s;
  cursor: default;
}
.chip:hover { border-color: var(--green); background: var(--green-soft); }
.chip svg { width: 17px; height: 17px; color: var(--green-dark); flex-shrink: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards-3, .svc-columns, .challenge-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid-3 .map-panel { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 4%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 0.3rem; border-bottom: 1px solid var(--line); }
  .main-nav a.active { border-bottom-color: var(--line); color: var(--green-dark); }
  .main-nav .btn { margin: 0.8rem 0 0.5rem; justify-content: center; }

  .slide { grid-template-columns: 1fr; }
  .slide-media { grid-column: 1; grid-row: 1; position: absolute; inset: 0; }
  .slide-media::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 35%, rgba(255,255,255,0.75) 65%, rgba(255,255,255,0.45));
  }
  .slide-body { grid-column: 1; background: none; position: relative; padding-bottom: 5rem; }
  .slides { min-height: 560px; }
}

@media (max-width: 640px) {
  .cards-3, .svc-columns, .challenge-grid, .why-grid, .founders, .value-boxes, .form-grid, .contact-grid-3 { grid-template-columns: 1fr; }
  .consult-lead { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .section { padding: 3rem 0; }
  .consult-box { flex-direction: column; align-items: flex-start; }
  .brand img { height: 44px; }
}
