/* ============================================================
   NovaCorp Solutions — Premium B2B Website Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green:#9CCB00;
  --green-dark: #86aa11;
  --green-light: rgba(92, 184, 92, 0.12);
  --green-mid: #5cb85c;
  --white: #ffffff;
  --off-white: #f7f9f7;
  --light-gray: #f0f4f0;
  --border: #e0ebe0;
  --text-dark: #1a2a1a;
  --text-mid: #3d4f3d;
  --text-light: #6b7c6b;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.13);
  --shadow-green: 0 8px 24px rgba(92, 184, 92, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 74px;
  --font: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000000;
  animation: preloader-fade 2s ease 2s forwards;
}

.preloader-inner {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 140px;
  height: auto;
  animation: preloader-breathe 1.4s ease-in-out infinite;
}

.preloader-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(92, 184, 92, 0.2);
  border-top-color: var(--green-mid);
  animation: preloader-spin 1.1s linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-breathe {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes preloader-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader,
  .preloader-ring,
  .preloader-logo {
    animation: none;
  }
  .preloader {
    opacity: 0;
    visibility: hidden;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

input,
textarea,
select {
  font-family: var(--font);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.bg-light {
  background: var(--off-white);
}

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

/* Page-specific typography override */
.services-page,
.services-page *,
.gallery-page,
.gallery-page * {
  font-family: 'Poppins', sans-serif;
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(92, 184, 92, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--green-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
  background: var(--green);
  color: white;
  border-radius: 50px;
}

.btn-sm:hover {
  background: var(--green-dark);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ========== NAVBAR ========== */
/* ========== NAVBAR BASE ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  z-index: 1001;
  padding: 6px 0;
}

.logo-text {
  padding: 0 !important;
  display: flex;
  align-items: center;
}

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

.navbar .logo-text img {
  width: auto;
  max-height: 46px;
}

/* ========== NAV LINKS (desktop) ========== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link.active {
  color: var(--green);
  font-weight: 600;
}

/* ========== DROPDOWN TOGGLE ARROW ========== */
.dropdown-toggle::after {
  content: '▼';
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  font-size: 0.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}

.nav-dropdown.open .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ========== DROPDOWN MENU ========== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}

.dropdown-item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-dark);
  border-left-color: var(--green);
  padding-left: 24px;
}

/* ========== CTA BUTTON ========== */
.nav-cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: var(--green);
  color: white !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

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

.nav-cta::after {
  display: none;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== OVERLAY ========== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.nav-overlay.open {
  display: block;
}

/* ========== DESKTOP: hover opens dropdowns ========== */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ========== TABLET (769px – 1024px) ========== */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-link {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .logo-text img {
    width: 140px;
  }
}

/* ========== MOBILE (≤768px) ========== */
@media (max-width: 768px) {

  /* Lock body when menu open — only reliable iOS fix */
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .hamburger {
    display: flex;
  }

  .logo-text img {
    width: 150px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-height) + 16px) 0 32px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 0;
    justify-content: space-between;
  }

  .nav-link::after {
    display: none;
  }

  /* Disable desktop hover on mobile */
  .nav-dropdown:hover .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Mobile dropdown — inline accordion */
  .nav-dropdown.open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--green-light, #f0faf0);
    min-width: unset;
    width: 100%;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transition: max-height 0.35s ease;
    pointer-events: none;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 600px;
    pointer-events: auto;
  }

  .dropdown-item {
    padding: 13px 36px;
    font-size: 0.95rem;
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-mid);
  }

  .dropdown-item:hover {
    padding-left: 44px;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .nav-cta {
    margin: 16px 24px 0;
    padding: 14px 24px;
    text-align: center;
    border-radius: 50px;
    font-size: 1rem;
    display: block;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  z-index: -999999999;
}

/* ── Carousel Slides ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}

.hero-bg .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark tinted overlay on each slide (preserves your green aesthetic) */
.hero-bg .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* LEFT side: heavy dark for text readability */
    linear-gradient(to right,
      rgba(5, 14, 5, 0.88) 0%,
      rgba(8, 20, 8, 0.80) 25%,
      rgba(10, 22, 10, 0.60) 50%,
      rgba(0, 0, 0, 0.20) 75%,
      rgba(0, 0, 0, 0.05) 100%),
    /* TOP-BOTTOM: slight vignette for depth */
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.00) 40%,
      rgba(0, 0, 0, 0.10) 70%,
      rgba(0, 0, 0, 0.40) 100%);
}

