/* =============================================================
   Inter Agro Group — Custom Stylesheet
   Stack: Bootstrap 5 + custom CSS variables
   ============================================================= */

/* ---------- CSS Variables / Brand Tokens ---------- */
:root {
  --green: #1d6b2a;
  --green-dark: #144d1e;
  --green-light: #26873a;
  --lime: #8ab800;
  --lime-dark: #6e9300;
  --navy: #0d1b2a;
  --navy-mid: #142233;
  --gold: #c9a030;
  --white: #ffffff;
  --off-white: #f7f8f5;
  --gray-100: #f4f5f2;
  --gray-200: #e8eae4;
  --gray-500: #7a8070;
  --gray-700: #444d3a;
  --text: #1a2010;
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .18);
  --transition: .3s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

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


/* ---------- Utility ---------- */
.text-green {
  color: var(--green) !important;
}

.text-lime {
  color: var(--lime) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-green {
  background: var(--green) !important;
}

.bg-lime {
  background: var(--lime) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-navy-mid {
  background: var(--navy-mid) !important;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: .75rem;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-heading.light {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn-green {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

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

.btn-lime {
  background: var(--lime);
  color: #fff;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
}

.btn-lime:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  color: #fff;
}

.btn-outline-light-green {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light-green:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  color: #fff;
}

.btn-icon-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 6px 8px;
  cursor: pointer;
  transition: color var(--transition);
}

.btn-icon-nav:hover {
  color: var(--lime);
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar a {
  color: rgba(255, 255, 255, .7);
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--lime);
}

.topbar-cert {
  color: var(--lime);
  font-weight: 600;
}

/* ---------- Navbar ---------- */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 14px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-navbar.transparent {
  background: transparent;
}

.site-navbar.scrolled {
  background: rgba(13, 27, 42, .96);
  backdrop-filter: blur(8px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, .88) !important;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 12px !important;
  transition: color var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--lime) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-phone {
  color: rgba(255, 255, 255, .85);
  font-size: .875rem;
  font-weight: 500;
}

.nav-phone:hover {
  color: var(--lime);
}

/* Topbar shifts navbar down on desktop */
@media (min-width: 992px) {
  .site-navbar {
    top: 37px;
  }

  .site-navbar.scrolled {
    top: 0;
  }

  body.has-topbar {
    --navbar-offset: 88px;
  }
}

/* ---------- Mega Menu ---------- */
.mega-dropdown {
  position: static !important;
}

.mega-menu {
  width: 100%;
  left: 0 !important;
  border: none;
  border-top: 3px solid var(--lime);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 0;
}

.mega-heading {
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: .75rem;
  font-weight: 700;
}

.mega-link {
  display: block;
  padding: 5px 0;
  font-size: .875rem;
  color: var(--gray-700);
  transition: color var(--transition), padding var(--transition);
}

.mega-link:hover {
  color: var(--green);
  padding-left: 6px;
}

.mega-highlight {
  min-height: auto;
  padding: 0.25rem;
  display: flex;
  align-items: stretch;
}

.mega-stat-panel {
  background: rgba(138, 184, 0, .08);
  border: 1px solid rgba(138, 184, 0, .18);
  border-left: 4px solid var(--lime);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .55rem;
  width: 100%;
}

.mega-stat-panel p {
  margin: 0;
}

.mega-stat-val {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1.05;
}

.mega-stat-label {
  font-size: .78rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.4;
}

.mega-stat-label.mb-0 {
  margin-bottom: 0;
}

.mega-stat-val {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--green);
  margin: 0;
  line-height: 1.05;
}

.mega-stat-label {
  font-size: .82rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.4;
}

.mega-download {
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
}

.mega-download:hover {
  color: var(--lime);
}

/* Standard dropdown */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--lime);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  font-size: .875rem;
  padding: .55rem 1.25rem;
  color: var(--gray-700);
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--green);
}

/* Search bar */
.navbar-search-bar {
  display: none;
  background: var(--navy-mid);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.navbar-search-bar.open {
  display: block;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 140px 0 70px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 60%);
  opacity: .7;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.breadcrumb-nav {
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
}

.breadcrumb-nav a:hover {
  color: var(--lime);
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, .4);
  margin: 0 8px;
}

.breadcrumb-nav .current {
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-header p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ---------- Hero Slider ---------- */
/* .hero-swiper { height: 100vh; min-height: 600px; position: relative; } */
.hero-swiper {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, .82) 0%, rgba(13, 27, 42, .4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--lime);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: .85;
  margin-bottom: 2rem;
}

.hero-swiper-pagination {
  bottom: 30px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--lime);
  width: 28px;
  border-radius: 5px;
}

.hero-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.hero-swiper-btn:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

/* Video CTA */
.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  margin-top: 1.5rem;
  transition: color var(--transition);
}

.hero-video-link .play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

.hero-video-link:hover {
  color: #fff;
}

/* ---------- Ticker / Commodity Prices ---------- */
.ticker-bar {
  background: var(--green);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--lime);
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
  margin-left: 120px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 48px;
  font-size: .82rem;
}

.ticker-item .name {
  font-weight: 600;
  opacity: .75;
}

.ticker-item .price {
  font-weight: 700;
}

.ticker-item .change.up {
  color: #a8e6b0;
}

.ticker-item .change.down {
  color: #ffb3b3;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

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

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--navy);
  padding: 60px 0;
}

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

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
}

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

/* ---------- Category Cards ---------- */
.cat-section {
  padding: 90px 0;
  background: var(--off-white);
}

.cat-section-header {
  margin-bottom: 3rem;
}

.cat-section-header .section-sub {
  max-width: 520px;
}

/* New card layout */
.category-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 107, 42, .15);
  border-color: var(--green);
}

/* Icon area — dark green gradient banner */
.cat-card-icon-wrap {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 2.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-card-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.cat-card-icon-wrap i {
  font-size: 2.6rem;
  color: var(--lime);
  position: relative;
  z-index: 1;
  transition: transform .3s ease;
}

.category-card:hover .cat-card-icon-wrap i {
  transform: scale(1.14) rotate(-4deg);
}

/* Body */
.cat-card-body {
  padding: 1.4rem 1.4rem .75rem;
  flex: 1;
}

.cat-card-body h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.3;
}

.cat-card-body p {
  font-size: .82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* Footer link */
.cat-card-footer {
  padding: .75rem 1.4rem 1.1rem;
  border-top: 1px solid var(--gray-100);
}

.cat-card-footer span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease, color .25s ease;
}

.cat-card-footer i {
  font-size: .7rem;
  transition: transform .25s ease;
}

.category-card:hover .cat-card-footer span {
  color: var(--lime-dark);
  gap: 10px;
}

.category-card:hover .cat-card-footer i {
  transform: translateX(3px);
}

/* ---------- Product Cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

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

.product-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.product-card-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  font-size: 3rem;
  color: var(--gray-500);
}

.product-card-body {
  padding: 1.25rem;
}

.product-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--green);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: .75rem;
}

.product-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.product-card p {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.product-card-footer {
  padding: .75rem 1.25rem;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-origin {
  font-size: .75rem;
  color: var(--gray-500);
}

.product-origin i {
  color: var(--lime);
  margin-right: 4px;
}

/* ---------- Filter Tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-tab {
  padding: 6px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ---------- Sustainability ---------- */
.sustainability-section {
  background: var(--navy);
}

.pillar-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--lime);
}

.pillar-icon {
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: 1rem;
}

.pillar-card h5 {
  color: #fff;
  margin-bottom: .75rem;
}

.pillar-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  margin: 0;
}

.pillar-card p+p {
  margin-top: 0.875rem;
}

/* About — Vision & Mission */
.vision-mission-section .pillar-card {
  box-shadow: inset 4px 0 0 0 rgba(255, 255, 255, 0.22);
}

.vision-mission-section .pillar-card--vision {
  box-shadow: inset 4px 0 0 0 var(--lime);
}

.vision-mission-section .pillar-card:hover {
  box-shadow: inset 4px 0 0 0 var(--lime);
}

.vision-mission-section .pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform var(--transition), background var(--transition);
}

.vision-mission-section .pillar-card:hover .pillar-icon {
  background: rgba(255, 255, 255, 0.12);
}

.vision-mission-section .pillar-card h5 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

