/* ================================================================
   TEAM WORK HOLDINGS LLC – style.css
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  --green:       #78a34d;
  --green-dark:  #5c7f38;
  --green-light: #9bc062;
  --green-pale:  rgba(120, 163, 77, 0.09);
  --white:       #ffffff;
  --off-white:   #fbfcfa;
  --dark:        #1a1d17;
  --text-dark:   #2e3128;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e0e6d9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', 'Segoe UI', Arial, sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 12px 40px rgba(0,0,0,0.1);
  --shadow-green: 0 8px 28px rgba(120, 163, 77, 0.28);
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }

/* ----------------------------------------------------------------
   3. UTILITY
---------------------------------------------------------------- */
.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Scroll-reveal helpers */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.78s var(--ease-out), transform 0.78s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.78s var(--ease-out), transform 0.78s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.78s var(--ease-out), transform 0.78s var(--ease-out);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ----------------------------------------------------------------
   4. NAVIGATION
---------------------------------------------------------------- */
.nav-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: 80px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  height: 66px;
  backdrop-filter: blur(10px);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-logo-mark {
  width: 44px; height: 60px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: white; letter-spacing: -1px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.nav-logo:hover .nav-logo-mark { background: var(--green-dark); transform: scale(1.05); }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 700;
  color: white;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.nav-header.scrolled .nav-logo-name { color: var(--green); }

.nav-logo-sub {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  transition: color 0.3s;
}
.nav-header.scrolled .nav-logo-sub { color: var(--text-light); }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-menu a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-header.scrolled .nav-menu a { color: var(--text-dark); }
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green) !important;
  background: var(--green-pale);
}
.nav-menu .nav-cta {
  background: var(--green);
  color: white !important;
  font-weight: 600;
  padding: 10px 24px;
}
.nav-menu .nav-cta:hover {
  background: var(--green-dark) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-header.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(16,20,13,0.97);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 26px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--green-light); }

.mobile-contact-info {
  margin-top: 36px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem; letter-spacing: 1px;
}
.mobile-contact-info span {
  color: var(--green-light);
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}

/* ----------------------------------------------------------------
   5. HERO CAROUSEL
---------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%; height: 100%;
  position: relative; flex-shrink: 0;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.carousel-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    125deg,
    rgba(16, 20, 13, 0.80) 0%,
    rgba(16, 20, 13, 0.45) 55%,
    rgba(92, 127, 56, 0.18) 100%
  );
}

/* Hero content overlay */
.hero-content {
  position: absolute; inset: 0;
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 10%;
  max-width: 920px;
}

.hero-tag {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 42px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green);
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--green);
}
.hero-cta:hover {
  background: transparent;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.hero-cta-arrow { transition: transform 0.3s; display: inline-block; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(5px); }

/* Load-in animations */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag      { animation: heroIn 0.7s 0.2s both; }
.hero-headline { animation: heroIn 0.7s 0.4s both; }
.hero-sub      { animation: heroIn 0.7s 0.6s both; }
.hero-cta      { animation: heroIn 0.7s 0.8s both; }

/* Progress bar */
.carousel-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--green-light);
  z-index: 15;
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 15;
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: white; font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}
#carouselPrev { left: 28px; }
#carouselNext { right: 28px; }

/* Slide dots */
.carousel-dots {
  position: absolute; bottom: 30px; left: 10%;
  z-index: 15;
  display: flex; gap: 8px; align-items: center;
}
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: all 0.35s ease;
}
.dot.active {
  background: var(--green-light);
  width: 28px;
}

/* ----------------------------------------------------------------
   6. CHAIRMAN MESSAGE
---------------------------------------------------------------- */
.chairman-section {
  background: var(--off-white);
  padding: 100px 5%;
  overflow: hidden;
}
.chairman-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 70px;
}
.chairman-image-box {
  flex: 1; position: relative;
  max-width: 460px;
}
.chairman-border-accent {
  position: absolute; top: -18px; left: -18px;
  width: calc(100% + 36px); height: calc(100% + 36px);
  border: 2px solid var(--green);
  border-radius: 4px; opacity: 0.18;
}
.chairman-portrait {
  width: 100%; height: auto;
  border-radius: 4px;
  position: relative; z-index: 2;
  mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  box-shadow: var(--shadow-md);
}
.chairman-content { flex: 1.3; }
.chairman-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.chairman-text p {
  color: var(--text-mid);
  font-size: 1.05rem; line-height: 1.85;
  margin-bottom: 20px;
  text-align: justify;
}
.chairman-signature { margin-top: 40px; }
.chairman-divider {
  width: 160px; height: 1.5px;
  background: var(--green); margin-bottom: 14px;
}
.chairman-name {
  color: var(--green);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem; font-weight: 600;
}
.chairman-role {
  color: var(--text-light);
  font-size: 0.88rem; margin-top: 4px;
}