/* ── SVG Texture Overlay (kept from original) ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

/* ── Dot Indicators ── */
.carousel-dots {
  position: absolute;
  bottom: 44px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, height 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: #5cb85c;
  transform: scaleY(1.4);
  height: 18px;
  border-radius: 4px;
  border-color: #5cb85c;
}

/* ── Slide Progress Bar ── */
.carousel-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #5cb85c, #5cb85c);
  z-index: 10;
  transition: none;
}

/* ── Hero Content (unchanged) ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 760px;
  padding-left: max(24px, calc((100vw - 1200px)/2 + 24px));
}

.hero-tag {
  display: inline-block;
  background: rgba(92, 184, 92, 0.2);
  border: 1px solid rgba(92, 184, 92, 0.4);
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .text-green {
  color: #5cb85c;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  padding: 20px;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #5cb85c 0%, #5cb85c 50%, #5cb85c 100%);
  box-shadow: var(--shadow-lg);
}

.img-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
}

.img-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  color: white;
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.about-float-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

/* ============================================================
   SERVICES & GALLERY PAGES — PREMIUM
   ============================================================ */
.page-main {
  padding-top: calc(var(--nav-height) + 28px);
  min-height: 100vh;
}

/* ── Page Hero Lite (Services Listing) ── */
.page-hero-lite {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
  background: radial-gradient(circle at 12% 20%, rgba(92, 184, 92, 0.16), transparent 45%),
    radial-gradient(circle at 88% 18%, rgba(92, 184, 92, 0.12), transparent 46%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.page-hero-lite .section-sub {
  margin: 0;
  max-width: 760px;
}

.page-hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Services Overview & Catalog Grid ── */
.services-overview {
  padding: 0 0 96px;
}

.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.service-catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.service-catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}

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

.svc-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(92, 184, 92, .08);
  line-height: 1;
  pointer-events: none;
}

.svc-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  transition: var(--transition);
}

.service-catalog-card:hover .svc-card-icon {
  background: var(--green);
  color: white;
  transform: scale(1.08);
}

.service-catalog-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.service-catalog-card p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: .95rem;
}

.service-catalog-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-catalog-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: .92rem;
}

.service-catalog-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.svc-card-full {
  grid-column: 1 / -1;
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
}

.service-link-btn:hover {
  background: var(--green);
  color: var(--white);
}

.svc-arrow {
  transition: transform .3s ease;
  display: inline-block;
}

.service-link-btn:hover .svc-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SERVICE DETAIL PAGES — PREMIUM HERO
   ============================================================ */
.service-detail-body {
  background: var(--white);
}

.svc-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  z-index: 0;
}

.svc-hero:hover .svc-hero-bg {
  transform: scale(1.04);
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(92, 184, 92, .88) 0%, rgba(92, 184, 92, .75) 30%, rgba(92, 184, 92, .50) 55%, rgba(0, 0, 0, .15) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .10) 70%, rgba(0, 0, 0, .50) 100%);
}

.svc-hero-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.svc-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 56px;
  width: 100%;
}

.svc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 20px;
  transition: var(--transition);
}

.svc-breadcrumb:hover {
  background: rgba(255, 255, 255, .2);
  color: white;
}

