/* ================================================================
   GREEN VALLEY RESOURCES – style.css
   Premium Corporate Industrial Website
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
---------------------------------------------------------------- */
:root {
  /* Color Palette */
  --clr-primary: #1b5e20; /* Deep Forest Green */
  --clr-primary-dark: #114016;
  --clr-primary-lite: #2e7d32;
  --clr-secondary: #4caf50; /* Emerald Green */
  --clr-accent: #c8a951; /* Gold */
  --clr-accent-dark: #a88930;
  --clr-dark: #1e1e1e;
  --clr-dark-2: #252525;
  --clr-dark-3: #2d2d2d;
  --clr-light: #f8f9fa;
  --clr-light-alt: #f0f4f0;
  --clr-white: #ffffff;
  --clr-text: #3a3a3a;
  --clr-text-light: #6b7280;

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;

  /* Spacing */
  --section-pad-y: 6rem;
  --section-pad-sm: 4rem;

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.22);

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-normal: 0.35s ease;
  --trans-slow: 0.6s ease;

  /* Header */
  --header-topbar-h: 40px;
  --header-nav-h: 80px;
}

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

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

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

body.preloading {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--trans-fast);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-dark);
}

/* ----------------------------------------------------------------
   3. UTILITY CLASSES
---------------------------------------------------------------- */
.section-pad {
  padding: var(--section-pad-y) 0;
}
.bg-light-alt {
  background-color: var(--clr-light-alt);
}
.bg-dark-alt {
  background-color: var(--clr-dark);
}
.text-gold {
  color: var(--clr-accent) !important;
}
.text-green {
  color: var(--clr-primary) !important;
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.85);
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.label-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-accent);
  white-space: nowrap;
}
.label-text--light {
  color: var(--clr-secondary);
}
.label-text--gold {
  color: var(--clr-accent);
}
.label-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, transparent 100%);
  border-radius: 2px;
}
.label-line--light {
  background: linear-gradient(90deg, var(--clr-secondary), transparent);
}
.label-line--gold {
  background: linear-gradient(90deg, var(--clr-accent), transparent);
}

/* Section Title & Desc */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
}
.section-desc {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.85;
}

/* ----------------------------------------------------------------
   4. BUTTONS
---------------------------------------------------------------- */
.btn {
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.5rem;
  transition: all var(--trans-normal);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-primary-green {
  background: linear-gradient(
    135deg,
    var(--clr-primary) 0%,
    var(--clr-primary-lite) 100%
  );
  color: var(--clr-white);
  border: none;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}
.btn-primary-green:hover {
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark) 0%,
    var(--clr-primary) 100%
  );
  color: var(--clr-white);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--clr-accent) 0%,
    var(--clr-accent-dark) 100%
  );
  color: var(--clr-dark);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.35);
}
.btn-gold:hover {
  color: var(--clr-dark);
  box-shadow: 0 8px 30px rgba(200, 169, 81, 0.5);
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: linear-gradient(
    135deg,
    var(--clr-accent) 0%,
    var(--clr-accent-dark) 100%
  );
  color: var(--clr-dark);
  border: none;
  font-weight: 700;
  padding: 0.8rem 2rem;
  box-shadow: 0 6px 24px rgba(200, 169, 81, 0.4);
}
.btn-hero-primary:hover {
  color: var(--clr-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 169, 81, 0.55);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.8rem 2rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-3px);
}

.btn-phone {
  background: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}
.btn-phone:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-quote {
  background: linear-gradient(
    135deg,
    var(--clr-primary) 0%,
    var(--clr-primary-lite) 100%
  );
  color: var(--clr-white) !important;
  border: none;
  padding: 0.5rem 1.3rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.25);
}
.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.4);
  color: var(--clr-white) !important;
}

.btn-cta-primary {
  background: var(--clr-white);
  color: var(--clr-primary);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.btn-cta-primary:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 169, 81, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}
.btn-cta-secondary:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

.btn-newsletter {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  padding: 0 1.2rem;
}
.btn-newsletter:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
}

/* ----------------------------------------------------------------
   5. ANIMATIONS
---------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes preloaderFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes preloaderFade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  80% {
    top: 22px;
    opacity: 0;
  }
  100% {
    top: 6px;
    opacity: 0;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Animation base classes – triggered by JS IntersectionObserver */