/* ---------- Why Us ---------- */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-text h5 {
  margin-bottom: .35rem;
  font-size: 1rem;
}

.why-text p {
  font-size: .875rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Supply Chain Steps ---------- */
.chain-step {
  text-align: center;
  position: relative;
}

.chain-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--lime), transparent);
}

.chain-step:last-child::after {
  display: none;
}

.chain-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.chain-step h6 {
  font-size: .9rem;
  font-weight: 700;
}

.chain-step p {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ---------- Countries ---------- */
.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 500;
  margin: 4px;
  transition: var(--transition);
}

.country-tag:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.country-tag .flag {
  font-size: 1rem;
}

/* ---------- News Page ---------- */
.news-page-section {
  padding: 80px 0 100px;
  background: #f5f6f3;
}

/* Sticky sidebar on desktop */
@media (min-width: 992px) {
  .news-sidebar-sticky {
    position: sticky;
    top: 100px;
  }
}

/* ── News category badge ───────────────────────────────────────── */
.news-cat-badge {
  display: inline-block;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── Featured article card ──────────────────────────────────────── */
.news-featured-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}

.news-featured-card:hover {
  box-shadow: 0 12px 36px rgba(29, 107, 42, .13);
  transform: translateY(-4px);
}

.news-featured-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-featured-card:hover .news-featured-img img {
  transform: scale(1.04);
}

.news-featured-img .news-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: .72rem;
}

.news-featured-body {
  padding: 2rem 2rem 2rem;
}

.news-meta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.news-meta-row i {
  color: var(--lime);
  margin-right: 5px;
}

.news-featured-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: .85rem;
}

.news-featured-body>p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Article list cards ──────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-article-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.news-article-card:hover {
  box-shadow: 0 8px 28px rgba(29, 107, 42, .12);
  transform: translateY(-3px);
  border-color: var(--green);
}

.nac-img {
  width: 200px;
  min-width: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.nac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.news-article-card:hover .nac-img img {
  transform: scale(1.06);
}

.nac-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nac-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-bottom: .7rem;
  font-size: .75rem;
  color: var(--gray-500);
}

.nac-meta i {
  color: var(--lime);
  margin-right: 4px;
}

.nac-badge {
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}

.nac-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: .5rem;
}

.nac-body p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .25s ease, gap .25s ease;
}

.news-read-more i {
  font-size: .7rem;
  transition: transform .25s ease;
}

.news-read-more:hover {
  color: var(--lime-dark);
  gap: 9px;
}

.news-read-more:hover i {
  transform: translateX(3px);
}

/* ── Pagination ─────────────────────────────────────────────────── */
.news-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.npag-btn,
.npag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  transition: var(--transition);
  text-decoration: none;
}

.npag-btn:hover,
.npag-num:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.npag-num.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.npag-btn.disabled {
  opacity: .4;
  pointer-events: none;
}

.npag-dots {
  color: var(--gray-500);
  line-height: 38px;
  padding: 0 4px;
}

/* ── Sidebar Widgets ─────────────────────────────────────────────── */
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-widget--dark {
  background: var(--navy);
  border-color: transparent;
}

.sidebar-widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}

.sidebar-widget--dark .sidebar-widget-head {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.sidebar-widget-head i {
  color: var(--lime);
  font-size: 1rem;
}

.sidebar-widget-body {
  padding: 1.25rem 1.4rem;
}

/* Price rows */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .83rem;
}

.price-row:last-of-type,
.price-row--last {
  border-bottom: none;
}

.price-name {
  color: var(--gray-700);
  font-weight: 500;
}

.price-right {
  text-align: right;
}

.price-val {
  font-weight: 700;
  color: var(--navy);
}

.price-val small {
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 400;
}

.price-chg {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .75rem;
  font-weight: 700;
  margin-left: 8px;
}

.price-chg.up {
  color: #16a34a;
}

.price-chg.down {
  color: #dc2626;
}

.price-disclaimer {
  margin-top: .85rem;
  font-size: .7rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Newsletter widget */
.newsletter-desc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form-widget .form-control {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .875rem;
}

.newsletter-form-widget .form-control::placeholder {
  color: rgba(255, 255, 255, .4);
}

.newsletter-form-widget .form-control:focus {
  background: rgba(255, 255, 255, .12);
  border-color: var(--lime);
  box-shadow: none;
}

/* Topic tags */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.topic-tag {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-100);
  transition: var(--transition);
  text-decoration: none;
}

.topic-tag:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── News Cards (index.php homepage) — keep working ─────────────── */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  will-change: transform;
}

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

.news-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  background: var(--gray-200);
}

.news-card-body {
  padding: 1.5rem;
}

.news-meta {
  font-size: .75rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}

.news-meta span {
  margin-right: 1rem;
}

.news-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .75rem;
}

.news-card p {
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

/* ── Responsive: stack article cards on mobile ───────────────────── */
@media (max-width: 767px) {
  .news-article-card {
    flex-direction: column;
  }

  .nac-img {
    width: 100%;
    min-width: unset;
    height: 180px;
  }

  .news-featured-body h2 {
    font-size: 1.2rem;
  }

  .news-featured-img {
    height: 200px;
  }
}

/* ---------- Services Cards ---------- */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lime);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

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

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.service-card p {
  font-size: .875rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Certifications ---------- */
.cert-badge {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.cert-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--lime);
}

.cert-badge h6 {
  font-size: 1rem;
  color: var(--green);
  font-weight: 800;
  margin-bottom: .5rem;
}

.cert-badge p {
  font-size: .8rem;
  color: var(--gray-500);
  margin: 0;
}

.cert-icon {
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: .75rem;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.testimonial-card blockquote {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}

.testimonial-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  background: #fff;
  color: var(--navy);
  font-size: .95rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--off-white);
  color: var(--green);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-body {
  color: var(--gray-700);
  font-size: .9rem;
  line-height: 1.7;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: border-color var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 107, 42, .12);
}

.form-label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-700);
}

/* ---------- Office Card ---------- */
.office-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-md);
}

.office-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.office-info {
  display: flex;
  gap: 10px;
  margin-bottom: .75rem;
  font-size: .875rem;
}

.office-info i {
  color: var(--lime);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

/* ---------- Job Card ---------- */
.job-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow-md);
}

.job-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.job-meta span {
  font-size: .8rem;
  color: var(--gray-500);
  margin-right: 1rem;
}

.job-meta i {
  color: var(--lime);
  margin-right: 4px;
}

.job-tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  color: var(--green);
  white-space: nowrap;
}

.job-body {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.job-body.show {
  display: block;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: var(--green);
}

.newsletter-form .form-control {
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter-success {
  font-size: .875rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gray-500);
  gap: 1rem;
  font-size: 3rem;
}

/* ---------- Logistics Strip ---------- */
.logistics-strip {
  background: var(--green);
  padding: 56px 0;
}

.logistics-item {
  text-align: center;
  color: #fff;
}

.logistics-item i {
  font-size: 2.5rem;
  color: var(--lime);
  margin-bottom: 1rem;
  display: block;
}

.logistics-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.logistics-item p {
  font-size: .82rem;
  opacity: .75;
  margin: 0;
}

/* ---------- Region Cards ---------- */
.region-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.region-card:hover {
  border-color: var(--lime);
}

.region-card h5 {
  color: #fff;
  margin-bottom: 1rem;
}

.region-country {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: .35rem;
}

/* ---------- Infra Feature ---------- */
.infra-feature {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.infra-feature:last-child {
  border: none;
}

.infra-stat {
  margin-bottom: 1.5rem;
}

.infra-stat .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.infra-stat .lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
}

.infra-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
}

.footer-newsletter {
  background: var(--navy-mid);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-newsletter h4 {
  color: #fff;
  font-family: var(--font-head);
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-about {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .6rem;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--lime);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: .75rem;
  font-size: .85rem;
}

.footer-contact-list i {
  color: var(--lime);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--lime);
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--lime);
  color: #fff;
}

.footer-bottom {
  background: rgba(0, 0, 0, .25);
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--lime);
}

.badge-cert {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .55);
  padding: 4px 9px;
  border-radius: 3px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 9998;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #fff;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

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

