/* =============================================
   LEVERAGE GROUP L.L.C — MAIN STYLESHEET
   Theme: Corporate Premium | Navy + Gold
   Fonts: Cormorant Garamond + DM Sans
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --navy:          #0B1E35;
  --navy-dark:     #060F1D;
  --navy-mid:      #112845;
  --navy-light:    #1C3A5E;
  --navy-faint:    #EDF1F7;
  --gold:          #C9A84C;
  --gold-light:    #E2BC6B;
  --gold-pale:     #F5E7C4;
  --gold-deep:     #A68635;
  --white:         #FFFFFF;
  --off-white:     #F7F5F1;
  --gray-100:      #ECEEF3;
  --gray-200:      #D3D9E4;
  --gray-500:      #8896AE;
  --gray-700:      #4B5A72;
  --text-main:     #111C2D;
  --text-muted:    #4E5F77;
  /* Agriculture accent (pistachio) — used ONLY on agriculture pages/sections */
  --pistachio:       #7EA868;
  --pistachio-light: #A3C48E;
  --pistachio-pale:  #EDF5E8;
  --pistachio-dark:  #5C8050;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        4px;
  --radius-lg:     10px;
  --radius-xl:     18px;
  --transition:    all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-sm:     0 2px 14px rgba(11,30,53,0.07);
  --shadow-md:     0 8px 32px rgba(11,30,53,0.12);
  --shadow-lg:     0 20px 60px rgba(11,30,53,0.18);
  --shadow-gold:   0 8px 32px rgba(201,168,76,0.3);
}

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

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

/* Page content wrapper — clips horizontal overflow without affecting sticky nav */
.page-wrap { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

/* --- UTILITIES --- */
.text-gold  { color: var(--gold-light); }
.bg-navy    { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }


/* =============================================
   BUTTONS
   ============================================= */
.btn-primary-brand {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-primary-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-primary-brand:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  transform: translateY(-3px);
}


/* =============================================
   SECTION LABELS & TITLES
   ============================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.label-line-light { background: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-text {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

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


/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--navy-dark);
  padding: 10px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.6);
}
.topbar-left a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.3px;
}
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right span {
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.3px;
}
.topbar-left i, .topbar-right i { color: var(--gold); font-size: 12px; }


/* =============================================
   NAVBAR
   ============================================= */
.main-navbar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  box-shadow: none;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(11,30,53,0.09);
}
.main-navbar .container {
  display: flex;
  align-items: stretch;
}

.nav-logo {
  height: 100px;
  width: auto;
  transition: var(--transition);
  display: block;
  padding: 12px 0;
}
.main-navbar.scrolled .nav-logo { height: 70px; }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 28px 14px !important;
  position: relative;
  transition: color 0.22s;
}
.main-navbar.scrolled .navbar-nav .nav-link { padding: 20px 14px !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold-deep); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Hide Bootstrap's default dropdown caret — we use our own */
.navbar-nav .nav-link.dropdown-toggle::after { display: none; }

.nav-chevron {
  font-size: 11px;
  margin-left: 2px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.dropdown.show > .nav-link .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  border: none;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  min-width: 240px;
  animation: dropIn 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  transition: var(--transition-fast);
  border-left: 2px solid transparent;
}
.dropdown-item i {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--gold-deep);
  border-left-color: var(--gold);
  padding-left: 28px;
}
.dropdown-item:hover i { color: var(--gold-deep); }

/* Mobile nav — sub-items visually grouped */
@media (max-width: 991px) {
  .dropdown-menu {
    border-top: none;
    border-left: 2px solid var(--gold);
    border-radius: var(--radius);
    background: var(--off-white);
    margin-left: 16px;
    padding: 6px 0;
    box-shadow: none;
    animation: none;
  }
  .dropdown-item {
    font-size: 13.5px;
    padding: 10px 18px;
    gap: 12px;
  }
  .dropdown-item i { font-size: 15px; }
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-icon span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}


/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute;
  inset: -15% 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 15, 29, 0.94) 0%,
    rgba(11, 30, 53, 0.8) 48%,
    rgba(17, 40, 69, 0.52) 100%
  );
  z-index: 1;
}
/* Gold accent line at the bottom of hero */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.min-vh-hero { min-height: calc(95vh - 80px); }

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label .label-line { background: var(--gold); width: 24px; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.5vw, 108px);
  font-weight: 600;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 30px;
  letter-spacing: -2px;
}
.hero-title .outline-text {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
}
.hero-title .gold-text { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
}