.svc-hero-tag {
  display: inline-block;
  background: rgba(92, 184, 92, .2);
  border: 1px solid rgba(92, 184, 92, .4);
  color: var(--green-mid);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.svc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.svc-hero-title .text-green {
  color: #5cb85c;
}

.svc-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Service Main Content ── */
.svc-main {
  background: var(--white);
}

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

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

.svc-img-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.svc-img-frame:hover img {
  transform: scale(1.04);
}

.svc-img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.svc-badge-icon {
  display: flex;
}

.svc-desc {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: .98rem;
  line-height: 1.8;
}

/* ── Feature Cards Grid ── */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.svc-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.svc-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}

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

.svc-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  transition: var(--transition);
}

.svc-feature-card:hover .svc-feature-icon {
  background: var(--green);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.svc-feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.svc-feature-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── Service CTA Banner ── */
.svc-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.svc-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5cb85c 0%, #5cb85c 50%, #5cb85c 100%);
}

.svc-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.06'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.svc-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.svc-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.svc-cta-text p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.02rem;
}

.svc-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Gallery Page (preserved) ── */
.gallery-page-wrap {
  padding: 0 0 96px;
}

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

.website-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.website-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.website-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.website-card .card-body {
  padding: 14px;
}

.website-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.website-card p {
  color: var(--text-light);
  font-size: .92rem;
}

/* ── Service Page Responsive ── */
@media (max-width: 1200px) {
  .service-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .service-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-card-full {
    grid-column: 1;
  }

  .svc-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-hero {
    min-height: 45vh;
  }
}

@media (max-width: 580px) {
  .service-catalog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-lite {
    padding: 64px 0 42px;
  }

  .service-catalog-card {
    padding: 22px 18px;
  }

  .svc-hero-content {
    padding: 40px 16px 36px;
  }

  .svc-hero {
    min-height: 40vh;
  }

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

  .svc-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .svc-cta-actions {
    justify-content: center;
  }
}

.about-float-card strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
}

.about-float-card span {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* Decorative corner accent */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--green);
  border-left: 3px solid var(--green);
  border-radius: 4px 0 0 0;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--green);
  border-right: 3px solid var(--green);
  border-radius: 0 0 4px 0;
}

.about-desc {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}

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

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item strong {
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  background: white;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Product Card ── */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Product Image ── */
.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

/* ── Hover Overlay ── */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

/* ── Product Info ── */
.product-info {
  padding: 20px 22px 24px;
}

.product-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Hidden cards (filter JS) ── */
.product-card.hidden {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

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

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  color: white;
}

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

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--green-dark);
  gap: 8px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5cb85c 0%, #5cb85c 50%, #5cb85c 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.06'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

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

.gallery-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.gallery-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Grid patterns for gallery */
.gallery-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.04'%3E%3Ccircle cx='15' cy='15' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 15, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

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

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

.gallery-hover span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-content {
  max-width: 800px;
  width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-content>div {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-grid--premium {
  grid-template-columns: 1.2fr 1fr;
}

.contact-intro .section-title {
  font-size: 2rem;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 20px;
}

.office-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 138px;
  box-shadow: 0 12px 28px rgba(12, 28, 12, 0.08);
  transition: var(--transition);
}

.office-card:hover {
  border-color: rgba(92, 184, 92, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(12, 28, 12, 0.12);
}

.office-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.office-card h4 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.office-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-numbers {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--light-gray);
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.contact-numbers h4 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-numbers a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-numbers a:hover {
  color: var(--green-dark);
  transform: translateX(2px);
}

.contact-numbers svg {
  color: var(--green);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.map-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--light-gray);
  border-radius: 16px;
  height: 170px;
  overflow: hidden;
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(92, 184, 92, 0.12) 27px),
    repeating-linear-gradient(90deg, transparent, transparent 26px, rgba(92, 184, 92, 0.12) 27px);
  opacity: 0.7;
}

.map-card .map-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.map-card .map-inner span {
  font-weight: 700;
  color: var(--text-dark);
}