.fade-up-anim,
.fade-left-anim,
.fade-right-anim {
  opacity: 0;
}
.fade-up-anim.animated {
  animation: fadeUp 0.75s ease both;
}
.fade-left-anim.animated {
  animation: fadeLeft 0.75s ease both;
}
.fade-right-anim.animated {
  animation: fadeRight 0.75s ease both;
}

/* ----------------------------------------------------------------
   6. PRELOADER
---------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo img {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--clr-accent);
  margin: 0 auto 1.5rem;
  animation: float 2s ease-in-out infinite;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 10px;
  animation: preloaderFill 2s ease forwards;
}
.preloader-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-family: var(--font-body);
}

/* ----------------------------------------------------------------
   7. HEADER
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--trans-normal);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}

/* Top Bar */
.header-topbar {
  background: var(--clr-primary);
  padding: 0.45rem 0;
}
.topbar-info li,
.topbar-info a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
}
.topbar-info a:hover {
  color: var(--clr-accent);
}
.topbar-info .bi {
  color: var(--clr-accent);
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--trans-fast);
}
.topbar-social a:hover {
  color: var(--clr-accent);
}

/* Main Nav */
#main-nav {
  padding: 0.3rem 0;
  background: var(--clr-white);
}
.nav-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-dark) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--clr-accent) !important;
  border-radius: 2px;
  border-top: 0em solid;
  transform: scaleX(0);
  transition: transform var(--trans-normal);
  transform-origin: center;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:focus::after {
  background: var(--clr-accent) !important;
  transform: scaleX(1);
}
.navbar-nav .nav-link.active {
  color: var(--clr-primary) !important;
}
.navbar-nav .nav-link:hover {
  color: var(--clr-primary) !important;
}

/* Mega Menu */
.mega-menu {
  display: none;
  min-width: 600px;
  padding: 1.5rem;
  border: none;
  border-top: 3px solid var(--clr-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--clr-white);
  left: -100px !important;
  flex-direction: row;
  gap: 0;
}
.mega-menu.show {
  display: flex !important;
}
.mega-col {
  flex: 1;
  padding: 0 1.5rem;
  border-right: 1px solid var(--clr-light-alt);
}
.mega-col:last-child {
  border-right: none;
}
.mega-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-light-alt);
}
.mega-menu .dropdown-item {
  font-size: 0.88rem;
  color: var(--clr-text);
  padding: 0.35rem 0;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--trans-fast);
}
.mega-menu .dropdown-item:hover {
  color: var(--clr-primary);
  background: transparent;
  padding-left: 0.5rem;
}

/* Hover Dropdown (desktop only) */
@media (min-width: 992px) {
  .nav-hover-dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeUp 0.22s ease both;
  }
  .nav-hover-dropdown > .dropdown-menu {
    margin-top: 0;
  }
}

/* Simple Dropdown (Products Nav) */
.simple-dropdown {
  min-width: 220px;
  padding: 0.6rem 0;
  border: none;
  border-top: 3px solid var(--clr-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--clr-white);
}
.simple-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-dark);
  padding: 0.6rem 1.25rem;
  transition: all var(--trans-fast);
  border-left: 3px solid transparent;
}
.simple-dropdown .dropdown-item .bi {
  color: var(--clr-primary);
  font-size: 1rem;
  transition: color var(--trans-fast);
}
.simple-dropdown .dropdown-item:hover {
  background: rgba(27, 94, 32, 0.06);
  color: var(--clr-primary);
  border-left-color: var(--clr-accent);
  padding-left: 1.5rem;
}
.simple-dropdown .dropdown-item:hover .bi {
  color: var(--clr-accent);
}

/* Multi-level Submenu Flyout for Products */
.dropdown-submenu {
  position: relative;
}
.submenu-header {
  width: 100%;
}
.submenu-header .dropdown-item {
  flex: 1;
}

.category-all-link {
  font-weight: 700 !important;
  color: var(--clr-primary) !important;
  border-bottom: 1px dashed var(--clr-light-alt);
  margin-bottom: 0.25rem;
  padding-bottom: 0.4rem !important;
}
.category-all-link .bi {
  color: var(--clr-accent) !important;
}