/* ---------- Success Alerts ---------- */
.alert-success-custom {
  background: rgba(29, 107, 42, .1);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .site-navbar {
    top: 0 !important;
    background: var(--navy) !important;
    padding: 6px 0;
  }

  .site-navbar .container {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .site-navbar .navbar-brand img {
    height: 36px !important;
    padding: 2px 4px !important;
  }

  .navbar-collapse {
    background: var(--navy);
    padding: 1rem 0;
    max-height: calc(100svh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navbar-collapse .nav-link {
    white-space: normal;
  }

  .navbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: .75rem !important;
    padding: .75rem 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: .5rem;
  }

  .navbar-actions .btn {
    width: 100%;
  }

  .mega-menu,
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, .05) !important;
    border: none !important;
  }

  .mega-link,
  .dropdown-item {
    color: rgba(255, 255, 255, .8) !important;
  }

  .mega-highlight {
    border: none;
    padding-left: 1rem;
  }

  .hero-swiper {
    height: 92svh;
  }
}

@media (max-width: 576px) {
  .ticker-label {
    display: none;
  }

  .ticker-track {
    margin-left: 0;
  }

  .chain-step::after {
    display: none;
  }
}

/* ==============================================================
   QUALITY AUDIT v2 — Missing utilities, responsive fixes,
   design improvements, bug fixes
   ============================================================== */

/* ── Missing Bootstrap-compatible utilities ─────────────────── */
.px-6 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.py-6 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.border-dashed {
  border-style: dashed !important;
}

.lh-relaxed {
  line-height: 1.75 !important;
}

