@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --green:      #7FFF00;
  --green-d:    #60cc00;
  --green-soft: rgba(127,255,0,0.1);
  --green-glow: rgba(127,255,0,0.2);
  --dark:       #111318;
  --dark-2:     #1c2128;
  --text:       #1a1e2a;
  --muted:      #6b7280;
  --white:      #ffffff;
  --off:        #f5f7f9;
  --off-2:      #eef1f4;
  --border:     #e2e6eb;
  --max:        1200px;
  --radius:     10px;
  --radius-lg:  18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.22s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--dark);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-d);
  border-color: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,255,0,0.25);
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-d);
  transform: translateY(-2px);
}

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

/* ── Section headings ── */
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 14px;
}

.s-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.s-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.s-title span { color: var(--green-d); }

.s-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: all 0.3s;
}

.nav.solid {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green-d); }

/* On hero where bg is dark, logo is white */
.nav.hero-nav .nav-logo { color: var(--white); }
.nav.hero-nav .nav-links a { color: rgba(255,255,255,0.75); }
.nav.hero-nav .nav-links a:hover,
.nav.hero-nav .nav-links a.active { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.25s;
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ════════════════════════════
   HERO — full bleed image
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/company.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gradient overlay – left dark for text, right fades to show image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,19,24,0.88) 0%,
    rgba(17,19,24,0.70) 45%,
    rgba(17,19,24,0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(127,255,0,0.12);
  border: 1px solid rgba(127,255,0,0.3);
  color: #a8ff40;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero h1 span { color: var(--green); }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats strip at bottom of hero */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

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

.hero-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--green); }

.hero-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ════════════════════════════
   TRUSTED BAR
════════════════════════════ */
.trusted {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 22px 32px;
}

.trusted-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trusted-lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

.trusted-names {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.trusted-names span {
  font-size: 14px;
  font-weight: 700;
  color: var(--off-2);
  color: #b0bac8;
  letter-spacing: 0.02em;
}

/* ════════════════════════════
   SERVICES SECTION
════════════════════════════ */
.services-sec {
  padding: 96px 32px;
  background: var(--white);
}

.services-sec .wrap { max-width: var(--max); margin: 0 auto; }

.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .s-sub { margin: 0 auto; }

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

.srv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.28s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  border-color: transparent;
}

.srv-card:hover::before { background: var(--green); }

.srv-icon {
  width: 52px; height: 52px;
  background: var(--green-soft);
  border: 1px solid rgba(127,255,0,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.srv-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.srv-card p { font-size: 14px; line-height: 1.75; }

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-d);
  margin-top: 18px;
}

/* ════════════════════════════
   ABOUT PREVIEW
════════════════════════════ */
.about-sec {
  padding: 96px 32px;
  background: var(--off);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.about-badge-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.about-badge-num span { color: var(--green-d); }
.about-badge-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }

.about-checks { margin: 24px 0 32px; }

.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.about-check:last-child { border-bottom: none; }

.check-ico {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}

/* ════════════════════════════
   PROCESS SECTION
════════════════════════════ */
.process-sec {
  padding: 96px 32px;
  background: var(--white);
}

.process-sec .wrap { max-width: var(--max); margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.p-step {
  padding: 40px 40px 40px 0;
  position: relative;
}

.p-step:not(:last-child) {
  border-right: 1px dashed var(--border);
  margin-right: 40px;
}

.p-step-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-d);
  margin-bottom: 6px;
}

.p-num {
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--off-2);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.p-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.p-step p { font-size: 14px; line-height: 1.8; }

/* ════════════════════════════
   STATS STRIP (light)
════════════════════════════ */
.stats-strip {
  background: var(--dark);
  padding: 60px 32px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
}

.stat-num {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--green); }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testi-sec {
  padding: 96px 32px;
  background: var(--off);
}

.testi-sec .wrap { max-width: var(--max); margin: 0 auto; }

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

.t-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.t-card:hover {
  border-color: rgba(127,255,0,0.35);
  box-shadow: 0 12px 36px rgba(127,255,0,0.05);
}

.t-stars { color: var(--green-d); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }

.t-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.t-role { font-size: 12px; color: var(--muted); }

/* ════════════════════════════
   TEAM SECTION
════════════════════════════ */
.team-sec {
  padding: 96px 32px;
  background: var(--white);
}

.team-sec .wrap { max-width: var(--max); margin: 0 auto; }

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

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.28s, transform 0.28s;
  background: var(--white);
}

.team-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}

.team-card:hover img { transform: scale(1.04); }

.team-info {
  padding: 18px 22px;
  background: var(--white);
  border-top: 1.5px solid var(--border);
}

.team-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.team-info span { font-size: 13px; color: var(--muted); }

