/* ============================================
   AL TASHEER MENA — MAIN STYLESHEET
   ============================================ */

/* --- Variables --- */
:root {
  --dark:        #0A1510;
  --dark-green:  #1B3D2A;
  --green:       #2A7D4F;
  --accent:      #3CB371;
  --light-green: #EEF7F1;
  --off-white:   #F8FAF8;
  --white:       #FFFFFF;
  --text:        #1C1C1C;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --radius:      8px;
  --radius-lg:   16px;
  --t:           0.28s ease;
  --max-w:       1280px;
  --nav-h:       116px;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================
   BUTTONS
   ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary      { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: #235f3d; border-color: #235f3d; }

.btn--dark         { background: var(--dark-green); color: var(--white); border-color: var(--dark-green); }
.btn--dark:hover   { background: #0f2318; border-color: #0f2318; }

.btn--outline      { background: transparent; color: var(--dark-green); border-color: var(--dark-green); }
.btn--outline:hover { background: var(--dark-green); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--dark-green); }

.btn--whatsapp     { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1EBE5A; border-color: #1EBE5A; }

/* ================
   SECTION HELPERS
   ================ */
.section { padding: 88px 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-label.white { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
}
.section-title.centered { text-align: center; }
.section-title.white    { color: var(--white); }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub.white { color: rgba(255,255,255,0.65); }

/* ================
   NAVBAR
   ================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 14px 0;
  height: auto;
  transition: padding var(--t);
}
.navbar.scrolled { padding: 10px 0; }

.navbar__inner {
  display: flex;
  align-items: center;
  height: 88px;
  background: var(--white);
  border-radius: 60px;
  padding: 8px 8px 8px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.14);
  transition: box-shadow var(--t);
  position: relative;
}
.navbar.scrolled .navbar__inner { box-shadow: 0 8px 40px rgba(0,0,0,0.22); }

/* Logo */
.navbar__logo { flex-shrink: 0; }

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

/* Nav links — absolutely centered in the pill */
.navbar__links {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  pointer-events: none;
}
.navbar__links a { pointer-events: auto; }

/* Push Connect button to the far right */
.navbar__inner > .btn { margin-left: auto; }
.navbar__inner > .btn--primary {
  width: 191px;
  height: 65px;
  padding: 0;
  justify-content: center;
  background: #25D366;
  border-color: #25D366;
  border-radius: 49px;
  font-family: 'SF Pro', var(--sans);
  font-weight: 590;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #FFFFFF;
}
.navbar__inner > .btn--primary:hover { background: #1EBE5A; border-color: #1EBE5A; }
.navbar__inner > .btn--primary i { font-size: 26px; }
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.navbar__links a:hover { color: var(--green); }
.navbar__links a:hover::after { transform: scaleX(1); }
.navbar__links a.is-active { color: var(--green); }
.navbar__links a.is-active::after { transform: scaleX(1); }

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile nav drawer */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 24px 32px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.navbar__mobile a:hover { color: var(--green); }
.navbar__mobile a.is-active { color: var(--green); font-weight: 700; }
.navbar__mobile .btn { align-self: flex-start; margin-top: 16px; }

/* ================
   HERO — HOME
   ================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: var(--nav-h) 0 56px;
  position: relative;
  background-image: url('../Figma/home/hero-background.jpg');
  background-size: cover;
  background-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4,10,7,0.82) 0%,
    rgba(4,10,7,0.40) 38%,
    transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__text {
  max-width: 560px;
}

.hero__cta {
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  margin-left: -50px;
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 5000px;
  margin-left: -50px;
}

/* ================
   SOLUTIONS — HOME
   ================ */
.solutions { background: #E2EFE9; }

.solutions__header {
  text-align: center;
  margin-bottom: 48px;
}
.solutions__header .section-title {
  font-family: 'Butler', var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #02361D;
}

/* Slider layout */
.solutions__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.solutions__viewport {
  flex: 1;
  overflow: hidden;
}

.solutions__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Arrow buttons */
.slider-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.slider-arrow:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.slider-arrow:disabled { opacity: 0.28; cursor: not-allowed; }

/* Cards */
.solution-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.solution-card__img {
  height: 220px;
  overflow: hidden;
}
.solution-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.solution-card:hover .solution-card__img img { transform: scale(1.05); }

.solution-card__body { padding: 22px 20px 24px; }
.solution-card__body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.solution-card__body p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.solutions__cta { text-align: center; }

/* ================
   ABOUT — EMPOWERING
   ================ */
.about { background: var(--white); padding: 80px 0 60px; }

.about__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 56px;
}

.about__heading {
  font-family: 'Butler', var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: #02361D;
  margin: 12px 0 28px;
}
.about__heading-nowrap { white-space: nowrap; }

.about__right p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about__cta { display: inline-block; }

/* Stats */
.stats-grid {
  display: flex;
  height: 397.14px;
  border: 1px solid #D1D9DF;
  border-radius: 20px;
  overflow: hidden;
}

/* Left: 1984 green card */
.stat-card--featured {
  flex: 0 0 437.24px;
  width: 437.24px;
  background: linear-gradient(283.4deg, #000000 -46.32%, #056738 82.45%);
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 36px 40px;
  position: relative;
  overflow: hidden;
}
.stat-bird {
  position: absolute;
  top: 14px;
  left: 45.5px;
  width: 323.88px;
  height: 293.81px;
  object-fit: contain;
  mix-blend-mode: hard-light;
  opacity: 0.3;
  pointer-events: none;
}

/* Right: white panel */
.stats-right {
  flex: 1;
  background: #FFFFFF;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
}

.stats-right__top {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 72px;
  border-bottom: 0.89px solid #D1D9DF;
}
.stats-right__top .stat-item { flex: 1; }

.stats-right__bottom {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 0 72px;
}
.stats-right__bottom .stat-item:first-child {
  flex: 0 0 232px;
}
.stats-divider-v {
  width: 0.89px;
  height: 111px;
  background: #D1D9DF;
  flex-shrink: 0;
  margin-right: 26px;
}
.stat-item--desc { flex: 1; }

/* Stat values — right panel (DM Sans, gradient) */
.stat-value {
  font-family: 'DM Sans', var(--sans);
  font-weight: 700;
  font-size: 62.95px;
  line-height: 73px;
  background: linear-gradient(83.79deg, #02361D -7.03%, #056738 97.05%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.stat-value--sm {
  font-size: 49.93px;
  line-height: 58px;
}

/* 1984 overrides — Butler, white */
.stat-card--featured .stat-value {
  font-family: 'Butler', var(--serif);
  font-size: clamp(80px, 9vw, 135px);
  font-weight: 300;
  line-height: 0.84;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

/* Labels — right panel */
.stat-label {
  font-family: 'DM Sans', var(--sans);
  font-size: 22.69px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  color: #6D747B;
}
.stat-label--sm {
  font-size: 18px;
  line-height: 23px;
}

/* "Founding Year" label */
.stat-card--featured .stat-label {
  font-family: 'DM Sans', var(--sans);
  font-size: 24.68px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.stat-desc {
  font-family: 'DM Sans', var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
  color: #6D747B;
}

/* ================
   OUR JOURNEY
   ================ */
.journey { padding: 80px 0; background: var(--white); }

.journey__inner {
  position: relative;
  height: 701px;
}

/* ── Nav buttons (absolute, left: 0) ── */
.timeline-nav {
  position: absolute;
  left: 0;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 4;
}
.timeline-nav--up {
  top: 0;
  background: #FFFFFF;
  border: 0.89px solid #929BA3;
  color: #929BA3;
}
.timeline-nav--down {
  bottom: 0;
  background: #056738;
  border: none;
  color: #FFFFFF;
}

/* ── Year labels ── */
.timeline-years {
  position: absolute;
  left: 0;
  top: 57px;
  bottom: 57px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  z-index: 4;
}

.timeline-year {
  font-family: 'Butler', var(--serif);
  font-size: 28.62px;
  font-weight: 300;
  line-height: 34px;
  color: #4E5954;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity var(--t);
}
.timeline-year:hover { opacity: 1; }
.timeline-year.active {
  font-size: 85.85px;
  line-height: 64px;
  color: #151B18;
  opacity: 1;
}

/* ── Connector: small dot + horizontal green line ── */
.journey__connector {
  position: absolute;
  top: 312px;
  left: 208px;
  display: flex;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}
.journey__dot {
  width: 6.26px;
  height: 6.26px;
  border-radius: 50%;
  background: #056738;
  flex-shrink: 0;
}
.journey__line {
  height: 0.89px;
  width: 322px;
  background: #056738;
}

/* ── Green card (behind image, starts lower) ── */
.journey__card {
  position: absolute;
  top: 78px;
  left: 429px;
  right: 0;
  bottom: 0;
  background: linear-gradient(79.92deg, #056738 -3.6%, #02361D 117.6%);
  border-radius: 0 0 0 20px;
  z-index: 1;
}
.journey__card h3 {
  position: absolute;
  top: 86px;
  left: 322px;
  right: 52px;
  font-family: 'DM Sans', var(--sans);
  font-size: 42.93px;
  font-weight: 700;
  line-height: 57px;
  color: #FFFFFF;
}
.journey__card p {
  position: absolute;
  top: 270px;
  left: 322px;
  right: 52px;
  font-family: 'DM Sans', var(--sans);
  font-size: 32.19px;
  font-weight: 300;
  line-height: 43px;
  color: rgba(255,255,255,0.9);
}

/* ── Airplane image (on top, all corners rounded) ── */
.journey__image {
  position: absolute;
  top: 0;
  left: 322px;
  width: 401px;
  height: 615px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.journey__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================
   TRUSTED BY
   ================ */
.trusted {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted__label {
  text-align: center;
  margin-bottom: 36px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #6b7280;
}

/* Clients & Partners slider */
.clients__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clients__viewport {
  flex: 1;
  overflow: hidden;
}

.clients__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.client-logo {
  flex: 0 0 calc(16.666% - 20px);
  min-width: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ================
   PROCESS STEPS
   ================ */
.process {
  padding: 88px 0 100px;
  background: #001510 url('../Figma/home/process-background.png') center/cover no-repeat;
  color: var(--white);
}

.process__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

/* "HOW IT WORKS" label with grey left bar */
.process__label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #929BA3;
  margin-bottom: 20px;
}
.process__label::before {
  content: '';
  display: block;
  width: 2.05px;
  height: 16.42px;
  background: #929BA3;
  flex-shrink: 0;
}

.process__heading {
  font-family: 'Butler', var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #FBFAF6;
  line-height: 1.21;
  margin: 0 0 16px;
}
.process__sub {
  font-family: 'DM Sans', var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: #FBFAF6;
  opacity: 0.88;
  line-height: 26px;
  max-width: 520px;
}

/* White pill CTA button */
.btn--process-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #151B18;
  border: 0.9px solid #FFFFFF;
  border-radius: 66px;
  padding: 18px 32px;
  font-family: 'DM Sans', var(--sans);
  font-size: 20px;
  font-weight: 590;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  transition: var(--t);
}
.btn--process-cta i { color: #25D366; font-size: 22px; }
.btn--process-cta:hover { background: rgba(255,255,255,0.9); }

/* Step grid */
.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
}

/* Dashed amber connector line at circle level */
.process__steps::before {
  content: '';
  position: absolute;
  top: 46px; /* center of 93.9px circle */
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #F8B400 0, #F8B400 6px,
    transparent 6px, transparent 12px
  );
  pointer-events: none;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* Circle wrapper holds the bar + the number */
.step__icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Thin green left bar beside the circle */
.step__bar {
  position: absolute;
  left: -14px;
  width: 2.41px;
  height: 42.74px;
  background: #36B503;
  flex-shrink: 0;
}

/* Circle */
.step__num {
  width: 93.9px;
  height: 93.9px;
  border-radius: 50%;
  background: #000000;
  border: 0.57px solid rgba(248, 180, 0, 0.41);
  color: #FFFFFF;
  font-family: 'DM Sans', var(--sans);
  font-size: 35.62px;
  font-weight: 700;
  letter-spacing: -0.16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: -18px 0 22px rgba(11, 130, 75, 0.55);
}

.step__title {
  font-family: 'DM Sans', var(--sans);
  font-size: 26px;
  font-weight: 600;
  color: #FBFAF6;
  line-height: 32px;
  text-transform: capitalize;
}
.step__sub {
  font-family: 'DM Sans', var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: #FBFAF6;
  line-height: 28px;
  text-transform: capitalize;
}

/* ================
   INDUSTRIES
   ================ */
.industries { padding: 88px 0 80px; background: var(--white); overflow: hidden; }

.industries__header {
  text-align: center;
  margin-bottom: 52px;
}

.industries__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #929BA3;
  margin-bottom: 16px;
}
.industries__label::before {
  content: '';
  display: block;
  width: 2.05px;
  height: 16.42px;
  background: #929BA3;
  flex-shrink: 0;
}

.industries__title {
  font-family: 'Butler', var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #02361D;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0;
}

/* Slider */
.industries__slider-wrap {
  overflow: hidden;
  margin: 0 -40px;
  padding: 0 40px;
}

.industries__track {
  display: flex;
  gap: 36px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.industry-card {
  flex: 0 0 321px;
  width: 321px;
  height: 414px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Colored overlay per card */
.industry-card--1::before { content: ''; position: absolute; inset: 0; background: rgba(16, 26, 72, 0.35); border-radius: 20px; pointer-events: none; z-index: 1; }
.industry-card--2::before { content: ''; position: absolute; inset: 0; background: rgba(16, 26, 72, 0.26); border-radius: 20px; pointer-events: none; z-index: 1; }
.industry-card--7::before { content: ''; position: absolute; inset: 0; background: rgba(90, 14, 50, 0.30); border-radius: 20px; pointer-events: none; z-index: 1; }
.industry-card--8::before { content: ''; position: absolute; inset: 0; background: rgba(14, 14, 90, 0.35); border-radius: 20px; pointer-events: none; z-index: 1; }

/* Dark bottom vignette */
.industry-card__vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 202px;
  background: linear-gradient(180deg,
    rgba(102, 102, 102, 0) 0%,
    rgba(17, 16, 16, 0.51) 44.4%,
    #000000 100%);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  z-index: 2;
}

.industry-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'DM Sans', var(--sans);
  font-size: 32.19px;
  font-weight: 500;
  line-height: 43px;
  color: #FFFFFF;
  z-index: 3;
}

/* Nav buttons */
.industries__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.ind-btn {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #151B18;
  transition: var(--t);
  flex-shrink: 0;
}
.ind-btn:hover { background: #f5f5f5; }
.ind-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ================
   CAPABILITIES
   ================ */
.capabilities { padding: 88px 0 80px; background: #E2EFE9; }

/* Header */
.capabilities__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #929BA3;
  margin-bottom: 20px;
}
.capabilities__label::before {
  content: '';
  display: block;
  width: 2.05px;
  height: 16.42px;
  background: #929BA3;
  flex-shrink: 0;
}

.capabilities__header { margin-bottom: 48px; }

.capabilities__title {
  font-family: 'Butler', var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #02361D;
  line-height: 1.2;
  flex: 0 0 auto;
  margin: 0;
}

.capabilities__sub {
  font-family: 'DM Sans', var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: #4E5954;
  line-height: 1.7;
  margin: 8px 0 0;
}

/* Feature card */
.capabilities__feature {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
}

.capabilities__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capabilities__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 10, 5, 0.72) 55%,
    rgba(0, 10, 5, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 52px 44px 52px;
}

.capabilities__featured-title {
  font-family: 'Butler', var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
  max-width: 360px;
}

/* 3 items row at bottom */
.capabilities__items {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.cap-item {
  flex: 1;
  padding: 0 36px 0 0;
}
.capabilities__items .cap-item:first-child { padding-left: 0; }

.cap-item-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  align-self: center;
  margin-right: 36px;
}

.cap-item__num {
  display: block;
  font-family: 'DM Sans', var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: #56C281;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.cap-item__title {
  font-family: 'DM Sans', var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.3;
}

.cap-item__desc {
  font-family: 'DM Sans', var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ================
   GROWTH CTA
   ================ */
.growth-cta {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.growth-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.growth-cta .container {
  position: relative;
  z-index: 1;
  padding-top: 67px;
  padding-bottom: 50px;
}

.growth-cta__inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

/* Left: heading */
.growth-cta__left { flex: 0 0 auto; }

.growth-cta__heading {
  font-family: 'DM Sans', var(--sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #FFFFFF;
  margin: 0;
}

/* Second line: "Growth" + horizontal white line */
.growth-cta__line2 {
  display: flex;
  align-items: center;
  gap: 0;
}

.growth-cta__hline {
  display: block;
  width: 334px;
  height: 1px;
  background: #FFFFFF;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Right: body text, offset down by one heading line (42px) to align with "Growth" */
.growth-cta__right {
  flex: 1;
  padding-left: 60px;
  padding-top: 42px;
}

.growth-cta__text {
  font-family: 'DM Sans', var(--sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: #FFFFFF;
  margin: 0;
  max-width: 752px;
}

/* Button aligned with "Supporting..." text */
.growth-cta__btn-wrap { text-align: left; margin-top: 32px; }

.btn--growth-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 68px;
  background: #FFFFFF;
  border: 0.9px solid #FFFFFF;
  border-radius: 40px;
  font-family: 'DM Sans', var(--sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #056738;
  text-decoration: none;
  transition: var(--t);
}
.btn--growth-cta:hover { background: rgba(255,255,255,0.9); }

/* ================
   TESTIMONIALS
   ================ */
.testimonials { padding: 88px 0; background: #E2EFE9; }

/* Header */
.testimonials__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #929BA3;
  margin-bottom: 16px;
}
.testimonials__label::before {
  content: '';
  display: block;
  width: 2.05px;
  height: 16.42px;
  background: #929BA3;
  flex-shrink: 0;
}
.testimonials__title {
  font-family: 'Butler', var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #02361D;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0 0 12px;
}
.testimonials__sub {
  font-family: 'DM Sans', var(--sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  color: #555761;
  margin: 0 0 52px;
}

/* Two-column layout */
.testimonials__inner {
  display: flex;
  align-items: flex-start;
  gap: 52px;
}

/* ── LEFT CARD ── */
.testimonial__card {
  flex: 0 0 654px;
  width: 654px;
  height: 536px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* Inner photo panel: 376×536px, left: 134px from card left */
.testimonial__photo-panel {
  position: absolute;
  left: 134px;
  top: 0;
  width: 376px;
  height: 536px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0d2a1c 0%, #056738 100%);
  overflow: hidden;
}

/* Dark overlay on photo */
.testimonial__photo-dark {
  position: absolute;
  inset: 0;
  background: #0C301F;
  opacity: 0.5;
  border-radius: 14px;
}

/* Avatar ring — center: 316px from card left, 166px from card top */
.testimonial__avatar-ring {
  position: absolute;
  left: 316px;  /* = 337-95+74 */
  top: 166px;   /* = 6722-6630+74 */
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  overflow: hidden;
  background: #C4C4C4;
  z-index: 2;
}

.testimonial__avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', var(--sans);
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #056738 0%, #02361D 100%);
  letter-spacing: 1px;
}

/* Green bar background: multiply blend so overlap with photo panel is transparent */
.testimonial__card-bg-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 347px;
  height: 153px;
  background: #056738;
  mix-blend-mode: multiply;
  border-radius: 10px;
  z-index: 3;
  pointer-events: none;
}

/* Green bar content: on top of the blended background, white text unaffected */
.testimonial__card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  top: 347px;
  height: 153px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 37px;
  z-index: 5;
}

/* Photo panel behind green bar — pointer-events none so buttons below remain clickable */
.testimonial__photo-panel { z-index: 2; pointer-events: none; }

/* Avatar ring on top of everything */
.testimonial__avatar-ring { z-index: 6; }

.testimonial__client-info { flex: 1; padding: 0 16px; }

.testimonial__name {
  font-family: 'DM Sans', var(--sans);
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: capitalize;
  line-height: 31px;
  margin-bottom: 4px;
}

.testimonial__role {
  font-family: 'DM Sans', var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: capitalize;
  line-height: 17px;
}

.t-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--t);
}
.t-btn:hover { opacity: 0.7; }

/* ── RIGHT QUOTE ── */
.testimonial__quote {
  flex: 1;
  position: relative;
  padding-top: 48px;
}

.quote-mark {
  position: absolute;
  top: -80px;
  left: -24px;
  font-family: 'DM Sans', var(--sans);
  font-size: 500px;
  line-height: 588px;
  letter-spacing: -0.1em;
  color: #000000;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial__text {
  font-family: 'DM Sans', var(--sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  color: #151B18;
  position: relative;
  z-index: 1;
  margin: 0 0 48px;
}

.testimonial__counter {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.t-count {
  font-family: 'Butler', var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 86px;
  color: #056738;
  letter-spacing: -0.025em;
}

.t-sep {
  font-family: 'Butler', var(--serif);
  font-size: 36px;
  color: #056738;
  margin: 0 2px;
}

.t-total {
  font-family: 'Butler', var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: #056738;
}

/* ================
   FAQ
   ================ */
.faq {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.faq__bg-tl {
  position: absolute;
  top: -289px;
  left: -497px;
  width: 1044px;
  opacity: 0.3;
  transform: rotate(-99.61deg);
  pointer-events: none;
  user-select: none;
}

.faq__bg-br {
  position: absolute;
  bottom: -289px;
  right: -497px;
  width: 1044px;
  opacity: 0.3;
  transform: rotate(80.39deg);
  pointer-events: none;
  user-select: none;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.faq__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #929BA3;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq__label-bar {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #929BA3;
  border-radius: 1px;
}

.faq__title {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: #151B18;
  line-height: 1.2;
}

.faq__list {
  max-width: 1064px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.faq__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__category {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #151B18;
  margin-bottom: 6px;
}

.faq__item {
  background: #F2F9F6;
  border-radius: 14px;
  overflow: hidden;
  transition: background var(--t);
}

.faq__item.open {
  background: linear-gradient(83.79deg, #02361D -7.03%, #056738 97.05%);
}

.faq__question {
  padding: 25px 34px;
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #151B18;
  text-transform: capitalize;
  transition: color var(--t);
  user-select: none;
}

.faq__item.open .faq__question {
  color: #fff;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  padding: 0 34px 26px;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

/* ================
   READY CTA (section 10)
   ================ */
.ready-cta {
  padding: 60px 0 80px;
  background: #E2EFE9;
}

.ready-cta__card {
  position: relative;
  max-width: 1274px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  padding: 78px 120px 70px;
  text-align: center;
  color: #fff;
  background:
    url('../Figma/home/ready-cta-background.png') center / cover no-repeat,
    linear-gradient(95.87deg, #02361D 4.66%, #1B3E27 121.59%);
}


.ready-cta__content {
  position: relative;
  z-index: 1;
}

.ready-cta__heading {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  max-width: 771px;
  margin: 0 auto 24px;
  text-transform: capitalize;
}

.ready-cta__sub {
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 982px;
  margin: 0 auto 48px;
}

.ready-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #151B18;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  padding: 18px 36px;
  border-radius: 66px;
  text-decoration: none;
  min-width: 291px;
  height: 68px;
  justify-content: center;
  transition: opacity var(--t);
}
.ready-cta__btn:hover { opacity: 0.88; }
.ready-cta__btn .fab { font-size: 20px; color: #25D366; }

/* ================
   FOOTER
   ================ */
.footer {
  background: #fff;
  color: #151B18;
  padding: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.4fr 1.7fr 1fr;
  gap: 0;
  align-items: stretch;
}

/* ── Col 1: dark green office panel ── */
.footer__col--office {
  background: #02361D;
  padding: 56px 44px 40px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.footer__office-heading {
  font-size: 21.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.footer__address {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer__address i { margin-top: 4px; color: #fff; flex-shrink: 0; font-size: 16px; }

.footer__contact {
  display: flex;
  flex-direction: column;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: opacity var(--t);
}
.footer__contact a:hover { opacity: 0.75; }
.footer__contact i { color: #fff; font-size: 16px; width: 18px; flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.social-btn {
  width: 43px; height: 43px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #02361D;
  transition: var(--t);
  text-decoration: none;
}
.social-btn:hover { background: var(--green); color: #fff; }

/* ── Cols 2-4: white section ── */
.footer__col {
  padding: 56px 36px 40px;
}

.footer__col h4 {
  font-size: 21.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  white-space: nowrap;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0; list-style: none; }
.footer__col ul a {
  font-size: 14.34px;
  line-height: 32px;
  color: #151B18;
  transition: color var(--t);
  display: block;
  white-space: nowrap;
}
.footer__col ul a:hover { color: var(--green); }

/* ── Footer bottom ── */
.footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(0,58,103,0.3);
  margin-left: calc(100% * 2.4 / 5.1);
}
.footer__copy {
  font-size: 14.34px;
  line-height: 32px;
  color: #151B18;
  opacity: 0.6;
}

/* ================
   SERVICES PAGE
   ================ */
.services-hero {
  min-height: clamp(560px, 51.5vw, 741px);
  display: flex;
  align-items: flex-end;
  padding: var(--nav-h) 0 90px;
  position: relative;
  background-color: #0F653B;
  background-image: url('../Figma/services/services-hero-background.png');
  background-size: cover;
  background-position: center;
}
.services-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(17, 16, 16, 0.69) 44.4%, #000000 100%);
}
.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1112px;
}
.services-hero__content h1 {
  font-family: 'Butler', var(--serif);
  font-weight: 250;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #F2F9F6;
  margin-bottom: 20px;
}
.services-hero__content p {
  font-family: 'SF Pro', var(--sans);
  font-size: 18px;
  line-height: 1.333;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  opacity: 0.8;
  max-width: 835px;
}

/* Services accordion */
.services-accordion-section { padding: 88px 0; background: #E2EFE9; }
.services-accordion-section__header { text-align: center; margin-bottom: 38px; }

.section-label--bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SF Pro', var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0;
  color: #929BA3;
  margin-bottom: 12px;
}
.section-label--bar::before {
  content: '';
  width: 2px;
  height: 16px;
  background: #929BA3;
}
.services-accordion-section__header .section-title {
  font-family: 'Butler', var(--serif);
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.196;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #02361D;
}

.accordion {
  width: 100%;
  margin: 0 auto;
}

.accordion__item {
  background: #F2F9F6;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
}
.accordion__item:last-child { margin-bottom: 0; }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 42px 22px 46px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: transparent;
}

.accordion__title {
  font-family: 'DM Sans', var(--sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.308;
  color: #151B18;
}

.accordion__icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #C2E9D7;
  flex-shrink: 0;
  transition: background var(--t);
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: #151B18;
  transform: translate(-50%, -50%);
  transition: transform var(--t), background var(--t);
}
.accordion__icon::before { width: 16px; height: 2px; }
.accordion__icon::after  { width: 2px; height: 16px; }

.accordion__item.open .accordion__icon { background: #0B824B; }
.accordion__item.open .accordion__icon::before,
.accordion__item.open .accordion__icon::after { background: #FFFFFF; }
.accordion__item.open .accordion__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__item.open .accordion__content { max-height: 700px; }

.accordion__body { padding: 0 46px 40px; }
.accordion__body > p {
  font-family: 'DM Sans', var(--sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333;
  color: #000000;
  opacity: 0.7;
  margin-bottom: 24px;
  max-width: 1131px;
}

.service-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-carousel__nav {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: opacity var(--t);
}
.service-carousel__nav--prev {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.17);
  color: #151B18;
}
.service-carousel__nav--next {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.17);
  color: #FFFFFF;
}
.service-carousel__nav:hover { opacity: 0.8; }

.service-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.service-img {
  height: 204px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-green);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Placeholders (used where no photo is set) */
.service-img:nth-child(1) { background: linear-gradient(135deg, #1B3D2A, #2D604A); }
.service-img:nth-child(2) { background: linear-gradient(135deg, #1a2d3a, #2d4a60); }
.service-img:nth-child(3) { background: linear-gradient(135deg, #2a2a1a, #3d3d2a); }
.service-img:nth-child(4) { background: linear-gradient(135deg, #1a1a2d, #2d2a3d); }
.service-img:has(img) { background: none; }

.accordion__cta { text-align: center; padding-top: 44px; }
.accordion__cta .btn--whatsapp {
  width: 291px;
  height: 68px;
  padding: 0;
  justify-content: center;
  border: 0.9px solid #FFFFFF;
  border-radius: 66px;
  font-family: 'SF Pro', var(--sans);
  font-weight: 590;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #151B18;
}
.accordion__cta .btn--whatsapp i { color: #FFFFFF; font-size: 26px; }

/* ================
   CONTACT PAGE
   ================ */
.contact-hero {
  min-height: clamp(460px, 44.7vw, 644px);
  display: flex;
  align-items: flex-end;
  padding: var(--nav-h) 0 167px;
  position: relative;
  background-color: #0F653B;
  background-image:
    linear-gradient(rgba(4, 41, 23, 0.5), rgba(4, 41, 23, 0.5)),
    url('../Figma/contact/contact-hero-background.png');
  background-size: cover;
  background-position: center;
}
.contact-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(17, 16, 16, 0.514423) 41.47%, #000000 93.4%);
}
.contact-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1112px;
}
.contact-hero__content h1 {
  font-family: 'Butler', var(--serif);
  font-weight: 250;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #F2F9F6;
  margin-bottom: 8px;
}
.contact-hero__content p {
  font-family: 'SF Pro', var(--sans);
  font-size: 18px;
  line-height: 1.333;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  opacity: 0.8;
  max-width: 835px;
}

.contact-info {
  position: relative;
  display: flow-root;
  background: #E2EFE9;
  padding-bottom: 40px;
}
.contact-info__grid {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
.contact-info__card {
  height: 199px;
  background: #F8F9FD;
  box-shadow: 0 23px 23px #C7DED4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-info__icon {
  width: 83px; height: 82px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #D8ECE3;
  color: #0B824B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-info__label {
  font-family: 'SF Pro', var(--sans);
  font-weight: 510;
  font-size: 18px;
  line-height: 1.444;
  color: #3D3B3B;
  margin-bottom: 6px;
}
.contact-info__value {
  font-family: 'SF Pro', var(--sans);
  font-weight: 510;
  font-size: 20px;
  line-height: 1.6;
  color: #011109;
}

.contact-form-section { padding: 88px 0; background: #E2EFE9; }
.contact-form-section__header { margin-bottom: 40px; }
.contact-form-section__header .section-title {
  font-family: 'Butler', var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.196;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #02361D;
  max-width: 845px;
  margin-bottom: 14px;
}
.contact-form-section__header .section-sub {
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #1E1E1E;
  max-width: 671px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 59fr 41fr;
  gap: 28px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 10px; }
.contact-form__field label {
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #02361D;
}
.contact-form__field label .req { color: var(--green); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 66px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(2, 54, 29, 0.16);
  background: #F8F9FD;
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t);
}
.contact-form__field input::placeholder,
.contact-form__field select,
.contact-form__field textarea::placeholder { color: #4E5954; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { border-color: var(--green); }
.contact-form__field textarea { height: auto; resize: vertical; min-height: 187px; }
.contact-form__submit {
  align-self: stretch;
  width: 100%;
  height: 66px;
  margin-top: 4px;
  justify-content: center;
  background: #151B18;
  border-color: #151B18;
  border-radius: 49px;
  font-family: 'SF Pro', var(--sans);
  font-weight: 590;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #FFFFFF;
}
.contact-form__submit:hover { background: #050705; border-color: #050705; }
.contact-form__note {
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0.6px;
  color: #555761;
  margin-top: -8px;
  white-space: nowrap;
}

.contact-form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form__status {
  font-family: 'SF Pro', var(--sans);
  font-size: 15px;
  font-weight: 500;
  min-height: 20px;
  margin: -8px 0 0;
}
.contact-form__status.is-success { color: var(--green); }
.contact-form__status.is-error   { color: #C0392B; }

.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-why {
  background: linear-gradient(283.4deg, #000000 -46.32%, #056738 82.45%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #F8F9FD;
}
.contact-why .section-label--bar { color: #F8F9FD; }
.contact-why .section-label--bar::before { background: #F8F9FD; }
.contact-why__title {
  font-family: 'Butler', var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.21;
  text-transform: capitalize;
  color: #F8F9FD;
  margin-bottom: 20px;
}
.contact-why__list { display: flex; flex-direction: column; margin-bottom: 24px; }
.contact-why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.6px;
  color: #F8F9FD;
}
.contact-why__list i { color: #E4AD1D; font-size: 15px; }
.contact-why__foot {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.31);
  font-family: 'SF Pro', var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.78;
  color: #F8F9FD;
}

.contact-map { display: block; width: 100%; height: 420px; border: 0; }

/* ================
   SCROLL ANIMATIONS
   ================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ================
   RESPONSIVE
   ================ */
@media (max-width: 1100px) {
  .industries__track     { gap: 20px; }
  .process__steps        { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process__steps::before { display: none; }
  .footer__grid          { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .solutions__grid       { grid-template-columns: 1fr 1fr; }
  .about__top            { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card { border-bottom: 1px solid var(--border); }
  .journey__inner        { grid-template-columns: 100px 1fr; }
  .journey__card         { display: none; }
  .capabilities__feature    { height: 560px; }
  .testimonials__inner   { flex-direction: column; gap: 40px; }
  .testimonial__card     { flex: none; width: 100%; }
  .service-images        { grid-template-columns: repeat(2, 1fr); }
  .contact-info__grid    { grid-template-columns: 1fr 1fr; }
  .contact-form-layout   { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 90px; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .navbar { padding: 10px 0; }
  .navbar__inner { height: 70px; padding: 6px 6px 6px 16px; gap: 16px; }
  .logo-img { height: 62px; }
  .navbar__inner > .btn { display: none; }
  .solutions__grid  { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr; }
  .industry-card    { flex: 0 0 260px; width: 260px; height: 340px; }
  .capabilities__items  { flex-direction: column; gap: 24px; }
  .cap-item-divider     { width: 80px; height: 1px; margin: 0; }
  .process__steps   { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .footer__grid     { grid-template-columns: 1fr; }
  .navbar__links    { display: none; }
  .navbar__toggle   { display: flex; }
  .growth-cta__inner { flex-direction: column; align-items: flex-start; }
  .growth-cta__line  { display: none; }
  .growth-cta__heading { white-space: normal; }
  .journey__inner   { grid-template-columns: 1fr; }
  .journey__timeline { flex-direction: row; overflow-x: auto; padding-bottom: 16px; }
  .testimonial__card { height: 420px; }
  .service-images   { grid-template-columns: 1fr 1fr; }
  .contact-info__grid { grid-template-columns: 1fr; margin-top: -30px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__note { white-space: normal; }
}