@media (min-width: 992px) {
  .dropdown-submenu > .submenu-flyout {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 270px;
    border: none;
    border-left: 3px solid var(--clr-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--clr-white);
    padding: 0.4rem 0;
    z-index: 1050;
  }
  .dropdown-submenu:hover > .submenu-flyout {
    display: block;
    animation: fadeUp 0.18s ease both;
  }
  .dropdown-submenu:hover .submenu-header .dropdown-item {
    background: rgba(27, 94, 32, 0.06);
    color: var(--clr-primary);
    border-left-color: var(--clr-accent);
    padding-left: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  #navbarMain.collapse.show,
  #navbarMain.collapsing {
    background: var(--clr-white);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    max-height: 82vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--clr-light-alt);
  }

  /* Products Dropdown on Mobile */
  #productsDropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  #productsDropdown .dropdown-arrow-icon {
    transition: transform var(--trans-fast);
  }
  #productsDropdown.open .dropdown-arrow-icon {
    transform: rotate(180deg);
    color: var(--clr-accent);
  }

  /* Mobile Dropdown container */
  .simple-dropdown {
    display: none;
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--clr-accent);
    margin-left: 0.5rem;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    background: rgba(27, 94, 32, 0.03);
    border-radius: var(--radius-sm);
  }
  .simple-dropdown.show {
    display: block !important;
    animation: fadeUp 0.2s ease both;
  }

  .dropdown-submenu {
    position: static;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .dropdown-submenu:last-child {
    border-bottom: none;
  }

  .submenu-header {
    padding: 0.1rem 0;
  }

  .submenu-toggle-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 0.85rem;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .submenu-toggle-btn .submenu-arrow {
    transition: transform var(--trans-fast);
    font-size: 0.8rem;
    color: var(--clr-muted);
  }
  .submenu-toggle-btn.open .submenu-arrow {
    transform: rotate(90deg);
    color: var(--clr-accent);
  }

  .dropdown-submenu > .submenu-flyout {
    display: none;
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--clr-accent);
    margin-left: 1.25rem;
    margin-bottom: 0.4rem;
    padding: 0.25rem 0 0.25rem 0.25rem;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
  }
  .dropdown-submenu.open > .submenu-flyout {
    display: block !important;
    animation: fadeUp 0.18s ease both;
  }

  .dropdown-submenu > .submenu-flyout .dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    color: var(--clr-dark);
    white-space: normal;
    word-break: break-word;
  }

  .dropdown-submenu > .submenu-flyout .dropdown-item:hover,
  .dropdown-submenu > .submenu-flyout .dropdown-item.active {
    color: var(--clr-primary) !important;
    background: rgba(27, 94, 32, 0.08) !important;
  }
}

/* Active & focus dropdown item - override Bootstrap default blue */
.simple-dropdown .dropdown-item.active,
.simple-dropdown .dropdown-item:active,
.simple-dropdown .dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  border-left-color: var(--clr-accent) !important;
  outline: none !important;
  box-shadow: none !important;
}
.simple-dropdown .dropdown-item.active .bi,
.simple-dropdown .dropdown-item:active .bi,
.simple-dropdown .dropdown-item:focus .bi,
.dropdown-item.active .bi,
.dropdown-item:active .bi,
.dropdown-item:focus .bi {
  color: var(--clr-accent) !important;
}
.simple-dropdown .dropdown-item.active:hover,
.dropdown-item.active:hover {
  background: var(--clr-primary-dark) !important;
  color: var(--clr-white) !important;
}

/* Mobile toggler */
.toggler-icon {
  display: flex;
  flex-direction: column;
  width: 24px;
  gap: 5px;
  cursor: pointer;
}
.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all var(--trans-normal);
}
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------------
   8. HERO SECTION