/* Hero Stat Panel — 2×2 compact grid */
.hero-stat-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 6px;
  width: 100%;
  max-width: 340px;
}
.hsp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.hsp-item {
  padding: 28px 20px 24px;
  border-radius: calc(var(--radius-xl) - 4px);
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.hsp-item:hover { background: rgba(255,255,255,0.08); }
.hsp-item.hsp-accent {
  background: var(--gold);
  border-color: var(--gold);
}
.hsp-item.hsp-accent:hover { background: var(--gold-light); }
.hsp-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  margin-bottom: 8px;
}
.hsp-num .stat-num {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.hsp-suf {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0;
}
.hsp-accent .stat-num { color: var(--navy); }
.hsp-accent .hsp-suf  { color: rgba(7,20,34,0.6); }
.hsp-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.hsp-accent .hsp-label { color: rgba(7,20,34,0.6); }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto;
}
.scroll-mouse-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollMouse 2s infinite;
}
@keyframes scrollMouse {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
.scroll-text {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  text-align: center;
}


/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--navy);
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.about-strip-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.strip-segment {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1 1 0;
  min-width: 0;
  transition: background 0.25s;
}
.strip-segment:hover { background: rgba(255,255,255,0.04); }
.strip-segment:last-child { border-right: none; }
.strip-segment i {
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}
.strip-segment strong {
  display: block;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}
.strip-segment span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
  margin-top: 4px;
  white-space: nowrap;
}


/* =============================================
   ABOUT SECTION
   ============================================= */
.section-about {
  padding: 120px 0;
  background: var(--white);
}

.about-image-block {
  position: relative;
  padding-bottom: 60px;
  padding-right: 48px;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-img-main:hover img { transform: scale(1.04); }

/* Decorative gold line */
.about-img-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  opacity: 0.5;
  pointer-events: none;
}

.about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  display: block;
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}
.badge-num sup { font-size: 22px; }
.badge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 5px;
}

.about-experience-pill {
  position: absolute;
  top: 24px;
  left: -14px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.2);
}
.about-experience-pill i { color: var(--gold); font-size: 16px; }

.about-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.value-chip {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  color: var(--text-main);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition-fast);
}
.value-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.value-chip i { color: var(--gold); font-size: 13px; }


/* =============================================
   STATS SECTION (Parallax)
   ============================================= */
.section-stats {
  position: relative;
  background: url('../images/stats-bg.jpg') center 50% / cover no-repeat fixed;
  padding: 100px 0;
}
.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,15,29,0.8) 0%,
    rgba(11,30,53,0.78) 100%
  );
}
.stats-row { position: relative; z-index: 1; }

.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.stat-item:hover::before { width: 60px; }

.stat-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.8;
}
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
}
.stat-number span:last-child {
  font-size: 30px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 12px;
}


/* =============================================
   SERVICES SECTION
   ============================================= */
.section-services {
  padding: 120px 0;
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  height: 100%;
  position: relative;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: border-color 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { border-color: var(--gold); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--navy-faint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
}
.service-icon {
  font-size: 24px;
  color: var(--gold-deep);
  transition: color 0.25s;
}
.service-card:hover .service-icon { color: var(--white); }

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--gray-100);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  z-index: 0;
  user-select: none;
  letter-spacing: -3px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(201,168,76,0.1); }

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}
.service-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.22s, color 0.22s;
  position: relative;
  z-index: 1;
}
.service-link:hover { gap: 14px; color: var(--gold); }


/* =============================================
   SUBSIDIARIES SECTION
   ============================================= */
.section-subsidiaries {
  padding: 120px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric decoration */
.subs-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  pointer-events: none;
}
.subs-deco-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}
.subs-deco-circle-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -80px;
}

.section-subsidiaries .section-title { color: var(--white); }
.section-subsidiaries .section-label span:not(.label-line) { color: var(--gold); }
.section-subsidiaries .section-label .label-line { background: var(--gold); }
.section-subsidiaries .section-subtitle { color: rgba(255,255,255,0.45); }

.subsidiary-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.subsidiary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.subsidiary-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.subsidiary-card:hover::before { transform: scaleX(1); }

.subsidiary-card.highlight {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
}