/* ── 8-column row grid ──────────────────────────────────────── */
@media (min-width: 992px) {
  .row-cols-lg-8>* {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

/* ── Supply chain connector: only on desktop ────────────────── */
@media (max-width: 991px) {
  .chain-step::after {
    display: none !important;
  }
}

/* ── Dropdown slide-in animation ─────────────────────────────── */
@media (min-width: 992px) {
  .dropdown-menu.show {
    animation: dropIn .18s ease;
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

/* ── Ticker guaranteed label width ──────────────────────────── */
.ticker-label {
  min-width: 115px;
}

/* ── Pagination styling ──────────────────────────────────────── */
.pagination .page-link {
  color: var(--green);
  border-color: var(--gray-200);
  padding: .45rem .85rem;
  font-size: .875rem;
  transition: var(--transition);
}

.pagination .page-item.active .page-link {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pagination .page-link:hover {
  color: var(--green-dark);
  background: var(--off-white);
  border-color: var(--gray-200);
}

/* ── Filter tabs — horizontal scroll on mobile ───────────────── */
@media (max-width: 767px) {
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 6px;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ── Active nav link ─────────────────────────────────────────── */
.site-navbar .nav-link.active,
.site-navbar .nav-link[aria-expanded="true"] {
  color: var(--lime) !important;
}

/* ── Better mega-menu mobile collapse ───────────────────────── */
@media (max-width: 991px) {

  .navbar-collapse .mega-menu,
  .navbar-collapse .dropdown-menu {
    background: rgba(255, 255, 255, .04) !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, .07) !important;
    box-shadow: none !important;
    padding: .25rem 0 .75rem !important;
  }

  .navbar-collapse .mega-heading {
    color: rgba(255, 255, 255, .32) !important;
    font-size: .65rem !important;
  }

  .navbar-collapse .mega-link,
  .navbar-collapse .dropdown-item {
    color: rgba(255, 255, 255, .78) !important;
    padding: 6px 1rem !important;
    font-size: .85rem !important;
    background: transparent !important;
  }

  .navbar-collapse .mega-link:hover,
  .navbar-collapse .dropdown-item:hover {
    color: var(--lime) !important;
    padding-left: 1.35rem !important;
    background: transparent !important;
  }

  .navbar-collapse .mega-highlight {
    border: 1px solid rgba(255, 255, 255, .12) !important;
    background: rgba(255, 255, 255, .05) !important;
    border-radius: 14px !important;
    padding: 1rem !important;
    margin: .75rem 1rem !important;
  }

  .navbar-collapse .mega-stat-val {
    font-size: 1.7rem !important;
  }

  .navbar-collapse .mega-stat-label {
    color: rgba(255, 255, 255, .5) !important;
  }

  .navbar-collapse .btn-green {
    font-size: .8rem;
    margin-top: .25rem;
  }

  .navbar-collapse .mega-download {
    color: var(--lime) !important;
    font-size: .82rem;
  }
}

/* ── Page header — mobile reduction ─────────────────────────── */
@media (max-width: 991px) {
  .page-header {
    padding: 115px 0 52px;
  }
}

@media (max-width: 575px) {
  .page-header {
    padding: 105px 0 44px;
  }

  .page-header h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .page-header p {
    font-size: .9rem;
  }
}

/* ── Hero section — mobile ───────────────────────────────────── */
@media (max-width: 575px) {
  .hero-swiper {
    height: 100vh;
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 2.9rem);
  }

  .hero-content p {
    font-size: .95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: .63rem;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-swiper-btn {
    width: 38px;
    height: 38px;
    font-size: .8rem;
  }

  .hero-content .btn {
    font-size: .82rem;
    padding: .6rem 1.25rem !important;
  }
}

/* ── Stats bar — mobile ──────────────────────────────────────── */
@media (max-width: 575px) {
  .stats-bar {
    padding: 44px 0;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ── Supply chain — mobile ───────────────────────────────────── */
@media (max-width: 575px) {
  .chain-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .chain-step h6 {
    font-size: .8rem;
  }

  .chain-step p {
    font-size: .7rem;
  }
}

/* ── Logistics strip — mobile ────────────────────────────────── */
@media (max-width: 575px) {
  .logistics-strip {
    padding: 40px 0;
  }

  .logistics-item i {
    font-size: 2rem;
  }
}

/* ── CTA section — mobile ────────────────────────────────────── */
@media (max-width: 767px) {
  .cta-section {
    padding: 64px 0 !important;
  }

  .cta-section .section-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-section .d-flex.justify-content-center {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ── Footer newsletter — mobile stack ───────────────────────── */
@media (max-width: 575px) {
  .newsletter-form {
    flex-direction: column !important;
    gap: .65rem !important;
  }

  .newsletter-form .form-control {
    border-radius: var(--radius) !important;
  }

  .newsletter-form .btn {
    border-radius: var(--radius) !important;
    width: 100%;
  }
}

/* ── Footer bottom — mobile ──────────────────────────────────── */
@media (max-width: 767px) {
  .footer-main {
    padding: 48px 0 32px;
  }

  .footer-bottom .container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .certifications {
    justify-content: center;
  }
}

/* ── Section heading — mobile ────────────────────────────────── */
@media (max-width: 575px) {
  .section-heading {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
  }

  .section-sub {
    font-size: .95rem;
  }
}

/* ── Why item — very small screens ──────────────────────────── */
@media (max-width: 380px) {
  .why-item {
    flex-direction: column;
    gap: .65rem;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ── Job cards — mobile ──────────────────────────────────────── */
@media (max-width: 575px) {
  .job-header {
    flex-wrap: wrap;
  }

  .job-meta span {
    font-size: .74rem;
    display: inline-block;
    margin-bottom: 2px;
  }

  .job-title {
    font-size: 1rem;
  }
}

/* ── Infrastructure — mobile ─────────────────────────────────── */
@media (max-width: 767px) {
  .infra-feature {
    padding: 48px 0;
  }

  .infra-feature>.row>[class*="col-"] {
    order: unset !important;
  }
}

.infra-icon-visual {
  background: var(--off-white);
  border-radius: 8px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  color: var(--green);
  opacity: .35;
  border: 1px solid var(--gray-200);
  transition: opacity var(--transition);
}

.infra-icon-visual:hover {
  opacity: .5;
}

@media (max-width: 767px) {
  .infra-icon-visual {
    height: 220px;
    font-size: 4rem;
  }
}

/* ── CV upload area styling ──────────────────────────────────── */
.cv-upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  padding: 2rem;
  text-align: center;
}

.cv-upload-area:hover {
  border-color: var(--green);
  background: rgba(29, 107, 42, .04);
}

/* ── Form improvements ───────────────────────────────────────── */
.form-control::placeholder,
.form-select::placeholder {
  color: var(--gray-500);
  opacity: .65;
}

@media (max-width: 575px) {
  .ajax-form .btn[type="submit"] {
    width: 100%;
  }
}

/* ── Office card links ───────────────────────────────────────── */
.office-info a {
  color: var(--green);
  font-weight: 500;
  transition: color var(--transition);
}

.office-info a:hover {
  color: var(--lime);
}

/* ── Cert badge hover lift ───────────────────────────────────── */
.cert-badge {
  transition: transform var(--transition), box-shadow var(--transition);
}

.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ── Pillar icon scale on hover ──────────────────────────────── */
.pillar-icon {
  transition: transform var(--transition);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.12);
}

/* ── Product placeholder icon ────────────────────────────────── */
.product-card-img-placeholder i {
  opacity: .45;
}

/* ── Product item hidden state ───────────────────────────────── */
.product-item {
  transition: opacity .2s;
}

/* ── Market price row hover ──────────────────────────────────── */
.market-price-row:hover {
  background: var(--gray-100);
}

/* ── Service card equal height ───────────────────────────────── */
@media (min-width: 768px) {
  .service-card {
    display: flex;
    flex-direction: column;
  }

  .service-card p {
    flex: 1;
  }
}

/* ── News horizontal card responsive ────────────────────────── */
@media (max-width: 767px) {
  .news-card-row {
    flex-direction: column !important;
  }

  .news-card-row .news-side-img {
    display: none !important;
  }
}

/* ── About page stat override (smaller numbers) ──────────────── */
.about-stat .stat-number {
  font-size: clamp(1.6rem, 3vw, 2.25rem) !important;
  color: var(--green) !important;
}

.about-stat .stat-label {
  color: var(--gray-500) !important;
}

/* ── Sticky nav brand shrinks on scroll ──────────────────────── */
.site-navbar.scrolled .navbar-brand img {
  height: 44px;
  transition: height var(--transition);
}

/* ── Back to top lift animation ──────────────────────────────── */
.back-to-top {
  transform: translateY(8px);
}

.back-to-top.show {
  transform: translateY(0);
}

/* ── Wider container cap on XL ───────────────────────────────── */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

/* ── Filter tab improved interaction ─────────────────────────── */
.filter-tab {
  align-items: center;
}

/* ── Table specs (product details page) ──────────────────────── */
.table-specs td:first-child {
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  white-space: nowrap;
}

.table-specs td {
  padding: .6rem .85rem;
  font-size: .875rem;
  vertical-align: middle;
}

.table-specs tr:last-child td {
  border-bottom: none;
}

/* ── Region card icon alignment ──────────────────────────────── */
.region-country i {
  color: var(--lime);
  margin-right: 6px;
  flex-shrink: 0;
}

/* ── SDG badge border-top alignment ──────────────────────────── */
.sdg-badge {
  border-top: 4px solid;
}

/* ── Better breadcrumb spacing ───────────────────────────────── */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

/* ── Product cards in grid hover ─────────────────────────────── */
.product-card {
  will-change: transform;
}

.news-card {
  will-change: transform;
}

/* ── Global link smoothness ──────────────────────────────────── */
a {
  transition: color var(--transition);
}

/* ── Final polish: phone no-wrap, nav compact, infra separator ─ */
.nav-phone {
  white-space: nowrap;
}

/* Ensure nav links don't wrap at awkward widths */
.site-navbar .nav-link {
  white-space: nowrap;
}

/* Infra feature rows need spacing between each */
.infra-feature+.infra-feature {
  margin-top: 64px;
}

@media (max-width: 767px) {
  .infra-feature+.infra-feature {
    margin-top: 48px;
  }
}

/* Product detail specs table responsive */
@media (max-width: 575px) {
  .table-specs td:first-child {
    white-space: normal;
  }

  .table-specs {
    font-size: .82rem;
  }
}

/* Better 404 / empty state */
.empty-state {
  text-align: center;
  padding: 48px 0;
  color: var(--gray-500);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .4;
}

/* Better footer certifications gap */
.certifications {
  gap: 6px;
}

/* Consistent section padding via section utility */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

/* =============================================================
   Contact Page
   ============================================================= */

/* Utility: text-light & spacing */
:root {
  --text-light: var(--gray-500);
}

.py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.bg-white {
  background: #fff;
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Info items (icon + text) --- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-info-item p,
.contact-info-item a {
  font-size: .92rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--green);
}

/* ========== NEW ENHANCEMENTS ========== */

/* --- Business Divisions Carousel --- */
.divisions-carousel {
  position: relative;
}

.divisions-swiper {
  padding-bottom: 48px;
}

.divisions-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.division-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(29, 107, 42, .16);
  border-color: var(--green);
}

.division-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--gray-100);
}

.division-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.division-badge {
  display: inline-block;
  background: var(--off-white);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}

.division-card h5 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.division-card p {
  font-size: .9rem;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.division-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.division-card-footer i {
  color: var(--lime);
  font-size: .85rem;
  transition: transform .3s ease;
}

.division-card:hover .division-card-footer i {
  transform: translateX(4px);
}

/* --- News/Updates Carousel --- */
.news-carousel-section {
  position: relative;
}

.news-carousel-swiper {
  padding-bottom: 56px;
}

.news-carousel-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s ease;
}

.news-carousel-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  transform: translateY(-6px);
  border-color: var(--green);
}

.news-carousel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-100);
  transition: transform .4s ease;
}

.news-carousel-card:hover .news-carousel-img {
  transform: scale(1.05);
}

.news-carousel-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-carousel-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: .75rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.news-carousel-meta i {
  color: var(--lime);
}

.news-carousel-body h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-carousel-body p {
  font-size: .85rem;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-carousel-card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .25s ease;
}

.news-carousel-card-link i {
  font-size: .7rem;
  transition: transform .25s ease;
}

.news-carousel-card:hover .news-carousel-card-link {
  color: var(--lime);
  gap: 8px;
}

.news-carousel-card:hover .news-carousel-card-link i {
  transform: translateX(3px);
}

/* --- Global Presence Section --- */
.presence-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .presence-map-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.presence-map-box {
  background: var(--gray-100);
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.presence-map-box i {
  font-size: 4rem;
  color: var(--green);
  opacity: .35;
}

.presence-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.presence-region {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 4px solid var(--lime);
  transition: all .3s ease;
}

.presence-region:hover {
  background: #fff;
  border-left-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.presence-region h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.presence-countries {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.presence-countries strong {
  color: var(--green);
  font-weight: 600;
}

/* --- Testimonials Carousel --- */
.testimonials-carousel-section {
  position: relative;
}

.testimonials-carousel-swiper {
  padding-bottom: 48px;
}

.testimonial-carousel-card {
  display: flex !important;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(29, 107, 42, .08) 0%, rgba(139, 184, 0, .04) 100%);
  border: 1px solid rgba(29, 107, 42, .15);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all .3s ease;
}

.testimonial-carousel-card:hover {
  background: linear-gradient(135deg, rgba(29, 107, 42, .12) 0%, rgba(139, 184, 0, .08) 100%);
  border-color: var(--lime);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 107, 42, .12);
}

.testimonial-carousel-content {
  flex: 1;
}

.testimonial-carousel-quote {
  font-size: .95rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-carousel-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.5rem;
  color: var(--lime);
  opacity: .4;
}

.testimonial-carousel-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-carousel-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--lime) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-carousel-info h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.testimonial-carousel-role {
  font-size: .8rem;
  color: var(--gray-500);
}

.testimonial-carousel-rating {
  color: #ffc107;
  font-size: .85rem;
  margin-top: 0.5rem;
}

/* --- Stats Counters Section (Enhanced) --- */
.stats-enhanced {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(138, 184, 0, .08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(29, 107, 42, .08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-enhanced-grid {
  position: relative;
  z-index: 1;
}

.stat-box-enhanced {
  text-align: center;
  padding: 2rem;
}

.stat-value-enhanced {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-enhanced {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.stat-icon-enhanced {
  font-size: 2.5rem;
  color: var(--lime);
  margin-bottom: 1rem;
  opacity: .8;
  transition: opacity .3s ease;
}

.stat-box-enhanced:hover .stat-icon-enhanced {
  opacity: 1;
}

/* --- Certifications Grid --- */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.cert-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.cert-item:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 32px rgba(29, 107, 42, .12);
  transform: translateY(-6px);
}

.cert-item-icon {
  font-size: 2.25rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.cert-item-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.35;
}

/* --- CTA Section (Enhanced) --- */
.cta-enhanced {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 184, 0, .15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.cta-enhanced::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 107, 42, .15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.cta-enhanced-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta-enhanced-content h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-enhanced-content p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Carousel Controls Enhancement --- */
.swiper-button-custom {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
}

.swiper-button-custom:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.08);
}

.swiper-button-custom i {
  font-size: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s ease;
  border: none;
}

.carousel-dot.active {
  background: var(--lime);
  width: 28px;
  border-radius: 5px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, .6);
}

/* --- Section Transitions --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .6s ease forwards;
}

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

/* --- Hover Scale Animation --- */
.hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* --- Divider Enhancement --- */
.divider-lime {
  width: 56px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  opacity: .9;
}

/* --- Icon Badge --- */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--lime);
  transition: transform .3s ease;
}

.icon-badge:hover {
  transform: scale(1.12) rotate(-4deg);
}

/* --- Responsive Carousel --- */
@media (max-width: 991px) {
  .presence-map-grid {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .division-card-body {
    padding: 1.5rem;
  }
  
  .division-card h5 {
    font-size: 1.1rem;
  }
  
  .stats-enhanced {
    padding: 60px 0;
  }
  
  .stat-box-enhanced {
    padding: 1.5rem 1rem;
  }
  
  .cta-enhanced-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-enhanced-content p {
    font-size: 0.95rem;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  
  .cert-item {
    min-height: 140px;
    padding: 1.25rem 1rem;
  }
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

/* --- Contact form box --- */
.contact-form-box {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* --- Form layout --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

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

  .contact-form-box {
    padding: 24px 20px;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 107, 42, .12);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* --- Submit button --- */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
  letter-spacing: .02em;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 107, 42, .3);
}

/* --- Success message --- */
.success-msg {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 20px 24px;
  color: #166534;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* --- Map embed --- */
.map-embed {
  margin-top: 56px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ---------- Enhanced Timeline ---------- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--lime);
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 40px;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-dot {
  position: absolute;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid var(--lime);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(138, 184, 0, 0.2);
}
.timeline-item.left .timeline-dot { right: -12px; }
.timeline-item.right .timeline-dot { left: -12px; }
.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 10px;
}
.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.timeline-content p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .timeline-line { left: 30px; }
  .timeline-item { width: 100%; padding: 0 0 0 70px; text-align: left; }
  .timeline-item.left, .timeline-item.right { left: 0; }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 18px; right: auto; }
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }


/* ===================================================================
   CONTACT PAGE � PREMIUM ENHANCEMENTS
   =================================================================== */

/* Hero badges */
.contact-hero-badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:1.5rem; }
.contact-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.12); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.25); border-radius:50px;
  padding:7px 18px; font-size:.8rem; font-weight:600; color:#fff;
  letter-spacing:.02em;
}