/* ----------------------------------------------------------------
   7. LEADERSHIP PERSPECTIVE
---------------------------------------------------------------- */
.leadership-section {
  background: var(--white);
  padding: 100px 5%;
  overflow: hidden;
}
.leadership-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
}
.leadership-content { flex: 1.2; z-index: 2; }
.leadership-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
}
.leadership-body p {
  color: var(--text-mid);
  font-size: 1.05rem; line-height: 1.85;
  margin-bottom: 22px;
  text-align: justify;
}
.leadership-footer { margin-top: 48px; }
.leadership-line {
  width: 200px; height: 1.5px;
  background: var(--green); margin-bottom: 16px;
}
.leadership-name {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.4rem; font-style: italic; font-weight: 600;
  margin-bottom: 4px;
}
.leadership-role { color: var(--text-light); font-size: 0.95rem; }
.leadership-visual { flex: 1; position: relative; }
.leadership-portrait {
  width: 100%; height: auto;
  position: relative; z-index: 2;
  border-radius: 4px;
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ----------------------------------------------------------------
   8. COMPANY OVERVIEW
---------------------------------------------------------------- */
.overview-section {
  width: 100%; min-height: 650px;
  background: var(--off-white);
  overflow: hidden; position: relative;
}
.overview-flex {
  display: flex; width: 100%; min-height: 650px;
}
.overview-visual { width: 40%; position: relative; }
.overview-img { width: 100%; height: 100%; object-fit: cover; }
.overview-page-num {
  position: absolute; bottom: 20px; left: 40px;
  color: white; font-size: 1.1rem; font-weight: 600; z-index: 5;
}
.overview-content-side {
  width: 65%; margin-left: -5%;
  background: var(--off-white);
  padding: 80px 8% 80px 12%;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 85%, 8% 70%, 8% 30%, 0% 15%);
  z-index: 2;
}
.overview-inner { max-width: 680px; }
.overview-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 36px;
}
.overview-text p {
  color: var(--text-mid);
  font-size: 1.05rem; line-height: 1.85;
  margin-bottom: 22px;
  text-align: justify;
}
.overview-bottom-bar {
  position: absolute; bottom: 0; right: 0;
  width: 100%; background: var(--green);
  padding: 10px 40px;
}

/* ----------------------------------------------------------------
   9. VISION / MISSION / VALUES
---------------------------------------------------------------- */
.values-section {
  padding: 90px 5%; background: var(--white);
}
.values-container { max-width: 1200px; margin: 0 auto; }

.values-pill {
  background: var(--green);
  border-radius: 100px 0 0 100px;
  display: flex; padding: 60px 80px;
  color: white; gap: 60px;
  margin-bottom: 80px; margin-right: -5%;
}
.values-box { flex: 1; }
.values-box-title {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.values-box-text {
  font-size: 1rem; line-height: 1.75;
  opacity: 0.94; text-align: justify;
}

.values-core-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 48px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.values-item { display: flex; align-items: center; gap: 18px; }
.values-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.values-item:hover .values-icon { background: var(--green); }
.values-label {
  font-size: 1.08rem; font-weight: 600;
  color: var(--text-dark);
}

/* ----------------------------------------------------------------
   10. INVESTMENT APPROACH
---------------------------------------------------------------- */
.approach-section {
  width: 100%; min-height: 680px;
  background: var(--off-white);
  position: relative; overflow: hidden; padding-bottom: 50px;
}
.approach-flex { display: flex; align-items: center; }
.approach-content {
  flex: 1.2; padding: 80px 5% 80px 8%; z-index: 2;
}
.approach-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 20px;
}
.approach-lead {
  color: var(--text-mid);
  font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 36px; max-width: 560px;
}
.approach-sub {
  color: var(--green);
  font-style: italic; font-size: 1.2rem; font-weight: 600;
  margin-bottom: 28px;
}
.approach-list { display: flex; flex-direction: column; gap: 24px; }
.approach-item {
  display: flex; align-items: flex-start; gap: 18px;
  border-bottom: 1px solid var(--border); padding-bottom: 22px;
  max-width: 540px;
}
.approach-icon { font-size: 1.8rem; min-width: 46px; text-align: center; }
.approach-details strong {
  display: block; color: var(--text-dark);
  font-size: 1.05rem; margin-bottom: 4px; font-weight: 700;
}
.approach-details span { color: var(--text-mid); font-size: 0.97rem; }