.subsidiary-number {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.subsidiary-icon {
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0.85;
}
.subsidiary-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.subsidiary-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 24px;
}
.subsidiary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sub-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}
.subsidiary-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.22s;
}
.subsidiary-link:hover { gap: 14px; }


/* =============================================
   FEATURED PROJECTS
   ============================================= */
.section-projects {
  padding: 120px 0;
  background: var(--white);
}
.section-projects .section-title { color: var(--navy); }

/* ── PROJECT CARDS (content-first / no-photo state) ─────────────
 * Full dark card — looks premium without photos.
 * When a photo is ready: uncomment the <div class="proj-img"> block
 * in the HTML and add class "proj-has-photo" to .proj-card.
 * ─────────────────────────────────────────────────────────────── */
.proj-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #0B1C2E 0%, #0e2442 100%);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.proj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.32);
  border-color: rgba(201,168,76,0.28);
}

/* Decorative background icon */
.proj-icon {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-size: 130px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.proj-card-lg .proj-icon { font-size: 180px; }
.proj-card:hover .proj-icon { color: rgba(201,168,76,0.06); }

/* Category badge */
.proj-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light, #D4AA50);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 20px;
  white-space: nowrap;
}

/* Title */
.proj-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.proj-title-sm { font-size: 20px; margin-bottom: 10px; }

/* Body text */
.proj-text {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* Meta row */
.proj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.proj-meta span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.proj-meta span i { color: var(--gold); font-size: 12px; }

/* Inline link inside card */
.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light, #D4AA50);
  transition: gap 0.2s;
}
.proj-link:hover { gap: 10px; color: var(--gold-light); }

/* Photo slot — uncomment block in HTML to activate */
.proj-img { display: none; }

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.project-img {
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.project-card:hover .project-img img { transform: scale(1.07); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,15,29,0.8) 30%,
    rgba(6,15,29,0.1) 50%,
    transparent 100%
  );
}

.project-card-large .project-img img { height: 520px; }
.project-card-small .project-img img { height: 248px; }

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.project-card:hover .project-info { transform: translateY(0); }

.project-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(201,168,76,0.4);
  border: 1px solid rgba(201,168,76,0.7);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
}
.project-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.project-card-small .project-title { font-size: 19px; margin-bottom: 10px; }
.project-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.65;
}
.project-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.22s;
}
.project-link:hover { gap: 14px; }


/* =============================================
   WHY CHOOSE US
   ============================================= */
.section-why {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.why-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 100%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.why-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.why-item:hover::before { transform: scaleX(1); }

.why-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--navy-faint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.why-item:hover .why-icon-wrap { background: var(--navy); }
.why-icon {
  font-size: 22px;
  color: var(--gold-deep);
  transition: color 0.25s;
}
.why-item:hover .why-icon { color: var(--gold); }

.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}


/* =============================================
   CLIENTS SECTION
   ============================================= */
.section-clients {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.clients-logo-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.clients-logo-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scrollLogos 28s linear infinite;
  width: max-content;
}
.client-logo {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.35s, filter 0.35s;
  filter: grayscale(100%);
}
.client-logo:hover { opacity: 0.85; filter: grayscale(0%); }
.client-logo img { height: 150px; width: auto; }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =============================================
   AGRICULTURE CORPORATE SECTION
   ============================================= */
.section-agriculture {
  padding: 120px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.agri-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(126,168,104,0.07) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(28,58,94,0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(126,168,104,0.03) 0%, transparent 60%);
  pointer-events: none;
}
/* Thin pistachio top border on the agriculture section */
.section-agriculture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pistachio) 0%, var(--pistachio-light) 35%, transparent 70%);
}

.section-agriculture .section-title { color: var(--white); }
/* Use pistachio for the agriculture section label on homepage */
.section-agriculture .section-label span:not(.label-line) { color: var(--pistachio-light); }
.section-agriculture .section-label .label-line { background: var(--pistachio); }

.agri-intro {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.agri-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.agri-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pistachio);
  transition: height 0.35s ease;
}
.agri-service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(126,168,104,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.agri-service-card:hover::after { height: 100%; }

.agri-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(126,168,104,0.35);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.agri-service-card:hover .agri-icon-wrap {
  background: var(--pistachio);
  border-color: var(--pistachio);
}
.agri-icon {
  font-size: 22px;
  color: var(--pistachio-light);
  transition: color 0.25s;
}
.agri-service-card:hover .agri-icon { color: var(--white); }

.agri-service-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.agri-service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 0;
}