/* Quick bar */
.contact-quick-bar {
  background:#fff; padding:0; border-bottom:1px solid var(--gray-200);
  box-shadow:var(--shadow-sm);
}
.cq-item {
  display:flex; align-items:center; gap:14px; padding:18px 20px;
  transition:background var(--transition); border-right:1px solid var(--gray-200);
  text-decoration:none; color:var(--text);
}
.cq-item:hover { background:var(--off-white); }
.cq-whatsapp .cq-icon { background:linear-gradient(135deg,#25D366,#128C7E)!important; }
.cq-icon {
  width:44px; height:44px; border-radius:10px; background:var(--green);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.1rem; flex-shrink:0;
}
.cq-label { display:block; font-size:.72rem; color:var(--gray-500); text-transform:uppercase; letter-spacing:.08em; }
.cq-value { display:block; font-weight:700; font-size:.88rem; color:var(--navy); }

/* Main contact grid */
.contact-main-section { padding:80px 0; background:#fff; }
.contact-main-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start; }
@media(max-width:991px){ .contact-main-grid{ grid-template-columns:1fr; gap:40px; } }

.contact-info-panel { }
.contact-panel-title { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; margin-bottom:1rem; }
.contact-panel-desc { color:var(--gray-500); line-height:1.8; margin-bottom:2rem; font-size:.95rem; }

/* Inquiry Types */
.inquiry-types { background:var(--off-white); border-radius:12px; padding:1.25rem; margin-bottom:1.5rem; }
.inquiry-types-title { font-size:.8rem; color:var(--gray-700); margin-bottom:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.inquiry-tags { display:flex; flex-wrap:wrap; gap:8px; }
.inq-tag {
  display:inline-flex; align-items:center; gap:5px;
  padding:6px 14px; border-radius:50px; font-size:.78rem; font-weight:600;
  background:#fff; border:1.5px solid var(--gray-200); color:var(--gray-700);
  cursor:pointer; transition:var(--transition);
}
.inq-tag:hover, .inq-tag.active {
  background:var(--green); border-color:var(--green); color:#fff;
}

/* Business Hours */
.biz-hours-card { background:var(--navy); border-radius:12px; padding:1.25rem 1.5rem; margin-bottom:1.5rem; }
.biz-hours-title { color:#fff; font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1rem; font-weight:700; }
.biz-hours-row { display:flex; justify-content:space-between; flex-wrap:wrap; gap:4px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:.82rem; }
.biz-hours-row:last-child { border-bottom:none; }
.biz-day { color:rgba(255,255,255,.65); }
.biz-time { color:var(--lime); font-weight:600; }

/* Contact Info List */
.contact-info-list { margin-bottom:1.5rem; }
.contact-info-item { display:flex; gap:14px; align-items:flex-start; padding:12px 0; border-bottom:1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom:none; }
.contact-icon {
  width:40px; height:40px; border-radius:8px; background:var(--green);
  display:flex; align-items:center; justify-content:center;
  color:var(--lime); font-size:1rem; flex-shrink:0;
}
.contact-info-item h5 { font-size:.88rem; font-weight:700; margin-bottom:2px; color:var(--navy); }
.contact-info-item p, .contact-info-item a { font-size:.82rem; color:var(--gray-500); margin:0; }

/* WhatsApp CTA */
.whatsapp-cta-btn {
  display:flex; align-items:center; gap:16px;
  background:linear-gradient(135deg,#25D366 0%,#128C7E 100%);
  color:#fff; border-radius:12px; padding:16px 20px;
  text-decoration:none; transition:transform var(--transition), box-shadow var(--transition);
}
.whatsapp-cta-btn:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(37,211,102,.4); color:#fff; }
.wa-icon { font-size:2rem; flex-shrink:0; }
.wa-label { display:block; font-weight:700; font-size:.95rem; }
.wa-sub { display:block; font-size:.78rem; opacity:.85; }
.wa-arrow { margin-left:auto; opacity:.8; }

/* Form Panel */
.contact-form-panel { }
.contact-form-box {
  background:#fff; border:1px solid var(--gray-200);
  border-radius:16px; padding:2.5rem; box-shadow:var(--shadow-md);
}
/* ---------- Sustainability section fixes ---------- */
.info-panel {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--gray-200);
}

.info-panel h6 { margin-bottom: .5rem; font-weight:700; color:var(--navy); }

.infra-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.25rem;
  min-height: 110px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.infra-card h5 { font-weight:800; color:var(--navy); margin-bottom:.5rem; }

.infra-card p { color:var(--gray-500); margin:0; }

/* Make cert-badge tighter and vertically centered on dark backgrounds */
.cert-badge.bg-white { padding:1rem; max-width:360px; margin-left:auto; }

/* Reporting panel vertical centre on desktop */
@media (min-width: 992px) {
  .report-panel-center { display:flex; align-items:center; height:100%; }
}

/* CTA contrast and button sizing */
.cta-section.bg-navy { background: var(--navy); }
.cta-section .section-heading { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,.78); }
.cta-section .btn { min-width: 180px; }

/* Priority area cards spacing */
.priority-row { gap: 1.25rem; }

@media (max-width: 576px) {
  .info-panel { padding: .9rem; }
  .cert-badge.bg-white { margin: 1rem 0; }
  .infra-card { min-height: auto; }
  .cta-section .btn { max-width: 100%; }
}
.form-panel-header { margin-bottom:1.75rem; }
.form-panel-header h3 { font-size:1.4rem; font-weight:800; color:var(--navy); margin-bottom:.35rem; }
.form-panel-header p { font-size:.875rem; color:var(--gray-500); margin:0; }

.form-error-alert {
  background:#fef2f2; border:1px solid #fca5a5; border-radius:8px;
  padding:12px 16px; color:#991b1b; font-size:.85rem; margin-bottom:1rem;
}
.contact-success-block { text-align:center; padding:2rem 0; }
.success-icon-lg { font-size:3.5rem; color:#22c55e; margin-bottom:1rem; }
.contact-success-block h4 { font-size:1.4rem; color:var(--navy); margin-bottom:.5rem; }
.contact-success-block p { color:var(--gray-500); }

/* Regional Offices */
.office-card {
  background:#fff; border-radius:12px; border:1px solid var(--gray-200);
  overflow:hidden; height:100%; transition:var(--transition);
  box-shadow:var(--shadow-sm);
}
.office-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.office-card-head { display:flex; justify-content:space-between; align-items:center; padding:1rem 1.25rem .5rem; }
.office-flag-lg { font-size:2.2rem; line-height:1; }
.office-type-badge { font-size:.65rem; font-weight:800; letter-spacing:.1em; color:#fff; padding:4px 10px; border-radius:50px; }
.office-card-body { padding:.5rem 1.25rem 1.25rem; }
.office-type-label { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--gray-500); margin-bottom:.35rem; }
.office-city { font-size:1.3rem; font-weight:900; color:var(--navy); margin-bottom:.1rem; }
.office-country-name { font-size:.82rem; color:var(--gray-500); margin-bottom:1rem; }
.office-details { display:flex; flex-direction:column; gap:8px; }
.office-detail-item { display:flex; align-items:flex-start; gap:10px; font-size:.8rem; color:var(--gray-700); }
.office-detail-item i { color:var(--lime); width:14px; flex-shrink:0; margin-top:2px; }
.office-detail-item a { color:var(--gray-700); transition:color var(--transition); }
.office-detail-item a:hover { color:var(--green); }

/* Map embed premium */
.map-embed { border-radius:16px; overflow:hidden; box-shadow:var(--shadow-md); height:420px; border:1px solid var(--gray-200); }
.map-embed iframe { width:100%; height:100%; border:none; display:block; }

/* FAQ Accordion */
.faq-accordion { display:flex; flex-direction:column; gap:8px; }
.faq-item { border:1px solid var(--gray-200); border-radius:10px; overflow:hidden; background:#fff; }
.faq-question {
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:16px 20px; background:none; border:none; cursor:pointer;
  font-size:.9rem; font-weight:600; color:var(--navy); text-align:left;
  transition:background var(--transition), color var(--transition);
}
.faq-question:hover { background:var(--off-white); }
.faq-question.open { background:var(--green); color:#fff; }
.faq-icon { font-size:.7rem; flex-shrink:0; transition:transform var(--transition); }
.faq-question.open .faq-icon { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s ease; }
.faq-answer.open { max-height:300px; }
.faq-answer p { padding:14px 20px; font-size:.875rem; color:var(--gray-500); line-height:1.75; margin:0; }

/* ===================================================================
   FOOTER � PREMIUM ENHANCEMENTS
   =================================================================== */

/* Footer offices */
.footer-offices { display:flex; flex-direction:column; gap:10px; margin-bottom:1.25rem; }
.footer-office-item { display:flex; align-items:flex-start; gap:10px; font-size:.8rem; }
.footer-office-item i { color:var(--lime); margin-top:2px; flex-shrink:0; width:14px; }
.footer-office-item strong { display:block; color:rgba(255,255,255,.85); font-weight:600; line-height:1.3; }
.footer-office-item span, .footer-office-item a { color:rgba(255,255,255,.55); }
.footer-office-item a:hover { color:var(--lime); }

/* Newsletter icon */
.newsletter-icon {
  width:40px; height:40px; border-radius:8px; background:var(--lime);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:#fff; flex-shrink:0;
}

/* Footer Trust Strip */
.footer-trust-strip {
  display:flex; flex-wrap:wrap; gap:0; justify-content:center; align-items:center;
  margin-top:3rem; padding:1.5rem 2rem;
  background:rgba(255,255,255,.04); border-radius:12px; border:1px solid rgba(255,255,255,.07);
}
.footer-trust-item { display:flex; align-items:center; gap:10px; padding:8px 24px; font-size:.8rem; color:rgba(255,255,255,.65); }
.footer-trust-item i { color:var(--lime); font-size:1rem; }
.footer-trust-divider { width:1px; height:30px; background:rgba(255,255,255,.1); }
@media(max-width:768px){ .footer-trust-divider{ display:none; } .footer-trust-item{ padding:8px 12px; } }

/* WhatsApp Float Button */
.whatsapp-float {
  position:fixed; bottom:100px; right:24px; z-index:1040;
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#128C7E);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.6rem; box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:transform var(--transition), box-shadow var(--transition);
  text-decoration:none;
}
.whatsapp-float:hover { transform:scale(1.12); box-shadow:0 6px 28px rgba(37,211,102,.6); color:#fff; }
.wa-float-tooltip {
  position:absolute; right:68px; top:50%; transform:translateY(-50%);
  background:var(--navy); color:#fff; font-size:.75rem; font-weight:600;
  padding:6px 12px; border-radius:6px; white-space:nowrap; pointer-events:none;
  opacity:0; transition:opacity var(--transition);
}
.whatsapp-float:hover .wa-float-tooltip { opacity:1; }

/* ===================================================================
   NAVBAR � ENHANCED MEGA MENU STATS + TOPBAR
   =================================================================== */

/* Topbar WhatsApp link */
.topbar-wa { color:var(--lime) !important; font-weight:600; }
.topbar-wa:hover { color:#fff !important; }

/* Mega stats box */
.mega-stats-box { padding:.5rem 0; }
.mega-stat-card {
  background:rgba(29,107,42,.06); border:1px solid rgba(29,107,42,.12);
  border-radius:8px; padding:.75rem 1rem; margin-bottom:.5rem;
  display:flex; align-items:center; justify-content:space-between;
}
.mega-stat-val {
  font-family:var(--font-head); font-size:1.6rem; font-weight:900;
  line-height:1; color:var(--green);
}
.mega-stat-label {
  font-size:.72rem; color:var(--gray-500); text-transform:uppercase;
  letter-spacing:.08em; text-align:right;
}

/* ===================================================================
   HOMEPAGE � PREMIUM SECTION ENHANCEMENTS
   =================================================================== */

/* CTA Enhanced */
.cta-enhanced {
  background:linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 50%, var(--navy) 100%);
  padding:100px 0; position:relative; overflow:hidden;
}
.cta-enhanced::before {
  content:''; position:absolute; top:-80px; left:-80px;
  width:300px; height:300px; border-radius:50%;
  background:rgba(138,184,0,.08); pointer-events:none;
}
.cta-enhanced::after {
  content:''; position:absolute; bottom:-80px; right:-80px;
  width:400px; height:400px; border-radius:50%;
  background:rgba(138,184,0,.06); pointer-events:none;
}
.cta-enhanced-content { position:relative; z-index:1; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* Division Cards */
.division-card {
  background:#fff; border-radius:12px; border:1px solid var(--gray-200);
  overflow:hidden; height:100%;
  transition:box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.division-card:hover {
  box-shadow:0 12px 36px rgba(29,107,42,.15);
  transform:translateY(-6px); border-color:var(--green);
}
.division-card-img { height:180px; overflow:hidden; }
.division-card-body { padding:1.5rem 1.5rem .75rem; }
.division-badge {
  display:inline-block; font-size:.65rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; background:var(--gray-100); color:var(--green);
  border-radius:3px; padding:3px 8px; margin-bottom:.75rem;
}
.division-card-body h5 { font-size:1.05rem; font-weight:800; margin-bottom:.5rem; color:var(--navy); }
.division-card-body p { font-size:.85rem; color:var(--gray-500); margin:0; }
.division-card-footer {
  padding:.75rem 1.5rem 1.25rem; display:flex; justify-content:space-between;
  align-items:center; border-top:1px solid var(--gray-100);
  font-size:.8rem; font-weight:700; color:var(--green); letter-spacing:.03em;
  transition:color .2s ease;
}
.division-card:hover .division-card-footer { color:var(--lime-dark); }

/* Presence Map Grid */
.presence-map-grid {
  display:grid; grid-template-columns:1fr 1.4fr; gap:40px; align-items:start;
}
@media(max-width:991px){ .presence-map-grid{ grid-template-columns:1fr; } }
.presence-map-box {
  background:linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  border-radius:16px; min-height:380px; display:flex; align-items:center;
  justify-content:center; font-size:8rem; color:rgba(255,255,255,.15);
  position:relative; overflow:hidden;
}
.presence-map-box::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 70%, rgba(138,184,0,.2) 0%, transparent 60%);
}
.presence-region {
  padding:1.25rem; background:#fff; border-radius:10px;
  border:1px solid var(--gray-200); margin-bottom:16px;
  transition:box-shadow var(--transition), border-color var(--transition);
}
.presence-region:hover { box-shadow:var(--shadow-sm); border-color:var(--green); }
.presence-region h6 { font-size:.9rem; font-weight:700; color:var(--navy); margin-bottom:.35rem; }
.presence-countries { font-size:.82rem; color:var(--gray-500); }

/* Logistics Strip */
.logistics-strip {
  background:linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding:50px 0;
}
.logistics-item { color:#fff; }
.logistics-item i { font-size:2rem; color:var(--lime); margin-bottom:.75rem; display:block; }
.logistics-item h5 { font-size:1rem; font-weight:700; margin-bottom:.35rem; }
.logistics-item p { font-size:.82rem; opacity:.75; margin:0; }

/* Testimonial cards */
.testimonial-carousel-card {
  background:#fff; border:1px solid var(--gray-200); border-radius:12px;
  padding:1.75rem; height:100%; transition:var(--transition);
  box-shadow:var(--shadow-sm); position:relative;
}
.testimonial-carousel-card::before {
  content:'\201C'; font-size:4rem; line-height:.8; color:var(--lime);
  font-family:Georgia,serif; position:absolute; top:1rem; right:1.25rem; opacity:.4;
}
.testimonial-carousel-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.testimonial-carousel-quote { font-size:.88rem; color:var(--gray-700); line-height:1.75; margin-bottom:1.25rem; font-style:italic; }
.testimonial-carousel-author { display:flex; align-items:center; gap:12px; }
.testimonial-carousel-avatar {
  width:42px; height:42px; border-radius:50%; background:var(--green);
  display:flex; align-items:center; justify-content:center;
  color:var(--lime); font-weight:800; font-size:.9rem; flex-shrink:0;
}
.testimonial-carousel-info h6 { font-size:.88rem; font-weight:700; color:var(--navy); margin-bottom:1px; }
.testimonial-carousel-role { font-size:.75rem; color:var(--gray-500); margin:0; }

/* Certifications Grid */
.certifications-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:16px;
}
.cert-item {
  background:#fff; border:1px solid var(--gray-200); border-radius:10px;
  padding:1.5rem 1rem; text-align:center; transition:var(--transition);
}
.cert-item:hover { border-color:var(--green); box-shadow:var(--shadow-sm); }
.cert-item-icon {
  width:52px; height:52px; border-radius:10px; background:var(--off-white);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; color:var(--green); margin:0 auto .75rem;
  transition:background var(--transition);
}
.cert-item:hover .cert-item-icon { background:var(--green); color:var(--lime); }
.cert-item h6 { font-size:.85rem; font-weight:700; color:var(--navy); margin-bottom:.2rem; }

/* ===================================================================
   MISSING & ENHANCED COMPONENTS
   =================================================================== */

/* Cert Badge (used on careers + sustainability) */
.cert-badge {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.cert-badge:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.cert-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--green);
  margin: 0 auto .75rem; transition: background var(--transition);
}
.cert-badge:hover .cert-icon { background: var(--green); color: var(--lime); }

/* Service Cards */
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 2rem 1.5rem;
  transition: var(--transition); height: 100%;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--green); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1.4rem; margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--gray-500); margin: 0; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 50%, var(--navy) 100%);
}

/* News Card (homepage) */
.news-card {
  background: #fff; border-radius: 12px; border: 1px solid var(--gray-200);
  overflow: hidden; height: 100%; transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card-img { height: 200px; overflow: hidden; }
.news-card-body { padding: 1.5rem; }
.news-meta { display: flex; gap: 1rem; font-size: .75rem; margin-bottom: .75rem; color: var(--gray-500); }
.news-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.news-card p { font-size: .85rem; color: var(--gray-500); margin-bottom: 1rem; }
.news-read-more { font-size: .82rem; font-weight: 700; color: var(--green); transition: color var(--transition); }
.news-read-more:hover { color: var(--lime); }

/* Job Cards */
.job-card {
  background: #fff; border-radius: 22px; border: 1px solid var(--gray-200);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(103, 191, 154, .25);
}
.job-card.open { box-shadow: var(--shadow-lg); }
.job-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 1.75rem; cursor: pointer; gap: 1rem;
  background: linear-gradient(180deg, rgba(245, 252, 249, .95), #fff);
}
.job-header:hover { background: rgba(244, 252, 249, .95); }
.job-summary { display: grid; gap: .6rem; min-width: 0; }
.job-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0; }
.job-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .5rem;
  font-size: .82rem;
  color: var(--gray-600);
}
.job-meta span {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .8rem; border-radius: 999px;
  background: rgba(245, 252, 249, .8);
  color: var(--gray-600);
}
.job-meta i { color: var(--lime); margin-right: 4px; }
.job-actions { display: flex; align-items: center; gap: .8rem; white-space: nowrap; }
.job-tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: #ecf8f0; color: var(--green);
  border: 1px solid rgba(60, 167, 117, .16); border-radius: 999px; padding: 6px 12px;
}
.job-arrow { display: inline-flex; transition: transform .3s ease; color: var(--gray-500); }
.job-card.open .job-arrow { transform: rotate(180deg); }
.job-body {
  display: none; padding: 1.5rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(226, 234, 238, .85);
  background: #fbfcfd;
}
.job-body.show { display: block; }
.job-body p { color: var(--gray-600); line-height: 1.78; margin-bottom: 1.35rem; }
.job-body h6 { font-size: .95rem; margin-bottom: .75rem; }
.job-body ul { margin-left: 1.15rem; padding-left: .15rem; color: var(--gray-600); font-size: .9rem; }
.job-body ul li { margin-bottom: .55rem; }
.job-desc {
  background: rgba(236, 248, 240, .72);
  border-left: 4px solid var(--green);
  padding: 1rem 1.15rem;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}