---------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-dark);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.75);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 64, 22, 0.94) 0%,
    rgba(27, 94, 32, 0.88) 50%,
    rgba(15, 23, 42, 0.92) 100%
  );
  z-index: 1;
}
.text-gold-lite {
  color: #e8d697;
}
.border-gold {
  border-color: var(--clr-accent) !important;
}
.z-index-2 {
  z-index: 2;
}
.hero-slide-img {
  width: 100%;
  height: 85vh;
  min-height: 420px;
  max-height: 900px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Smooth crossfade transition */
.hero-carousel .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/* Dot Indicators */
.hero-carousel .carousel-indicators {
  bottom: 1.5rem;
  gap: 6px;
  margin: 0;
}
.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all var(--trans-fast);
  margin: 0 3px;
  opacity: 1;
}
.hero-carousel .carousel-indicators button.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  width: 28px;
  border-radius: 6px;
}

/* Prev / Next Arrow Buttons */
.hero-ctrl-prev,
.hero-ctrl-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  opacity: 1;
}
.hero-ctrl-prev {
  left: 1.5rem;
}
.hero-ctrl-next {
  right: 1.5rem;
}

.hero-ctrl-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
  backdrop-filter: blur(6px);
  transition: all var(--trans-fast);
}
.hero-ctrl-prev:hover .hero-ctrl-icon,
.hero-ctrl-next:hover .hero-ctrl-icon {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-dark);
  transform: scale(1.1);
}

/* Override Bootstrap's default controls */
.hero-ctrl-prev .carousel-control-prev-icon,
.hero-ctrl-next .carousel-control-next-icon {
  display: none;
}

@media (max-width: 767px) {
  .hero-slide-img {
    height: 55vw;
    min-height: 240px;
    max-height: 480px;
  }
  .hero-ctrl-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .hero-ctrl-prev {
    left: 0.75rem;
  }
  .hero-ctrl-next {
    right: 0.75rem;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid rgba(200, 169, 81, 0.4);
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.hero-title-highlight {
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Hero Buttons */
.hero-buttons {
  margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  width: fit-content;
}
.hero-stat {
  text-align: center;
  padding: 0 1.5rem;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Hero Cards Grid */
.hero-cards-col {
  justify-content: center;
  align-items: center;
}
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}
.hero-card-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  animation: float 4s ease-in-out infinite;
}
.hero-card-item:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-card-item:nth-child(3) {
  animation-delay: 1s;
}
.hero-card-item:nth-child(4) {
  animation-delay: 1.5s;
}
.hero-card-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.hero-card-item:hover img {
  transform: scale(1.08);
}
.hero-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(27, 94, 32, 0.9));
  color: var(--clr-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 1rem 0.75rem 0.6rem;
  display: flex;
  align-items: center;
}
.hc-1 {
  grid-column: 1;
  grid-row: 1;
}
.hc-2 {
  grid-column: 2;
  grid-row: 1;
  /* margin-top: 24px; */
}
.hc-3 {
  grid-column: 1;
  grid-row: 2;
  /* margin-top: -12px; */
}
.hc-4 {
  grid-column: 2;
  grid-row: 2;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 3;
  transition: color var(--trans-fast);
}
.hero-scroll-indicator:hover {
  color: var(--clr-accent);
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease infinite;
}

/* ----------------------------------------------------------------
   9. ABOUT SECTION
---------------------------------------------------------------- */
.about-section {
  background: var(--clr-white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 520px;
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(
    135deg,
    var(--clr-primary),
    var(--clr-primary-lite)
  );
  color: var(--clr-white);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-accent);
}
.badge-number sup {
  font-size: 1rem;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  margin-top: 0.25rem;
}
.about-cert-card {
  position: absolute;
  top: 1.5rem;
  left: -20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 2;
  white-space: nowrap;
}
.about-cert-card .bi {
  color: var(--clr-secondary);
  font-size: 1.4rem;
}

/* Highlight Cards */
.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--clr-light-alt);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  border: 1px solid transparent;
  transition: all var(--trans-normal);
}
.highlight-card:hover {
  border-color: var(--clr-secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.highlight-card .bi {
  font-size: 1.2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.15rem;
}
.highlight-card p {
  font-size: 0.7rem;
  color: var(--clr-text-light);
  margin: 0;
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   10. CORE BUSINESS CARDS
---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   10. CORE BUSINESS CARDS
---------------------------------------------------------------- */
.core-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--trans-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(27, 94, 32, 0.12);
  border-color: rgba(27, 94, 32, 0.25);
}
.core-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.core-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.core-card:hover .core-card-img img {
  transform: scale(1.08);
}
.core-card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(17, 64, 22, 0.88);
  color: var(--clr-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.core-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--clr-primary), #2e7d32);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -26px;
  margin-left: 1.25rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(27, 94, 32, 0.3);
  border: 2px solid var(--clr-white);
  transition: transform var(--trans-fast);
}
.core-card:hover .core-icon {
  transform: scale(1.08);
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark),
    var(--clr-primary)
  );
}
.core-icon .bi {
  font-size: 1.4rem;
  color: var(--clr-accent);
}
.core-card-body {
  padding: 1rem 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.core-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--clr-dark);
}
.core-card-body p {
  font-size: 0.86rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.core-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0.7rem;
}
.core-features li {
  font-size: 0.82rem;
  color: var(--clr-text);
  padding: 0.1rem 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.core-features .bi {
  color: var(--clr-secondary);
  font-size: 0.9rem;
}
.core-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.core-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
  transition: all var(--trans-fast);
}
.core-card-link .bi {
  transition: transform var(--trans-fast);
}
.core-card:hover .core-card-link {
  color: var(--clr-primary-lite);
}
.core-card:hover .core-card-link .bi {
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   11. PRODUCTS SECTION
---------------------------------------------------------------- */
.products-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  background: var(--clr-white);
  border: 2px solid var(--clr-light-alt);
  color: var(--clr-text);
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
}