.approach-visual {
  flex: 0.8; height: 100vh; min-height: 680px; position: relative;
}
.approach-mask {
  height: 100%; width: 110%; margin-left: -10%;
  clip-path: polygon(100% 0, 20% 0, 0% 15%, 8% 30%, 8% 70%, 0% 85%, 20% 100%, 100% 100%);
  overflow: hidden;
}
.approach-img { width: 100%; height: 100%; object-fit: cover; }
.approach-bar {
  width: 100%; background: var(--green);
  padding: 10px 40px;
  position: absolute; bottom: 0;
}

/* ----------------------------------------------------------------
   11. CORE DIVISIONS
---------------------------------------------------------------- */
.divisions-section {
  width: 100%; min-height: 700px;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.divisions-flex { display: flex; align-items: stretch; }
.divisions-visual {
  width: 45%; position: relative; min-height: 700px;
}
.divisions-mask {
  height: 100%; width: 100%;
  clip-path: polygon(0% 0%, 80% 0%, 100% 15%, 92% 30%, 92% 70%, 100% 85%, 80% 100%, 0% 100%);
  overflow: hidden;
}
.divisions-img { width: 100%; height: 100%; object-fit: cover; }
.divisions-page-num {
  position: absolute; bottom: 50px; left: 20px;
  color: white; font-weight: 600; z-index: 5;
}
.divisions-content { width: 55%; padding: 80px 5% 100px; }
.divisions-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 40px;
}
.divisions-group { margin-bottom: 36px; }
.divisions-sub {
  color: var(--green);
  font-size: 1.2rem; font-style: italic; font-weight: 600;
  margin-bottom: 16px;
}
.divisions-list li {
  color: var(--text-mid);
  font-size: 1rem; line-height: 1.65;
  margin-bottom: 9px;
  position: relative; padding-left: 20px;
}
.divisions-list li::before {
  content: "•"; color: var(--green);
  font-weight: bold; position: absolute; left: 0;
}
.divisions-footer-bar {
  position: absolute; bottom: 0; width: 100%;
  background: var(--green); padding: 10px 40px; text-align: right;
}

/* ----------------------------------------------------------------
   12. INVESTMENT PORTFOLIO STRATEGY
---------------------------------------------------------------- */
.portfolio-section {
  width: 100%; min-height: 750px;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.portfolio-flex { display: flex; align-items: center; }
.portfolio-visual {
  width: 45%; height: 100vh; min-height: 750px; position: relative;
}
.portfolio-mask {
  height: 100%; width: 100%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 90% 30%, 90% 70%, 100% 85%, 85% 100%, 0% 100%);
  overflow: hidden;
}
.portfolio-img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-page-num {
  position: absolute; bottom: 50px; left: 40px;
  color: white; font-weight: 700; z-index: 5;
}
.portfolio-content {
  width: 55%; padding: 80px 5% 100px; z-index: 2;
}
.portfolio-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 24px; line-height: 1.1;
}
.portfolio-lead {
  color: var(--text-mid);
  font-size: 1.02rem; line-height: 1.8;
  margin-bottom: 36px; text-align: justify;
}
.portfolio-sub {
  color: var(--green);
  font-style: italic; font-size: 1.2rem; font-weight: 600;
  margin-bottom: 28px;
}
.portfolio-list { display: flex; flex-direction: column; gap: 22px; }
.portfolio-item {
  display: flex; align-items: flex-start; gap: 18px;
  border-bottom: 1px solid var(--border); padding-bottom: 18px;
  max-width: 620px;
}
.portfolio-icon { font-size: 1.8rem; min-width: 46px; text-align: center; }
.portfolio-details strong {
  display: block; color: var(--text-dark);
  font-size: 1.05rem; margin-bottom: 3px; font-weight: 700;
}
.portfolio-details span { color: var(--text-mid); font-size: 0.97rem; }
.portfolio-footer-bar {
  position: absolute; bottom: 0; width: 100%;
  background: var(--green); padding: 12px 40px; text-align: right;
}