.job-desc p { margin: 0; font-size: .95rem; color: var(--gray-700); line-height: 1.85; }

/* CV Upload Area */
.cv-upload-area {
  border: 2px dashed var(--gray-200); border-radius: 10px;
  padding: 2rem; text-align: center; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.cv-upload-area:hover { border-color: var(--green); background: var(--off-white); }

/* Alert success custom */
.alert-success-custom {
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: 10px; padding: 1rem 1.25rem; color: #166534; font-size: .9rem;
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 1035;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 4px 14px rgba(29,107,42,.35);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--lime); }

/* Infrastructure section */
.infra-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 2rem; height: 100%; transition: var(--transition);
  border-left: 4px solid transparent;
}
.infra-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--lime); transform: translateX(4px); }
.infra-icon { font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.infra-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.infra-card p { font-size: .875rem; color: var(--gray-500); margin: 0; }
.infra-stat { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--lime); display: block; }

/* Global Network Page */
.region-card {
  background: var(--navy); border-radius: 14px; padding: 2rem;
  height: 100%; transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.region-card:hover { border-color: var(--lime); transform: translateY(-4px); }
.region-flag { font-size: 2rem; margin-bottom: 1rem; }
.region-card h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.region-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }
.country-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .75rem; }
.country-chip {
  font-size: .72rem; font-weight: 600; padding: 4px 10px;
  border-radius: 50px; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.12);
}