.map-card .map-inner p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.map-placeholder {
  margin-top: 8px;
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  border: 1px solid var(--border);
  position: relative;
}

.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  color: var(--text-light);
}

.map-inner span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.map-inner p {
  font-size: 0.82rem;
}

/* Map grid background */
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(92, 184, 92, 0.1) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(92, 184, 92, 0.1) 30px);
}

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

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bdb0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7c6b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid var(--green-mid);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f2010;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-grid--offices {
  grid-template-columns: 1.2fr 1.7fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-col--wide {
  grid-column: span 1;
}

.footer-office-list {
  display: grid;
  gap: 12px;
}

.footer-office-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-office-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(92, 184, 92, 0.26);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-office-line strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}

.footer-office-line span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--green);
  transform: translateX(2px);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: white;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 28px;
}

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

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

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

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-certifications {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cert-badge {
  padding: 4px 12px;
  background: rgba(92, 184, 92, 0.12);
  border: 1px solid rgba(92, 184, 92, 0.25);
  border-radius: 4px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

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

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

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

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
  pointer-events: none;
}

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

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.products-grid .product-card:nth-child(2) {
  transition-delay: 0.1s;
}

.products-grid .product-card:nth-child(3) {
  transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(4) {
  transition-delay: 0.3s;
}

.products-grid .product-card:nth-child(5) {
  transition-delay: 0.4s;
}

.products-grid .product-card:nth-child(6) {
  transition-delay: 0.5s;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 0.3s;
}

.services-grid .service-card:nth-child(5) {
  transition-delay: 0.4s;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

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

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

  .footer-office-list {
    gap: 10px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-grid--premium {
    grid-template-columns: 1fr;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar .logo-text img {
    max-height: 38px;
  }

  :root {
    --nav-height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin: 12px 0 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Mobile Dropdowns */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0;
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    max-height: 600px;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .dropdown-item {
    padding: 10px 16px 10px 28px;
    font-size: 0.9rem;
    background: var(--light-gray);
    border-left: none;
  }

  .dropdown-item:first-child {
    border-radius: 0;
  }

  .dropdown-item:last-child {
    border-radius: 0;
  }

  .dropdown-item:hover {
    background: var(--green-light);
    color: var(--green-dark);
    padding-left: 28px;
  }

  /* Hero */
  .hero-content {
    padding: 60px 24px;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .about-visual {
    order: -1;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  /* CTA */
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrap {
    padding: 28px 22px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.82rem;
  }
}

/* marquee */
/* ── Clients Marquee Section ── */
.clients.section {
  background: #4caf50;
  padding: 56px 0;
  overflow: hidden;
}

.clients .marquee-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 36px;
}

.clients .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.clients .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.clients .section-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ── Marquee Track ── */
/* ── Clients Marquee Section ── */
.clients.section {
  background: #4caf50;
  padding: 56px 0;
  overflow: hidden;
}

.clients .marquee-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 36px;
}

.clients .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.clients .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.clients .section-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ── Marquee Track ── */
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Logo Pill ── */
.logo-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.logo-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ── Logo Image ── */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  border-radius: 6px;
  display: block;
}

/* ── Logo Text ── */
.logo-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.7rem;
  color: #999;
  margin-top: 2px;
  white-space: nowrap;
}

/* ── Separator Dot ── */
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ── Stats Row ── */
.clients-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding: 36px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.client-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.client-stat .stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.client-stat .stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .clients-stats {
    gap: 32px;
  }

  .client-stat .stat-num {
    font-size: 1.5rem;
  }

  .logo-pill {
    padding: 10px 16px;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }
}


/* about us page */

.page-hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.about-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.36;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 17, 7, 0.82) 0%, rgba(16, 40, 16, 0.6) 45%, rgba(7, 17, 7, 0.74) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 184, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 184, 92, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-orb-1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 184, 92, 0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-orb-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 184, 92, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-content-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {}

.page-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 184, 92, 0.12);
  border: 1px solid rgba(92, 184, 92, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.page-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-hero-title em {
  font-style: italic;
  color: #5cb85c;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-prim {
  padding: 14px 34px;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-green);
  transition: all 0.25s;
  display: inline-block;
}