/* Product Cards */
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all var(--trans-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 175, 80, 0.2);
}
.product-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.product-card:hover .product-card-img img {
  transform: scale(1.1);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.polymer-badge {
  background: var(--clr-secondary);
}
.metal-badge {
  background: linear-gradient(90deg, #607d8b, #455a64);
}
.fertilizer-badge {
  background: linear-gradient(90deg, #2e7d32, #1b5e20);
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}
.product-card-body p {
  font-size: 0.83rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}
.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition:
    gap var(--trans-fast),
    color var(--trans-fast);
}
.product-link:hover {
  color: var(--clr-accent-dark);
  gap: 0.6rem;
}

/* Product item filter animation */
.product-item {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.product-item.hide {
  display: none;
}

/* ----------------------------------------------------------------
   12. WHY CHOOSE US
---------------------------------------------------------------- */
.why-section {
  background: var(--clr-dark);
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--trans-normal);
}
.why-reason-item:hover {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.25);
  transform: translateX(6px);
}
.reason-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reason-icon .bi {
  font-size: 1.1rem;
  color: var(--clr-white);
}
.reason-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}
.reason-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
}
.why-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}
.why-float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--clr-accent),
    var(--clr-accent-dark)
  );
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}
.why-float-card .bi {
  font-size: 1.75rem;
  color: var(--clr-dark);
}
.why-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-dark);
}
.why-float-card span {
  font-size: 0.75rem;
  color: rgba(30, 30, 30, 0.7);
}

/* ----------------------------------------------------------------
   13. SUSTAINABILITY SECTION
---------------------------------------------------------------- */
.sustainability-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: var(--section-pad-y) 0;
}
.sustainability-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.sustainability-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 94, 32, 0.88),
    rgba(30, 30, 30, 0.82)
  );
}
.sustainability-content {
  position: relative;
  z-index: 2;
}