/* ----------------------------------------------------------------
   13. REGIONAL & GLOBAL REACH
---------------------------------------------------------------- */
.reach-section {
  width: 100%; min-height: 650px;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.reach-flex { display: flex; width: 100%; min-height: 650px; }
.reach-content-wrapper {
  width: 60%; padding: 80px 8% 100px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.reach-inner { max-width: 640px; }
.reach-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 28px; line-height: 1.1;
}
.reach-text p {
  color: var(--text-mid);
  font-size: 1.05rem; line-height: 1.85;
  margin-bottom: 20px; text-align: justify;
}
.reach-page-num {
  margin-top: 36px;
  color: var(--green); font-weight: 700; font-size: 1.1rem;
}
.reach-visual {
  width: 45%; margin-left: -5%;
}
.reach-mask {
  height: 100%; width: 100%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 85%, 8% 70%, 8% 30%, 0% 15%);
  overflow: hidden;
}
.reach-img { width: 100%; height: 100%; object-fit: cover; }
.reach-footer-bar {
  position: absolute; bottom: 0; width: 100%;
  background: var(--green); padding: 12px 40px;
}

/* ----------------------------------------------------------------
   14. STRATEGIC DIVISIONS CARDS
---------------------------------------------------------------- */
.grid-section { padding: 100px 5%; background: var(--off-white); }
.grid-container { max-width: 1200px; margin: 0 auto; }
.grid-header { text-align: center; margin-bottom: 60px; }
.grid-main-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; margin-bottom: 14px;
}
.grid-subtitle {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
}
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.grid-card {
  background: var(--white);
  padding: 40px 34px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  overflow: hidden;
}
.grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(120,163,77,0.13);
  border-color: var(--green);
}
.grid-card-icon {
  font-size: 2.8rem; margin-bottom: 20px;
  width: 80px; height: 80px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s;
}
.grid-card:hover .grid-card-icon { background: var(--green); }
.grid-card-title {
  color: var(--text-dark);
  font-size: 1.3rem; font-weight: 700; margin-bottom: 14px;
}
.grid-card-text {
  color: var(--text-mid); font-size: 0.97rem; line-height: 1.65;
}
.grid-card-bar {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 4px;
  background: var(--green);
  transition: width 0.4s; border-radius: 2px 2px 0 0;
}
.grid-card:hover .grid-card-bar { width: 55%; }

/* ----------------------------------------------------------------
   15. IMPACT IN NUMBERS
---------------------------------------------------------------- */
.stats-section {
  padding: 120px 5%; background: var(--dark);
  color: white; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='%2378a34d' stroke-width='0.4' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.stats-header { text-align: center; margin-bottom: 80px; }
.stats-title {
  color: var(--green-light);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; margin-bottom: 18px;
}
.stats-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem; max-width: 560px; margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.stats-card {
  text-align: center; padding: 44px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(120,163,77,0.22);
  border-radius: 16px;
  transition: all 0.4s ease;
}
.stats-card:hover {
  background: rgba(120,163,77,0.09);
  border-color: var(--green);
  transform: translateY(-8px);
}
.stats-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--green-light);
  display: block; margin-bottom: 10px;
}
.stats-number::after {  font-size: 1.8rem; vertical-align: top; margin-left: 4px; }
.stats-label {
  font-size: 0.86rem; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.75); font-weight: 500;
}

