:root {
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --light: #F1F5F3;
  --border: #E2E8E5;
  --border-hover: #C8D2CC;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --text: #111111;
  --text-2: #444444;
  --text-3: #777777;
  --green: #029061;
  --green-dark: #017A52;
  --green-light: #03B87A;
  --green-soft: rgba(2, 144, 97, 0.07);
  --green-glow: rgba(2, 144, 97, 0.18);
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --shadow-1: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-2: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-3: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-3d: 0 20px 50px -12px rgba(0,0,0,0.15);
  --container: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { width: min(var(--container), 92%); margin: 0 auto; }

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 1.4rem 0;
  pointer-events: none;
}

.header .container { pointer-events: auto; }

.header__pill {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    background: #029061;
    border-radius: 11px;
    padding: 1.1rem 1.1rem 1.1rem 2.2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 77px;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.logo:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.logo__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.4rem;
  background: #029061;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 9px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  overflow: hidden;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 48%);
}

.logo__mark-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
}

.logo__name-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.logo__name {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.logo__dot {
  color: #7af7c9;
  margin-left: 0.1rem;
}

.logo__role {
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
}

.nav__pill {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: all 0.25s var(--ease);
}

.nav__pill:hover,
.nav__pill.is-active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn--nav {
  padding: 0.7rem 2rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.btn--nav:hover {
  background: var(--green);
}

/* Chat with Muzammil button */
.chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 1.6rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.chat-btn:hover {
  background: #222222;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.chat-btn__avatar {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

.chat-btn__avatar img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.chat-btn__wa {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--black);
}

.chat-btn__text {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.nav-toggle span { display: block; width: 1.8rem; height: 2px; background: var(--white); transition: 0.3s; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--lg { padding: 1.6rem 3.2rem; font-size: 1.7rem; border-radius: var(--r-lg); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--green-glow);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--black);
  padding: 1.4rem 3.2rem;
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ====== HERO ====== */
.hero {
  padding: 11rem 0 4rem;
  text-align: center;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--text-2);
  animation: fadeSlideUp 0.6s ease both;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero__avatars { display: flex; }

.hero__av {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -0.75rem;
  letter-spacing: 0;
}

.hero__av:first-child { margin-left: 0; }

.hero__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.6rem, 3.6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--black);
  animation: fadeSlideUp 0.7s 0.1s ease both;
  margin-bottom: 1.6rem;
}

.hero__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.text-green { color: var(--green); }

.hero__sub {
  font-size: clamp(1.6rem, 1.8vw, 1.9rem);
  color: var(--text-3);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 1.8rem;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero__avail {
  /* display: inline-flex; */
  align-items: center;
  gap: 0.9rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.7s 0.28s ease both;
}

.hero__avail-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(2,144,97,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(2,144,97,0.06); }
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1rem 1.2rem 1rem 1rem;
    background: linear-gradient(135deg, #1f4d3b 0%, #173B2D 100%);
    border-radius: 999px;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    box-shadow: 0 0 0 7px rgba(23, 59, 45, 0.15), 0 14px 44px rgba(23, 59, 45, 0.28);
    transition: all 0.35s var(--ease-out);
    animation: fadeSlideUp 0.7s 0.38s ease both;
    margin-bottom: 2.6rem;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 10px rgba(23,59,45,0.12), 0 22px 52px rgba(23,59,45,0.36);
}

.hero__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}

.hero__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  flex-shrink: 0;
}

.hero__badges {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.5s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s var(--ease);
}

.hero__badge:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 4px 16px rgba(2,144,97,0.12);
}

.hero__badge svg { color: var(--green); flex-shrink: 0; }


/* Hero entrance animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ====== SCROLL STRIP ====== */
.scroll-strip {
  overflow: hidden;
  background: #000000;
  position: relative;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

/* Left/right fade vignette */
.scroll-strip::before,
.scroll-strip::after {
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 3;
    pointer-events: none;
}
.scroll-strip::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.scroll-strip::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.scroll-strip__track {
  display: flex;
  gap: 0;
  animation: strip-scroll 36s linear infinite;
  width: max-content;
  transform-style: preserve-3d;
}

.scroll-strip:hover .scroll-strip__track {
  animation-play-state: paused;
}

/* ── Base card (WHITE) ── */
.strip-card {
  flex-shrink: 0;
  padding: 4rem 4.5rem;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  min-width: 240px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  transform: perspective(800px) rotateY(0deg) translateZ(0);
}

/* 3D hover lift & tilt */
.strip-card:hover {
  transform: perspective(800px) rotateY(-5deg) translateY(-10px) scale(1.06);
  box-shadow: 14px 24px 50px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

/* Shimmer sweep on hover */
.strip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(2, 144, 97, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-160%);
  z-index: 1;
}

.strip-card:hover::after {
  animation: shimmer-sweep 0.6s ease forwards;
}

@keyframes shimmer-sweep {
  to { transform: translateX(200%); }
}

/* ── Icon ── */
.strip-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green);
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.strip-card:hover .strip-card__icon {
  transform: translateY(-5px) scale(1.18);
  color: var(--green-dark);
}