/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
.cta-sec {
  padding: 90px 32px;
  background: var(--off);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle green glow in center */
.cta-sec::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(127,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-sec h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}

.cta-sec h2 span { color: var(--green-d); }
.cta-sec p { font-size: 17px; color: var(--muted); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-logo { color: var(--white); font-size: 20px; }
.footer-brand .nav-logo span { color: var(--green); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green); }

/* Contact bar */
.footer-cbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fci {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.fci:last-child { border-right: none; }
.fci.hl { background: var(--green); justify-content: center; }
.fci-ico { font-size: 20px; color: var(--green); flex-shrink: 0; }
.fci.hl .fci-ico { color: var(--dark); }

.fci-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.fci-txt small { font-size: 12px; color: rgba(255,255,255,0.4); }
.fci.hl .fci-txt strong { color: var(--dark); }
.fci.hl .fci-txt small { color: rgba(0,0,0,0.5); }

.footer-btm {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-btm p { font-size: 13px; color: rgba(255,255,255,0.22); }

/* ════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════ */
.page-hero {
  padding: 130px 32px 70px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.page-hero h1 span { color: var(--green-d); }

.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ════════════════════════════
   ABOUT PAGE
════════════════════════════ */
.about-ov-sec { padding: 96px 32px; background: var(--white); }

.about-ov-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-ov-grid img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.a-stat strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.a-stat strong span { color: var(--green-d); }
.a-stat small { font-size: 13px; color: var(--muted); }

.mission-sec { padding: 96px 32px; background: var(--off); }

.mv-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}

.mv-icon { font-size: 36px; margin-bottom: 16px; }
.mv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.mv-card p  { font-size: 15px; line-height: 1.8; }

.values-sec { padding: 96px 32px; background: var(--white); }

.values-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.val-card {
  text-align: center;
  padding: 36px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.28s;
}

.val-card:hover {
  border-color: rgba(127,255,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(127,255,0,0.05);
}

.val-icon { font-size: 38px; margin-bottom: 14px; }
.val-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.val-card p  { font-size: 14px; line-height: 1.7; }

/* ════════════════════════════
   SERVICES PAGE
════════════════════════════ */
.srv-page { padding: 96px 32px; background: var(--white); }

.srv-block {
  max-width: var(--max);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.srv-block:last-child { margin-bottom: 0; }
.srv-block.rev { direction: rtl; }
.srv-block.rev > * { direction: ltr; }

.srv-block img {
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.srv-block-txt h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; }
.srv-block-txt h2 span { color: var(--green-d); }
.srv-block-txt p { font-size: 15px; line-height: 1.8; margin-bottom: 24px; }

.feat-list { list-style: none; margin-bottom: 32px; }

.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.feat-list li:last-child { border-bottom: none; }

.feat-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════
   GALLERY PAGE
════════════════════════════ */
.gallery-sec { padding: 80px 32px; background: var(--white); }
.gallery-sec .wrap { max-width: var(--max); margin: 0 auto; }

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

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.g-item img {
  width: 100%; height: 256px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,19,24,0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 18px;
}

.g-overlay h4 {
  color: var(--white);
  font-size: 14px; font-weight: 700;
  transform: translateY(6px);
  transition: transform 0.3s;
}

.g-item:hover img { transform: scale(1.06); }
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover .g-overlay h4 { transform: translateY(0); }

/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.contact-sec { padding: 96px 32px; background: var(--white); }

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ci-ico {
  width: 46px; height: 46px;
  background: var(--green-soft);
  border: 1px solid rgba(127,255,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-txt strong {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
}

.ci-txt span { font-size: 14px; color: var(--muted); }

.map-box {
  margin-top: 32px;
  border-radius: var(--radius);
  background: var(--off);
  border: 1.5px solid var(--border);
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--muted);
  font-size: 14px; font-weight: 500;
}

.c-form {
  background: var(--off);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1.5px solid var(--border);
}

.c-form h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.c-form > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

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

.fg label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text); margin-bottom: 8px;
}

.fg input, .fg textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}

.fg input:focus, .fg textarea:focus { border-color: var(--green-d); }
.fg input::placeholder, .fg textarea::placeholder { color: #b0bac8; }
.fg textarea { min-height: 130px; resize: vertical; }

.btn-sub {
  width: 100%; padding: 15px;
  background: var(--green); color: var(--dark);
  border: none; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 800;
  cursor: pointer; transition: all 0.22s;
}

.btn-sub:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,255,0,0.25);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  .about-inner, .about-ov-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }

  .services-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cbar { grid-template-columns: 1fr; }
  .fci { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .fci:last-child { border-bottom: none; }
  .srv-block { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .srv-block.rev { direction: ltr; }
  .mv-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .p-step:not(:last-child) { border-right: none; border-bottom: 1px dashed var(--border); padding-bottom: 36px; margin-right: 0; padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { display: none; }
}

@media (max-width: 640px) {
  .services-grid, .testi-grid, .values-grid,
  .gallery-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-btm { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 20px; margin-bottom: 20px; padding-right: 0; margin-right: 0; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
}