/* ----------------------------------------------------------------
   16. LEADERSHIP PROFILES
---------------------------------------------------------------- */
.profiles-section {
  background: var(--off-white);
  padding: 100px 5% 140px;
  position: relative; overflow: hidden;
}
.profiles-container { max-width: 1100px; margin: 0 auto; }
.profiles-main-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; margin-bottom: 80px;
  text-align: center; letter-spacing: -1px;
}
.profiles-grid { display: flex; flex-direction: column; gap: 100px; }
.profile-item {
  display: flex; align-items: center; gap: 60px;
  max-width: 980px; margin: 0 auto;
}
.profile-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.profile-visual { position: relative; flex-shrink: 0; }
.profile-ring {
  position: absolute; top: -14px; left: -14px;
  width: calc(100% + 28px); height: calc(100% + 28px);
  border: 2px solid var(--green);
  border-radius: 50%; opacity: 0.25;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.profile-item:hover .profile-ring { transform: scale(1.08); opacity: 0.9; }
.profile-img {
  width: 260px; height: 315px;
  object-fit: cover; border-radius: 50%;
  display: block;
  box-shadow: 0 15px 35px rgba(120,163,77,0.15);
}
.profile-content { flex: 1; }
.profile-name {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; margin-bottom: 4px;
}
.profile-role {
  color: var(--text-dark);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 18px; font-style: italic;
}
.profile-bio { color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }
.profiles-footer {
  position: absolute; bottom: 0; left: 0; width: 100%;
  background: var(--green);
  padding: 12px 40px;
  display: flex; justify-content: space-between; align-items: center;
  color: white; z-index: 5;
}
.profiles-footer span { font-weight: 600; font-size: 0.88rem; letter-spacing: 1px; }

/* ----------------------------------------------------------------
   17. WHY CHOOSE US
---------------------------------------------------------------- */
.why-section {
  width: 100%; background: var(--off-white);
  position: relative; overflow: hidden;
}
.why-content { padding: 80px 10% 40px; background: var(--off-white); z-index: 2; }
.why-title {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; margin-bottom: 20px;
}
.why-lead {
  color: var(--text-mid); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 28px; max-width: 800px;
}
.why-sub {
  color: var(--green);
  font-style: italic; font-size: 1.2rem; font-weight: 600;
  margin-bottom: 22px;
}
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.why-list li {
  color: var(--text-dark); font-size: 1rem;
  position: relative; padding-left: 22px; line-height: 1.55;
}
.why-list li::before {
  content: "•"; color: var(--green);
  font-weight: bold; font-size: 1.4rem;
  position: absolute; left: 0; top: -4px;
}
.why-visual { width: 100%; height: 430px; position: relative; margin-top: -15px; }
.why-mask {
  width: 100%; height: 100%;
  clip-path: polygon(0 15%, 15% 5%, 35% 15%, 50% 5%, 65% 15%, 85% 5%, 100% 15%, 100% 100%, 0 100%);
  overflow: hidden;
}
.why-img { width: 100%; height: 100%; object-fit: cover; }
.why-footer-bar {
  position: absolute; bottom: 0; width: 100%;
  background: var(--green); padding: 12px 40px;
  display: flex; justify-content: space-between; align-items: center;
  color: white;
}
.why-footer-bar span { font-weight: 600; font-size: 0.86rem; letter-spacing: 1px; }

/* ----------------------------------------------------------------
   18. CONTACT FORM
---------------------------------------------------------------- */
.contact-form-section { background: var(--white); padding: 100px 5%; }
.contact-form-container { max-width: 880px; margin: 0 auto; }
.contact-form-header { text-align: center; margin-bottom: 52px; }
.contact-form-header h2 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 12px;
}
.contact-form-header p { color: var(--text-mid); font-size: 1.05rem; }

.contact-form {
  background: var(--off-white);
  border-radius: 24px; padding: 52px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
  outline: none; resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(120,163,77,0.1);
}
.form-group textarea { height: 145px; }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--green); color: white; border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease; margin-top: 8px;
}
.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.form-success {
  display: none; text-align: center; padding: 20px;
  background: rgba(120,163,77,0.1);
  border-radius: 12px; color: var(--green);
  font-weight: 600; margin-top: 16px;
  border: 1px solid rgba(120,163,77,0.25);
}

/* ----------------------------------------------------------------
   19. CONTACT DETAILS
---------------------------------------------------------------- */
.contact-details-section {
  width: 100%; background: var(--off-white);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.contact-top {
  padding: 60px 5% 0; text-align: right;
  border-bottom: 1px solid var(--border);
}
.contact-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic; color: var(--text-dark);
  font-weight: 500; margin-bottom: 22px;
}
.contact-highlight { color: var(--green); }
.contact-center {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 0;
}
.contact-logo-area { display: flex; flex-direction: column; align-items: center; }
.contact-logo-mark {
  width: 72px; height: 95px; background: var(--green);

  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: white; margin-bottom: 16px;
}
.contact-brand-name {
  color: var(--green); font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 2px;
  font-weight: 600; line-height: 1.25;
}
.contact-bottom-curve {
  background: var(--green); padding: 70px 5%;
  border-radius: 70px 70px 0 0;
  display: flex; justify-content: center;
}
.contact-glass-bar {
  width: 100%; max-width: 1100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; padding: 30px;
  display: flex; justify-content: space-around;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.contact-info-item { display: flex; align-items: center; gap: 14px; color: white; }
.contact-info-icon {
  width: 44px; height: 44px; background: white;
  color: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.97rem; font-weight: 500; }
.contact-info-label a { color: white; }

/* ----------------------------------------------------------------
   20. FOOTER
---------------------------------------------------------------- */
.site-footer { background: var(--dark); padding: 72px 5% 30px; color: rgba(255,255,255,0.65); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 60px; background: var(--green);
  border-radius: 10px; font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-display); color: white;
  font-size: 1.25rem; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 260px; margin-bottom: 18px; }