.btn-prim:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(92, 184, 92, 0.38);
}

.btn-ghost {
  padding: 14px 34px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s;
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Right — floating cards */
.hero-right {
  position: relative;
  height: 480px;
}

.hero-main-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px;
  animation: float1 6s ease-in-out infinite;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--green);
  font-size: 1.4rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

.hero-timeline-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.htl-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.htl-line-v {
  width: 1px;
  height: 20px;
  background: rgba(92, 184, 92, 0.3);
  margin-left: 3.5px;
}

.htl-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.htl-year {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 6px;
}

.cert-float {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float2 5s ease-in-out infinite 1s;
}

.cert-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-float strong {
  font-size: 0.88rem;
  display: block;
}

.cert-float span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }
}

/* ── Scroll indicator ── */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(92, 184, 92, 0.5), transparent);
  animation: grow 2s ease-in-out infinite;
}

@keyframes grow {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1
  }
}

/* ── Section wrapper ── */
.section {
  padding: 110px 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
}

.accent {
  color: var(--green);
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.85;
  margin-top: 14px;
}

/* ── Story Section ── */
.story-bg {
  background: white;
  position: relative;
  overflow: hidden;
}

.story-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 80px solid var(--green-light);
  border-radius: 50%;
  opacity: 0.5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-frame {
  position: relative;
  background: linear-gradient(145deg, var(--green-deep) 0%, #2a5a2a 60%, var(--green) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-frame-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.story-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 10, 0.22), rgba(10, 20, 10, 0.55));
  z-index: 1;
}

.story-frame-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px,
      transparent 1px, transparent 20px);
  z-index: 2;
}

.story-frame-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  z-index: 3;
}

.story-frame-content .big-year {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.story-frame-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-corner-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  color: white;
  font-weight: 800;
}

.story-corner-badge .b-num {
  font-size: 1.4rem;
  line-height: 1;
}

.story-corner-badge .b-txt {
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.story-side-strip {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}

.strip-item {
  text-align: center;
}

.strip-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.strip-num sup {
  font-size: 0.65rem;
  color: var(--green);
}

.strip-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.strip-sep {
  width: 24px;
  height: 1px;
  background: var(--border);
}

.story-text {}

.story-intro {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 20px 0 28px;
}

.story-body {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-highlight {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  background: var(--green-light);
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.sig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--border);
}

.sig-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.sig-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Mission / Vision / Values ── */
.mvv-section {
  background: var(--green-deep);
  overflow: hidden;
  position: relative;
}

.mvv-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(92, 184, 92, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mvv-header {
  text-align: center;
  margin-bottom: 64px;
}

.mvv-header .section-title {
  color: white;
}

.mvv-header .section-desc {
  color: rgba(255, 255, 255, 0.5);
  margin: 14px auto 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 184, 92, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(92, 184, 92, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 20px;
  transition: color 0.4s;
}

.mvv-card:hover .mvv-number {
  color: rgba(92, 184, 92, 0.1);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  background: rgba(92, 184, 92, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  border: 1px solid rgba(92, 184, 92, 0.2);
  transition: all 0.3s;
}

.mvv-card:hover .mvv-icon {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.mvv-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.mvv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

/* ── Interactive Timeline ── */
.timeline-section {
  background: white;
}

.timeline-wrap {
  position: relative;
}

.tl-header {
  text-align: center;
  margin-bottom: 72px;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--border));
  transform: translateX(-50%);
}

.timeline-spine-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--green);
  transition: height 1.2s ease;
  border-radius: 2px;
}

.tl-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-item:nth-child(even) .tl-left {
  order: 3;
  text-align: left;
}

.tl-item:nth-child(even) .tl-right {
  order: 1;
  text-align: right;
}

.tl-item:nth-child(even) .tl-center {
  order: 2;
}

.tl-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.tl-item.active .tl-card {
  background: white;
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(92, 184, 92, 0.12);
}

.tl-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.tl-left .tl-card {
  text-align: right;
}

.tl-year-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.tl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tl-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-dot {
  width: 18px;
  height: 18px;
  background: white;
  border: 3px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}

.tl-item.active .tl-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(92, 184, 92, 0.15);
}

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, #f0f8f0 0%, white 50%, #f0f8f0 100%);
  position: relative;
  overflow: hidden;
}