.sustainability-pillars {
  margin-top: 0.5rem;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  transition: all var(--trans-normal);
}
.pillar-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(200, 169, 81, 0.4);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--clr-accent),
    var(--clr-accent-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pillar-icon .bi {
  font-size: 1.4rem;
  color: var(--clr-dark);
}
.pillar-card h5 {
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.pillar-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   14. STATS SECTION
---------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark) 0%,
    var(--clr-primary) 50%,
    var(--clr-primary-lite) 100%
  );
}
.stat-card {
  padding: 2.5rem 1.5rem;
  transition: transform var(--trans-normal);
}
.stat-card:hover {
  transform: translateY(-8px);
}
.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(200, 169, 81, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-icon .bi {
  font-size: 1.5rem;
  color: var(--clr-accent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   15. INDUSTRIES SECTION
---------------------------------------------------------------- */
.industry-card {
  background: var(--clr-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--clr-secondary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(
    135deg,
    rgba(27, 94, 32, 0.04),
    rgba(76, 175, 80, 0.06)
  );
}
.industry-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-light-alt), var(--clr-white));
  border: 2px solid var(--clr-light-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all var(--trans-normal);
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-color: transparent;
}
.industry-icon .bi {
  font-size: 2.3rem;
  color: var(--clr-primary);
  transition: color var(--trans-fast);
}
.industry-card:hover .industry-icon .bi {
  color: var(--clr-white);
}
.industry-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 0;
}

/* ----------------------------------------------------------------
   16. GLOBAL NETWORK
---------------------------------------------------------------- */
.global-map-wrapper {
  position: relative;
  background: var(--clr-light-alt);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.global-map-bg {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.world-map-svg {
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0.5;
  filter: sepia(1) hue-rotate(80deg) saturate(2);
}
.global-regions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all var(--trans-normal);
  position: relative;
  min-width: 120px;
}
.region-card:hover {
  border-color: var(--clr-secondary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.region-dot {
  width: 10px;
  height: 10px;
  background: var(--clr-secondary);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  animation: pulse-ring 2s ease infinite;
}
.region-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--clr-secondary);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite 0.5s;
}
.region-card .bi {
  font-size: 1.8rem;
  color: var(--clr-primary);
}
.region-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-dark);
}

/* ----------------------------------------------------------------
   17. CTA SECTION
---------------------------------------------------------------- */
.cta-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark) 0%,
    var(--clr-primary) 50%,
    var(--clr-primary-lite) 100%
  );
  overflow: hidden;
}
.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 50%,
      rgba(200, 169, 81, 0.12),
      transparent 60%
    ),
    radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1), transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(200, 169, 81, 0.18);
  border: 1px solid rgba(200, 169, 81, 0.4);
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   18. TESTIMONIALS
---------------------------------------------------------------- */
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 175, 80, 0.2);
}
.testimonial-card--featured {
  border: 2px solid var(--clr-accent);
  background: linear-gradient(
    135deg,
    rgba(27, 94, 32, 0.03),
    rgba(200, 169, 81, 0.04)
  );
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card--featured:hover {
  transform: translateY(-12px);
}
.testimonial-stars .bi {
  color: var(--clr-accent);
  font-size: 0.9rem;
}
.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--clr-text);
  line-height: 1.85;
  flex: 1;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-light-alt);
}
.testimonial-avatar .bi {
  font-size: 2.8rem;
  color: var(--clr-secondary);
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-dark);
}
.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--clr-text-light);
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   20. CONTACT STRIP
---------------------------------------------------------------- */
.contact-strip {
  background: linear-gradient(
    135deg,
    var(--clr-primary) 0%,
    var(--clr-primary-dark) 100%
  );
  padding: 2.5rem 0;
}
.contact-strip-item + .contact-strip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  .contact-strip {
    padding: 2rem 0;
  }
  .contact-strip-item + .contact-strip-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
  }
}
.cs-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  padding: 0.25rem 0;
}
@media (max-width: 575px) {
  .cs-inner {
    gap: 0.85rem;
  }
}
.cs-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(200, 169, 81, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-icon .bi {
  font-size: 1.2rem;
  color: var(--clr-accent);
}
.cs-content {
  flex: 1;
  min-width: 0;
}
.cs-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}
.cs-value {
  display: block;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  font-weight: 700;
  color: var(--clr-white);
  text-decoration: none;
  word-break: break-word;
  transition: color var(--trans-fast);
}
.cs-value:hover {
  color: var(--clr-accent);
}
.cs-value-text {
  display: block;
  font-size: clamp(0.8rem, 2.2vw, 0.88rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  word-break: break-word;
}

/* ----------------------------------------------------------------
   21. FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--clr-dark);
}
.footer-top {
  padding: 5rem 0 3rem;
}
.footer-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}
.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 169, 81, 0.25);
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  transition: all var(--trans-fast);
}
.footer-links a:hover {
  color: var(--clr-accent);
  padding-left: 0.4rem;
}
.footer-links .bi {
  font-size: 0.65rem;
  color: var(--clr-accent);
}
.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-social {
  margin-top: 0.75rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}
.social-icon:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-3px);
}

/* Newsletter */
.newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  font-size: 0.87rem;
  padding: 0.6rem 1rem;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-secondary);
  color: var(--clr-white);
  box-shadow: none;
}
.newsletter-success {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--clr-secondary);
  display: flex;
  align-items: center;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  transition: color var(--trans-fast);
}
.footer-contact-link:hover {
  color: var(--clr-accent);
}
.footer-contact-link .bi {
  color: var(--clr-accent);
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--trans-fast);
}
.footer-bottom a:hover {
  color: var(--clr-accent);
}