.footer-tagline {
  color: var(--green-light); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.footer-col h4 {
  color: white; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.footer-contact-icon { color: var(--green-light); min-width: 18px; margin-top: 2px; }
.footer-contact-row span,
.footer-contact-row a { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-row a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.32);
}
.footer-bottom a { color: var(--green-light); }

/* ----------------------------------------------------------------
   21. FLOATING BUTTONS
---------------------------------------------------------------- */
/* WhatsApp */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: waBounce 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
  animation: none;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed; bottom: 100px; right: 28px;
  z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); border: none; cursor: pointer;
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 18px rgba(120,163,77,0.36);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all 0.4s var(--ease-out);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-btn:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ----------------------------------------------------------------
   22. RESPONSIVE BREAKPOINTS
---------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-menu  { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 991px) {
  /* Chairman */
  .chairman-container { flex-direction: column; text-align: center; gap: 30px; }
  .chairman-image-box { margin: 0 auto; max-width: 320px; }
  .chairman-divider { margin: 14px auto; }
  /* Leadership Perspective */
  .leadership-container { flex-direction: column-reverse; gap: 40px; text-align: center; }
  .leadership-visual { max-width: 380px; margin: 0 auto; }
  .leadership-line { margin: 16px auto; }
  /* Overview */
  .overview-flex { flex-direction: column; }
  .overview-visual { width: 100%; height: 280px; }
  .overview-content-side { width: 100%; margin-left: 0; padding: 50px 5%; clip-path: none; }
  .overview-title { font-size: 2rem; text-align: center; }
  .overview-text p { text-align: center; }
  /* Values */
  .values-pill { flex-direction: column; border-radius: 30px; padding: 40px; margin-right: 0; gap: 30px; }
  .values-grid { grid-template-columns: 1fr; gap: 22px; }
  .values-core-title { text-align: center; font-size: 2rem; }
  /* Approach */
  .approach-flex { flex-direction: column; }
  .approach-visual { width: 100%; height: 320px; min-height: auto; }
  .approach-mask { width: 100%; margin-left: 0; clip-path: none; }
  .approach-content { padding: 50px 5%; width: 100%; }
  /* Divisions */
  .divisions-flex { flex-direction: column; }
  .divisions-visual { width: 100%; height: 300px; min-height: auto; }
  .divisions-mask { clip-path: none; }
  .divisions-content { width: 100%; padding: 40px 5%; }
  /* Portfolio */
  .portfolio-flex { flex-direction: column; }
  .portfolio-visual { width: 100%; height: 320px; min-height: auto; }
  .portfolio-mask { clip-path: none; }
  .portfolio-content { width: 100%; padding: 50px 5%; }
  /* Reach */
  .reach-flex { flex-direction: column; }
  .reach-content-wrapper { width: 100%; padding: 60px 5%; text-align: center; }
  .reach-text p { text-align: center; }
  .reach-visual { width: 100%; height: 300px; margin-left: 0; }
  .reach-mask { clip-path: none; }
  /* Why */
  .why-list { grid-template-columns: 1fr; }
  .why-content { padding: 60px 5%; }
  .why-visual { height: 280px; }
  .why-mask { clip-path: none; }
  /* Contact */
  .contact-glass-bar { flex-direction: column; align-items: flex-start; gap: 25px; padding: 35px; }
  .contact-top { text-align: center; }
  .contact-bottom-curve { border-radius: 40px 40px 0 0; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 850px) {
  /* Leadership profiles */
  .profile-item, .profile-item:nth-child(even) {
    flex-direction: column; text-align: center; gap: 28px;
  }
  .profile-img { width: 200px; height: 250px; }
  .profiles-main-title { margin-bottom: 50px; }
}

@media (max-width: 768px) {
  .stats-section { padding: 80px 5%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 650px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 20px; }
}

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

@media (max-width: 480px) {
  .hero-content { padding: 0 6%; }
  .carousel-btn { width: 38px; height: 38px; font-size: 0.9rem; }
  #carouselPrev { left: 10px; }
  #carouselNext { right: 10px; }
  .profiles-footer { flex-direction: column; gap: 6px; text-align: center; }
}