/* Footer link active states */
.footer-links li a.text-lime { color: var(--lime) !important; }
.footer-links li a.text-lime:hover { color: #fff !important; }

/* Responsive tweaks */
@media (max-width: 767px) {
  .contact-quick-bar .cq-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .footer-trust-strip { flex-direction: column; gap: 8px; }
}

@media (max-width: 575px) {
  .contact-hero-badges { flex-direction: column; }
  .contact-badge { justify-content: center; }
  .mega-stats-box .mega-stat-card { padding: .5rem .75rem; }
}

/* ===================================================================
   PREMIUM ANIMATIONS
   =================================================================== */
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,107,42,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(29,107,42,0); }
}
.pulse-green { animation: pulseGreen 2.5s ease-in-out infinite; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-anim { animation: floatUp 4s ease-in-out infinite; }

/* Smooth reveal utility */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ===================================================================
   ABOUT PAGE ENHANCEMENTS
   =================================================================== */
.about-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 1rem;
}

/* ===================================================================
   PAGE HEADER IMPROVEMENTS
   =================================================================== */
.page-header .contact-hero-badges .contact-badge {
  background: rgba(255,255,255,.14);
}

/* ===================================================================
   PRODUCTS PAGE IMPROVEMENTS
   =================================================================== */
.products-hero-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  padding: 20px 0;
}
.products-hero-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.products-hero-strip p { color: rgba(255,255,255,.85); margin: 0; font-size: .9rem; }