/* ── Title / number ── */
.strip-card__num {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.03em;
}

.strip-card__plus {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green);
  vertical-align: super;
  margin-left: 0.1rem;
}

/* ── Label ── */
.strip-card__label {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════ GREEN variant ══════════ */
.strip-card--green {
  background: var(--green);
  border-right-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.strip-card--green:hover {
  box-shadow: 14px 24px 50px rgba(2, 144, 97, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.strip-card--green .strip-card__icon { color: rgba(255, 255, 255, 0.75); }
.strip-card--green:hover .strip-card__icon { color: #fff; }
.strip-card--green .strip-card__num  { color: #ffffff; }
.strip-card--green .strip-card__plus { color: rgba(255, 255, 255, 0.8); }
.strip-card--green .strip-card__label { color: rgba(255, 255, 255, 0.72); }

/* Continuous auto-shimmer on green cards */
.strip-card--green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: auto-shimmer 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes auto-shimmer {
  0%        { transform: translateX(-160%); }
  35%, 100% { transform: translateX(200%); }
}

/* Green card hover shimmer override - white tinted */
.strip-card--green::after {
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
}

/* ══════════ DARK/BLACK variant ══════════ */
.strip-card--dark {
  background: var(--black);
  border-right-color: rgba(255, 255, 255, 0.06);
}

.strip-card--dark:hover {
  box-shadow: 14px 24px 50px rgba(0, 0, 0, 0.6);
}

.strip-card--dark .strip-card__icon { color: var(--green-light); }
.strip-card--dark:hover .strip-card__icon { color: var(--green); }
.strip-card--dark .strip-card__num  { color: #ffffff; }
.strip-card--dark .strip-card__plus { color: var(--green-light); }
.strip-card--dark .strip-card__label { color: rgba(255, 255, 255, 0.5); }

/* Dark card hover shimmer - subtle white */
.strip-card--dark::after {
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
}

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
.section { padding: 6rem 0; scroll-margin-top: 100px; }

.section--light { background: var(--off-white); }

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section__top { margin-bottom: 3.2rem; }

.tag {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2rem;
  background: var(--white);
}

.tag--light {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--green-light);
}

.section__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
  padding-bottom: 10px;
}

.section__heading em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.section__heading--white { color: var(--white); }

/* ====== ABOUT - BENTO GRID ====== */
.bento {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.6rem;
}

.bento__card {
  border-radius: var(--r-xl);
  border: 1.5px solid #D0D8D3;
  transition: all 0.35s var(--ease);
  perspective: 1000px;
}

.bento__card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-4px);
  border-color: var(--green);
}

/* Profile card - spans 2 rows */
.bento__card--profile {
  grid-row: 1 / 3;
  padding: 1.4rem;
  background: var(--white);
  overflow: hidden;
}

.bento__photo {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-lg);
}

.bento__profile-info {
  padding: 1.6rem 0.4rem 0.4rem;
}

.bento__profile-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bento__profile-info p {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 600;
}

.bento__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.bento__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.25s;
}

.bento__socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Text card */
.bento__card--text {
  padding: 2.6rem;
  background: var(--white);
}

.bento__lead {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.bento__card--text p {
  color: var(--text-2);
  font-size: 1.55rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Green accent card */
.bento__card--green {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento__card--green:hover {
  box-shadow: 0 20px 50px -12px rgba(2, 144, 97, 0.3);
}

.bento__green-label {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.bento__card--green h3 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bento__card--green h3 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: italic;
}

/* Stack card - GREEN */
.bento__card--stack {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  padding: 3rem;
  grid-column: 2 / 4;
}

.bento__card--stack:hover {
  box-shadow: 0 20px 50px -12px rgba(2, 144, 97, 0.35);
  border-color: var(--green-light);
}

.bento__card--stack h4 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 1.6rem;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stack-pills span {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.stack-pills span:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ====== SERVICES - SERVICE CARDS ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3.2rem 2.6rem 2.8rem;
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glow effect on hover */
.service-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(2, 144, 97, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

/* Hover state */
.service-card:hover {
  border-color: rgba(2, 144, 97, 0.25);
  box-shadow: 0 20px 60px -15px rgba(2, 144, 97, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-10px);
}

.service-card.is-visible:hover {
  transform: translateY(-10px);
}

/* Featured card (first card) */
.service-card--featured {
  background: linear-gradient(145deg, #017A52 0%, #029061 50%, #03B87A 100%);
  border-color: transparent;
  color: var(--white);
}

.service-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px -15px rgba(2, 144, 97, 0.4), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card--featured .service-card__glow {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

/* Card header with icon and number */
.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: var(--r-lg);
  background: var(--green-soft);
  color: var(--green);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(2, 144, 97, 0.2);
}

.service-card__icon-wrap--featured {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card--featured:hover .service-card__icon-wrap {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card__num {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--border-hover);
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
}

.service-card:hover .service-card__num {
  color: var(--green);
}

.service-card--featured .service-card__num {
  color: rgba(255, 255, 255, 0.35);
}

.service-card--featured:hover .service-card__num {
  color: rgba(255, 255, 255, 0.6);
}

/* Card title */
.service-card__title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}

/* Card description */
.service-card__desc {
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 2rem;
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.78);
}

/* Service tags */
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-card__tags span {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.service-card:hover .service-card__tags span {
  background: rgba(2, 144, 97, 0.12);
}

.service-card--featured .service-card__tags span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card--featured:hover .service-card__tags span {
  background: rgba(255, 255, 255, 0.22);
}

/* ====== PROJECTS ====== */
.filter-bar {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2.2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}

.filter-btn:hover { border-color: var(--green); color: var(--green); }

.filter-btn.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.proj {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.proj:hover {
  box-shadow: var(--shadow-3d);
  border-color: transparent;
  transform: translateY(-4px);
}

.proj.is-hidden { display: none; }

.proj__img {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  background: var(--light);
}

.proj__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.proj:hover .proj__img img { transform: scale(1.05); }

.proj__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj__img-icon { color: var(--border-hover); }

.proj__body {
  padding: 3rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proj__cat {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proj__body h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 0.4rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.proj__body p {
  margin-top: 0.8rem;
  color: var(--text-2);
  font-size: 1.5rem;
  line-height: 1.7;
}

.proj__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.proj__tags span {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 600;
}

.proj__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.25s;
}

.proj__link:hover { gap: 1.2rem; }

/* ====== EXPERIENCE ====== */
.exp-timeline {
  max-width: 880px;
  margin: 0 auto;
}

.exp-row {
  display: grid;
  grid-template-columns: 180px 40px 1fr;
  gap: 0;
  align-items: start;
  min-height: 1px;
}

.exp-row__left {
  padding-top: 2.6rem;
  text-align: right;
  padding-right: 0;
}

.exp-row__period {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.exp-row__dot {
  display: flex;
  justify-content: center;
  padding-top: 2.8rem;
  position: relative;
}

.exp-row__dot::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

.exp-row:first-child .exp-row__dot::before { top: 2.8rem; }
.exp-row:last-child .exp-row__dot::before { bottom: auto; height: 3rem; }

.exp-row__dot span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--dark);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(2, 144, 97, 0.2);
}

.exp-row__right {
  padding: 0.8rem 0 2rem 1rem;
}

.exp-row__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2.6rem;
  transition: all 0.35s var(--ease);
}

.exp-row__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(2, 144, 97, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.exp-row__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: rgba(2, 144, 97, 0.15);
  color: var(--green-light);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.exp-row__card h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.exp-row__company {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-light);
  margin-top: 0.2rem;
}

.exp-row__card p {
  margin-top: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  line-height: 1.7;
}

.exp-row__card--edu {
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}

.exp-row__card--edu svg {
  color: var(--green-light);
  margin-bottom: 0.8rem;
}

/* ====== CONTACT ====== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}

/* ── LEFT PANEL (dark green) ── */
.contact__left {
  position: relative;
  background: linear-gradient(145deg, #017A52 0%, #029061 50%, #03B87A 100%);
  padding: 4.5rem 4rem;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.contact__left-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* Decorative blobs */
.contact__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.contact__blob--1 {
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(2,144,97,0.28) 0%, transparent 70%);
  top: -8rem;
  right: -8rem;
  animation: blob-float 8s ease-in-out infinite;
}

.contact__blob--2 {
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(3,184,122,0.15) 0%, transparent 70%);
  bottom: -4rem;
  left: -4rem;
  animation: blob-float 10s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(12px, -16px) scale(1.04); }
  66%       { transform: translate(-8px, 10px) scale(0.97); }
}

.contact__left .section__heading {
  padding-bottom: 0;
}

.contact__desc {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

.contact__links {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__link-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
  color: var(--white);
}

.contact__link-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.contact__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.12);
  color: #7af7c9;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.contact__link-item:hover .contact__link-icon {
  background: rgba(122,247,201,0.15);
  transform: scale(1.08);
}

.contact__link-item small {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__link-item span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 0.1rem;
}

/* ── RIGHT PANEL (white form) ── */
.contact__right {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.contact__form-card {
  flex: 1;
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
}

.contact__form-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 2rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-submit {
  margin-top: auto;
  padding: 1.6rem 3.2rem;
  border-radius: var(--r-lg);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(2,144,97,0.25);
  transition: all 0.3s var(--ease-out);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(2,144,97,0.35);
}

.contact-submit svg {
  transition: transform 0.3s var(--ease);
}

.contact-submit:hover svg {
  transform: translateX(4px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.4rem 1.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off-white);
  color: var(--text);
  font-family: inherit;
  font-size: 1.5rem;
  transition: all 0.25s var(--ease);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--border-hover);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-3); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--green-glow);
}

.form-msg {
  padding: 1.2rem 1.6rem;
  border-radius: var(--r-md);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-msg.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.form-msg.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

/* ====== FOOTER ====== */
.footer {
  padding: 3.2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer__brand p { font-size: 1.4rem; color: var(--text-3); }

.footer__nav { display: flex; gap: 2.4rem; }

.footer__nav a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s;
}

.footer__nav a:hover { color: var(--green); }

.footer__social { display: flex; gap: 0.8rem; }

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.25s;
}

.footer__social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ====== REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }
.reveal--d5 { transition-delay: 0.40s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__card--profile { grid-row: auto; }
  .bento__card--text { grid-column: auto; }
  .bento__card--green { grid-column: auto; }
  .bento__card--stack { grid-column: 1 / 3; }

  .nav__pill { padding: 0.6rem 1.2rem; font-size: 1.3rem; }
  .logo__name-wrap { display: none; }
}

@media (max-width: 768px) {
  html { font-size: 57%; }

  .nav-toggle { display: flex; }

  .logo {
    padding: 0.25rem;
    gap: 0.8rem;
  }

  .logo__mark {
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 9rem 5% 2rem;
    background: #173B2D;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
  }

  .nav.is-open { transform: translateX(0); }

  .nav__pill {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.6rem 0;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.8);
  }

  .nav__pill:hover, .nav__pill.is-active {
    background: none;
    color: var(--white);
  }

  .btn--nav,
  .chat-btn { display: none; }

  .hero { padding: 9rem 0 5rem; }
  .hero__title { font-size: clamp(3.2rem, 9vw, 5rem); }
  .hero__sub br { display: none; }
  .hero__cta { font-size: 1.6rem; margin-top: 1rem; margin-bottom: 4rem; }
  .hero__trust {margin-top: 4rem;}
  .hero__badges { gap: 0.8rem; }
  .hero__badge { padding: 0.8rem 1.4rem; font-size: 1.3rem; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--profile { max-width: 380px; }
  .bento__card--text { grid-column: auto; }
  .bento__card--stack { grid-column: auto; }

  .services-grid { grid-template-columns: 1fr; }

  .proj { grid-template-columns: 1fr; }
  .proj__img { min-height: 20rem; }

  .exp-row { grid-template-columns: 1fr; gap: 0; }
  .exp-row__left { text-align: left; padding: 0 0 0.4rem; }
  .exp-row__dot { display: none; }
  .exp-row__right { padding-left: 0; }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact__left {
    padding: 3rem 2.4rem;
  }

  .contact__form-card {
    padding: 3rem 2.4rem;
    min-height: 0;
  }

  .form__row { grid-template-columns: 1fr; }

  .section { padding: 5rem 0; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; }
  .footer__nav { display: none; }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }
}