/* ----------------------------------------------------------------
   22. FLOATING ELEMENTS
---------------------------------------------------------------- */
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--trans-normal);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #20ba5a;
  color: var(--clr-white);
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 3px solid #25d366;
  border-radius: 50%;
  animation: pulse-ring 2.5s ease infinite;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--clr-dark);
  color: var(--clr-white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-fast);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--clr-dark);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans-normal);
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   23. RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 991px) {
  :root {
    --section-pad-y: 4rem;
  }

  .mega-menu {
    min-width: 100%;
    left: 0 !important;
    flex-direction: column;
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--clr-light-alt);
    padding: 1rem 0;
    display: none;
  }
  .mega-menu.show {
    display: flex !important;
  }
  .mega-col {
    border-right: none;
    border-bottom: 1px solid var(--clr-light-alt);
    padding: 0.75rem 0;
  }
  .mega-col:last-child {
    border-bottom: none;
  }

  .about-experience-badge {
    right: 0;
    bottom: -10px;
    width: 110px;
    height: 110px;
  }
  .about-cert-card {
    left: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stat {
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 1rem;
  }
  .hero-stat-divider {
    display: none;
  }
  .about-experience-badge {
    position: static;
    margin-top: 1.5rem;
  }
  .about-cert-card {
    display: none;
  }
  .testimonial-card--featured {
    transform: none;
  }
  .back-to-top,
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .back-to-top {
    bottom: 5.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.65rem;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badge {
    font-size: 0.72rem;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   24. SCROLLBAR STYLING
---------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-light);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-accent);
}

/* ----------------------------------------------------------------
   26. PAGE HERO BANNER (SHARED FOR INNER PAGES)
---------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--clr-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero.loaded .page-hero-bg {
  transform: scale(1);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 94, 31, 0.697) 0%,
    rgba(20, 20, 20, 0.85) 60%,
    rgba(27, 94, 31, 0.61) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

/* Breadcrumb */
.page-hero-breadcrumb {
  margin-bottom: 1.25rem;
}
.page-hero-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  display: inline-flex;
  width: fit-content;
}
.page-hero-breadcrumb .breadcrumb-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.page-hero-breadcrumb .breadcrumb-item a {
  color: var(--clr-accent);
  text-decoration: none;
}
.page-hero-breadcrumb .breadcrumb-item a:hover {
  color: var(--clr-white);
}
.page-hero-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Hero Label */
.page-hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Hero Title */
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* Hero Subtitle */
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  max-width: 650px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .page-hero {
    min-height: 45vh;
  }
  .page-hero-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 40vh;
  }
  .page-hero-title {
    font-size: 1.75rem;
  }
  .page-hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ----------------------------------------------------------------
   GALLERY SHOWCASE CARDS (Physical Yard & Stock Photos)
---------------------------------------------------------------- */
.gallery-card {
  background: var(--clr-card-bg, #ffffff);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
}
.bg-dark-alt .gallery-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}
.gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 24, 16, 0.85);
  backdrop-filter: blur(4px);
  color: var(--clr-accent, #c9a84e);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 78, 0.3);
  letter-spacing: 0.5px;
}
.gallery-caption {
  padding: 1.15rem;
}
.gallery-caption h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--clr-dark, #111111);
}
.gallery-caption p {
  font-size: 0.82rem;
  color: var(--clr-text-muted, #666666);
  margin: 0;
  line-height: 1.4;
}
.bg-dark-alt .gallery-caption h5 {
  color: var(--clr-white, #ffffff);
}
.bg-dark-alt .gallery-caption p {
  color: rgba(255, 255, 255, 0.75);
}