/* ===================================================================
   BREADCRUMB IMPROVEMENTS
   =================================================================== */
.breadcrumb-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.breadcrumb-nav span:not(.current) { margin: 0 8px; }

/* ===================================================================
   FORM IMPROVEMENTS (global)
   =================================================================== */
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,107,42,.12);
}

/* ===================================================================
   SCROLL PROGRESS BAR
   =================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--lime) 0%, var(--green) 100%);
  width: 0%; transition: width .1s linear;
}

/* ===================================================================
   INFRASTRUCTURE PAGE
   =================================================================== */
.infra-feature { padding: 60px 0; border-bottom: 1px solid var(--gray-100); }
.infra-feature:last-child { border-bottom: none; }

.infra-stat {
  background: var(--off-white); border-radius: 10px; padding: 1rem;
  border-left: 4px solid var(--lime); transition: var(--transition);
}
.infra-stat:hover { background: #fff; box-shadow: var(--shadow-sm); }
.infra-stat .num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 900;
  color: var(--green); margin: 0; line-height: 1.2;
}
.infra-stat .lbl {
  font-size: .72rem; color: var(--gray-500); text-transform: uppercase;
  letter-spacing: .08em; margin: 0;
}

.infra-icon-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
  border-radius: 20px; min-height: 320px; display: flex;
  align-items: center; justify-content: center;
  font-size: 6rem; color: rgba(138,184,0,.35);
  position: relative; overflow: hidden;
}
.infra-icon-visual::after {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}

/* ===================================================================
   GLOBAL NETWORK PAGE � EXTRA STYLES
   =================================================================== */
.network-stat-bar {
  background: var(--navy); padding: 50px 0; text-align: center;
}
.network-stat-item .num {
  font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 900; color: var(--lime); display: block; line-height: 1;
}
.network-stat-item .lbl {
  font-size: .78rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .1em; margin-top: .5rem; display: block;
}

/* ===================================================================
   SERVICES PAGE
   =================================================================== */
.service-hero-icon {
  width: 70px; height: 70px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1.6rem; margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-list-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 2rem; height: 100%; transition: var(--transition);
}
.service-list-card:hover {
  box-shadow: 0 10px 32px rgba(29,107,42,.12);
  transform: translateY(-5px); border-color: var(--green);
}
.service-list-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.service-list-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.service-list-card ul { padding-left: 1.1rem; font-size: .85rem; color: var(--gray-700); }
.service-list-card ul li { margin-bottom: .35rem; }

/* ===================================================================
   SUSTAINABILITY � PROGRESS BARS
   =================================================================== */
.esg-progress-item { margin-bottom: 1.5rem; }
.esg-progress-label { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.esg-progress-bar { height: 8px; background: var(--gray-200); border-radius: 50px; overflow: hidden; }
.esg-progress-fill { height: 100%; background: linear-gradient(90deg, var(--lime) 0%, var(--green) 100%); border-radius: 50px; transition: width 1.5s ease; }

/* ===================================================================
   NEWS PAGE IMPROVEMENTS
   =================================================================== */
.news-sidebar-widget { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.news-sidebar-widget h6 { font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--lime); }

/* ===================================================================
   PREMIUM FOOTER STYLES
   =================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-newsletter {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
  padding: 50px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-main { padding: 60px 0 40px; }
.footer-logo img { filter: brightness(1.1); }
.footer-about { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-heading {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .855rem; color: rgba(255,255,255,.6); transition: color var(--transition), padding var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--lime); padding-left: 4px; }
.badge-cert {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
}
.social-links a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--lime); color: #fff; border-color: var(--lime); }
.footer-bottom {
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color var(--transition); font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--lime); }
.newsletter-form .form-control {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: var(--radius);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.15); border-color: var(--lime); box-shadow: none; }

/* ===================================================================
   GLOBAL NETWORK � OFFICE INFO (MODAL)
   =================================================================== */
.office-info {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .855rem; color: var(--gray-700); margin-bottom: 8px;
}
.office-info i { color: var(--lime); width: 14px; flex-shrink: 0; margin-top: 2px; }
.office-info a { color: var(--green); }
.office-info a:hover { color: var(--lime); text-decoration: underline; }

/* Empty state */
.empty-state { text-align: center; color: var(--gray-500); }
.empty-state i { font-size: 2rem; color: var(--gray-300); margin-bottom: .75rem; display: block; }

/* ===================================================================
   CONTACT PAGE � contact-grid (legacy fallback)
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ===================================================================
   ACCORDION OVERRIDES (Bootstrap alignment with brand)
   =================================================================== */
.accordion-button { font-weight: 600; font-size: .9rem; color: var(--navy); }
.accordion-button:not(.collapsed) {
  background: var(--off-white); color: var(--green); box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius) !important; margin-bottom: 8px; overflow: hidden; }
.accordion-body { font-size: .875rem; color: var(--gray-500); line-height: 1.75; }

/* ===================================================================
   MODAL OVERRIDES
   =================================================================== */
.modal-content { border-radius: 14px; overflow: hidden; }
.modal-header { border-bottom: 1px solid rgba(255,255,255,.1); }
.modal-footer { border-top: 1px solid var(--gray-100); }

/* ===================================================================
   RESPONSIVE MOBILE MENU IMPROVEMENTS
   =================================================================== */
@media (max-width: 991px) {
  .site-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
  }

  .site-navbar .container {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .site-navbar .navbar-collapse {
    background: var(--navy);
    padding: 0;
    border-radius: 0 0 12px 12px;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-navbar .navbar-nav {
    width: 100%;
  }

  .site-navbar .navbar-nav .nav-item {
    width: 100%;
  }

  .site-navbar .nav-link {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    display: inline-flex;
    align-items: center;
  }

  .site-navbar .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: .75rem !important;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: .5rem;
  }

  .navbar-actions .btn {
    width: 100%;
  }

  .site-navbar .dropdown-menu,
  .site-navbar .mega-menu {
    background: rgba(255, 255, 255, .04);
    border: none;
    padding: 0 0 0 1.25rem;
    box-shadow: none;
  }

  .mega-link,
  .dropdown-item {
    color: rgba(255, 255, 255, .85) !important;
    padding: .75rem 0 !important;
    display: block;
    width: 100%;
  }

  .mega-link:hover,
  .dropdown-item:hover {
    color: var(--lime) !important;
    background: none;
  }

  .mega-heading {
    color: rgba(255, 255, 255, .55);
    margin-top: .75rem;
  }

  .mega-stats-box,
  .mega-highlight {
    display: none;
  }
}

/* ===================================================================
   TOPBAR IMPROVEMENTS
   =================================================================== */
.topbar { z-index: 1060; position: relative; }

/* ===================================================================
   PAGE-WIDE SPACING & POLISH
   =================================================================== */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.px-6 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }

/* Image objectfit global */
img.cover { object-fit: cover; width: 100%; height: 100%; }

/* ===================================================================
   PRINT / SEO ENHANCEMENTS
   =================================================================== */
@media print {
  .topbar, .site-navbar, .whatsapp-float, .back-to-top, .scroll-progress { display: none !important; }
  .page-header { padding: 2rem 0; }
}



element.style {
    /* padding: px px; */
    border-radius: 3px;
}