.agri-cta-block {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 70px;
  padding-top: 50px;
}
.agri-cta-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.agri-cta-sub {
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  margin-bottom: 0;
}
.agri-cta-links { display: flex; flex-wrap: wrap; gap: 14px; }


/* =============================================
   CTA SECTION (Parallax)
   ============================================= */
.section-cta {
  position: relative;
  padding: 130px 0;
  background: url('../images/cta-bg.jpg') center 50% / cover no-repeat fixed;
  text-align: center;
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,15,29,0.93) 0%,
    rgba(11,30,53,0.9) 100%
  );
}
.section-cta .container { position: relative; z-index: 1; }
.section-cta .section-label { color: var(--gold); justify-content: center; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.0;
}
.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-top { padding: 88px 0 64px; }

.footer-logo img { height: 50px; width: auto; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transition: width 0.22s;
  opacity: 0.6;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a:hover::before { width: 18px; opacity: 1; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-subsidiary {
	color:rgba(255,255,255,0.45)
}
.footer-subsidiary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 16px;
  transition: gap 0.22s;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}
.footer-subsidiary-link:hover { gap: 14px; color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrapper {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.22s, box-shadow 0.22s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  height: 100%;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cinfo-item:last-of-type { border-bottom: none; }
.cinfo-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}
.cinfo-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}
.cinfo-item a, .cinfo-item p {
  color: var(--white);
  font-size: 15px;
  margin: 0;
  transition: color 0.2s;
}
.cinfo-item a:hover { color: var(--gold-light); }

#formAlert { display: none; }
#formAlert.show { display: block; }


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: 110px 0 80px;
  background: url('../images/page-hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,15,29,0.94) 0%, rgba(11,30,53,0.82) 60%, rgba(17,40,69,0.65) 100%);
}
.page-hero .container { position: relative; z-index: 1; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb i { font-size: 10px; color: var(--gold); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.0;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}


/* =============================================
   INNER PAGE SECTIONS
   ============================================= */
.section-inner {
  padding: 100px 0;
}
.section-inner-sm {
  padding: 72px 0;
}
.bg-off-white { background: var(--off-white); }
.bg-navy-dark  { background: var(--navy-dark); }
.bg-white      { background: var(--white); }

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.65;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Numbered process steps */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -2px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Highlight stat boxes */
.highlight-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
}
.highlight-box .h-num {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}
.highlight-box .h-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* Image placeholder */
.img-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
  text-align: center;
  border: 2px dashed var(--gray-200);
}
.img-placeholder i { font-size: 36px; opacity: 0.4; }
.img-placeholder span { font-size: 12px; letter-spacing: 0.5px; opacity: 0.7; }

/* Dark section title override */
.section-title-light { color: var(--white) !important; }
.section-subtitle-light { color: rgba(255,255,255,0.5) !important; }

/* Service detail card (inner pages) */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}
.service-detail-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.service-detail-card .sdc-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-detail-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-detail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* Team card */
.team-card {
  text-align: center;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--gold-pale);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo.placeholder {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 36px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Job listing */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: var(--transition);
  margin-bottom: 16px;
}
.job-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.job-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.job-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: 50px;
}
.job-tag.dept { color: var(--gold-deep); background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }

/* CV application form */
.apply-form-section { overflow-x: hidden; }
input[type="file"].form-control { max-width: 100%; }

/* Job card mobile */
@media (max-width: 575px) {
  .job-card { padding: 20px 18px; gap: 16px; }
  .job-title { font-size: 18px; }
  .job-meta  { gap: 8px; }
}

/* Subsidiaries overview page */
.sub-overview-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.sub-overview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.sub-ov-img {
  height: 220px;
  overflow: hidden;
}
.sub-ov-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.sub-overview-card:hover .sub-ov-img img { transform: scale(1.05); }
.sub-ov-body { padding: 32px 28px; }
.sub-ov-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sub-ov-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.sub-ov-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}


/* =============================================
   AGRICULTURE PAGE — PISTACHIO ACCENTS
   ============================================= */