.stats-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 800;
  color: rgba(92, 184, 92, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.stat-block {
  background: white;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

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

.stat-block:hover::before {
  transform: scaleX(1);
}

.stat-block:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.stat-block:hover .stat-icon {
  background: var(--green);
  color: white;
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-big .unit {
  color: var(--green);
  font-size: 2rem;
}

.stat-label-sm {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Team Section ── */
.team-section {
  background: var(--off-white);
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.team-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.t1 {
  background: linear-gradient(160deg, #5cb85c 0%, #5cb85c 100%);
}

.t2 {
  background: linear-gradient(160deg, #1a2a3a 0%, #3d5a8a 100%);
}

.t3 {
  background: linear-gradient(160deg, #2a1a3a 0%, #6a3d8a 100%);
}

.t4 {
  background: linear-gradient(160deg, #3a2a1a 0%, #8a6a3d 100%);
}

.team-img-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}

.team-connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-connect-overlay {
  opacity: 1;
}

.tc-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.tc-icon:hover {
  background: var(--green);
  border-color: var(--green);
}

.team-info {
  padding: 22px 22px 24px;
}

.team-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.team-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.team-tag {
  padding: 3px 10px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ── Certifications Marquee ── */
.certs-section {
  background: white;
  padding: 64px 0;
  overflow: hidden;
}

.certs-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 24px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.cert-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}

.cert-chip:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.cert-chip-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.cert-chip span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── Values Section ── */
.values-section {
  background: var(--off-white);
}

.values-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(92, 184, 92, 0.05);
  line-height: 1;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(92, 184, 92, 0.15);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background: var(--green);
  color: white;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA Closer ── */
.cta-section {
  background: var(--green-deep);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(92, 184, 92, 0.12) 0%, transparent 70%);
}

.cta-section .section-title {
  color: white;
  margin-bottom: 16px;
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer Strip ── */
.footer-strip {
  background: #0f1f0f;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-strip p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-strip-links {
  display: flex;
  gap: 20px;
}

.footer-strip-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-strip-links a:hover {
  color: var(--green);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 99;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    height: auto;
  }

  .cert-float {
    right: 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-side-strip {
    right: -10px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  @media (max-width: 768px) {

    .nav-links {
      position: fixed;
      top: 70px;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: #ffffff;
      flex-direction: column;
      padding: 2rem;
      transition: 0.3s;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
      right: 0;
    }

    .nav-links li {
      margin-bottom: 1.5rem;
    }

    .hamburger {
      display: block;
    }
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 2px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px 8px;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin: 8px 0 0;
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

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

  .timeline-spine {
    display: none;
  }

  .tl-item {
    grid-template-columns: 1fr;
  }

  .tl-item:nth-child(even) .tl-left {
    order: unset;
    text-align: left;
  }

  .tl-item:nth-child(even) .tl-right {
    order: unset;
    text-align: left;
  }

  .tl-item:nth-child(even) .tl-center {
    order: unset;
  }

  .tl-center {
    display: none;
  }

  .tl-left,
  .tl-right {
    grid-column: 1;
  }

  .tl-left .tl-card {
    text-align: left;
  }

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

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

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

  .hero-stat-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-right {
    display: none;
  }
}