.agri-page .page-hero-overlay {
  background: linear-gradient(105deg, rgba(6,15,29,0.94) 0%, rgba(20,45,28,0.82) 60%, rgba(30,65,40,0.65) 100%);
}
.agri-page .section-label span:not(.label-line) { color: var(--pistachio); }
.agri-page .section-label .label-line { background: var(--pistachio); }

.agri-proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.agri-proj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.agri-proj-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.agri-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.agri-proj-card:hover .agri-proj-img img {
  transform: scale(1.05);
}
.agri-proj-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,25,15,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.agri-proj-caption {
  padding: 20px 22px 22px;
}
.agri-proj-caption .agri-proj-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pistachio-dark);
  display: block;
  margin-bottom: 6px;
}
.agri-proj-caption h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}

.agri-highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--pistachio);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
}
.agri-highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.agri-highlight-card .ahc-icon {
  width: 50px;
  height: 50px;
  background: var(--pistachio-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pistachio-dark);
  margin-bottom: 18px;
  transition: background 0.25s;
}
.agri-highlight-card:hover .ahc-icon {
  background: var(--pistachio);
  color: var(--white);
}
.agri-highlight-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.agri-highlight-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.agri-stat-strip {
  background: var(--pistachio-pale);
  border-top: 1px solid rgba(126,168,104,0.2);
  border-bottom: 1px solid rgba(126,168,104,0.2);
  padding: 48px 0;
}
.agri-stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(126,168,104,0.25);
}
.agri-stat-item:last-child { border-right: none; }
.agri-stat-num {
  font-family: var(--font-body);
  font-size: 52px;
  font-weight: 600;
  color: var(--pistachio-dark);
  line-height: 1;
  letter-spacing: -2px;
}
.agri-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pistachio-dark);
  opacity: 0.65;
  margin-top: 8px;
}

.agri-cta-section {
  background: var(--navy-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.agri-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pistachio) 0%, var(--pistachio-light) 50%, transparent 100%);
}
.agri-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pistachio);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--pistachio);
}
.agri-ext-link:hover {
  background: var(--pistachio-light);
  border-color: var(--pistachio-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(126,168,104,0.3);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
  .hero-title { letter-spacing: -1.5px; }
}

@media (max-width: 991px) {
  .hero-section  { min-height: auto; align-items: flex-start; }
  .hero-content  { padding-top: 72px; padding-bottom: 72px; }
  .min-vh-hero           { min-height: auto; }
  .hero-scroll-indicator { display: none; }
  .page-hero             { padding: 60px 0 50px; }
  .page-hero-title       { font-size: clamp(32px, 8vw, 52px); letter-spacing: -0.5px; }
  .page-hero-sub         { font-size: 15px; }
  .why-grid      { grid-template-columns: 1fr; }
  .section-about, .section-services, .section-subsidiaries,
  .section-projects, .section-why, .section-clients,
  .section-agriculture { padding: 80px 0; }
  .about-image-block { padding-right: 0; padding-bottom: 50px; }
  .about-experience-pill { left: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child { border-bottom: none; }
  .navbar-nav .nav-link { padding: 12px 14px !important; }
  .about-strip-inner { flex-wrap: wrap; }
  .strip-segment { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; }
  .strip-segment:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .strip-segment:last-child, .strip-segment:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  /* Disable CSS fixed parallax on mobile for performance */
  .section-stats { background-attachment: scroll; }
  .section-cta   { background-attachment: scroll; }
}

@media (max-width: 767px) {
  .topbar-right { display: none; }
  .topbar-left  { gap: 16px; }
  .hero-title   { font-size: clamp(44px, 12vw, 68px); letter-spacing: -1px; }
  .hero-cta .btn-outline-light { margin-left: 0 !important; }
  .cta-buttons  .btn-outline-light { margin-left: 0 !important; }
  .section-cta  { padding: 90px 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .project-card-large .project-img img { height: 360px; }
  .agri-cta-block .d-flex { flex-direction: column; align-items: flex-start !important; }
  .contact-form-card { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 42px; letter-spacing: -0.5px; }
  .hero-stat-panel { display: none; }
  .section-title { font-size: 32px; }
  .cta-title     { font-size: 38px; letter-spacing: -1px; }
  .strip-segment { flex: 1 1 100%; border-right: none !important; }
  .strip-segment:nth-child(odd) { border-right: none !important; }
  .why-grid      { grid-template-columns: 1fr; }
  .about-img-deco { display: none; }
  .subs-deco-circle { display: none; }
}
