/* ==========================================================================
   SHESH ENVIRO INFRA PVT. LTD. - MASTER DESIGN SYSTEM
   Theme: Eco-Industrial Modern (Deep Forest Green, Slate, Cyan/Eco-Lime)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Color Palette - Synchronized with Official SHESH Logo */
  --color-primary: #0D3B2E;
  /* Deep Forest Green (Logo Subtitle & Foundations) */
  --color-primary-dark: #07221A;
  /* Rich Dark Eco-Forest Base */
  --color-primary-light: #16A34A;
  /* Official Logo "SHESH" Green */
  --color-primary-subtle: #E8F7F0;
  /* Soft Mint Wash */

  --color-accent: #22C55E;
  /* Bright Vibrant Leaf Green (Logo Sprout) */
  --color-accent-hover: #16A34A;
  /* Deep Leaf Green */
  --color-accent-emerald: #10B981;
  /* Emerald Green */
  --color-accent-glow: rgba(34, 197, 94, 0.3);

  --color-cyan: #06B6D4;
  /* Electric Cyan (Logo Bin Top & Left Leaf) */
  --color-cyan-light: #38BDF8;
  /* Sky Blue Cyan Gradient Stop */
  --color-cyan-subtle: #ECFEFF;
  /* Soft Cyan Tint */

  --color-gold: #F59E0B;
  /* Industrial Amber / Safety */
  --color-gold-subtle: #FEF3C7;

  /* Logo Signature Gradients */
  --gradient-logo: linear-gradient(135deg, #38BDF8 0%, #2DD4BF 45%, #22C55E 100%);
  --gradient-logo-btn: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  --gradient-hero: linear-gradient(135deg, #07221A 0%, #0D3B2E 55%, #0A4D3C 100%);

  /* Industrial Slate Neutrals */
  --color-slate-900: #0B1720;
  --color-slate-800: #13242A;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-400: #94A3B8;
  --color-slate-200: #E2E8F0;
  --color-slate-100: #F1F5F9;
  --color-slate-50: #F7FAF9;

  --color-white: #FFFFFF;
  --color-dark: #071510;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 5rem;
  --spacing-4xl: 7rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 35px -8px rgba(15, 23, 42, 0.18), 0 8px 16px -4px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.25);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1240px;
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

body {
  font-family: var(--font-body);
  color: var(--color-slate-700);
  background-color: var(--color-slate-50);
  line-height: 1.65;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent-hover);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

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

ul,
ol {
  list-style: none;
}

/* --- Container & Grid System --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.container-fluid {
  width: 100%;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  position: relative;
}

.section-lg {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}

.section-dark {
  background-color: var(--color-primary-dark);
  color: #CBD5E1;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-slate {
  background-color: var(--color-slate-900);
  color: #CBD5E1;
}

.section-slate h1,
.section-slate h2,
.section-slate h3,
.section-slate h4 {
  color: var(--color-white);
}

.section-light-gradient {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
}

.section-forest-gradient {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #0A3225 100%);
  color: #E2E8F0;
}

.section-forest-gradient h1,
.section-forest-gradient h2,
.section-forest-gradient h3 {
  color: var(--color-white);
}

/* --- Section Header Utility --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--spacing-3xl) auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(13, 59, 46, 0.15);
}

.section-badge.badge-accent {
  background-color: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.3);
}

.section-badge.badge-white {
  background-color: rgba(255, 255, 255, 0.12);
  color: #34D399;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
}

.section-dark .section-subtitle,
.section-slate .section-subtitle,
.section-forest-gradient .section-subtitle {
  color: #94A3B8;
}

/* --- Grid Utilities --- */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

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

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

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

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

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

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

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

/* Signature Logo Text Gradient */
.text-gradient {
  background: linear-gradient(90deg, #38BDF8 0%, #2DD4BF 45%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #38BDF8 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #15803D 0%, #16A34A 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(34, 197, 94, 0.45);
}

.btn-forest {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(13, 59, 46, 0.35);
}

.btn-forest:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 59, 46, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-slate-900);
  border-color: var(--color-slate-300, #CBD5E1);
}

.btn-outline:hover {
  background-color: var(--color-slate-100);
  border-color: var(--color-accent);
  color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, #0284C7 0%, #06B6D4 50%, #38BDF8 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
  border: none;
}

.btn-cyan:hover {
  background: linear-gradient(135deg, #0369A1 0%, #0891B2 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .icon {
  transform: translateX(3px);
}

/* ==========================================================================
   NAVIGATION BAR & TOP BAR
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #051F17 0%, #0B3327 100%);
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar a {
  color: #CBD5E1;
}

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

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-badge {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FLOATING GLASSMORPHIC PILL NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 10px;
  z-index: 1000;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: auto;
  pointer-events: none;
  padding: 0 1rem;
}

.site-header.site-header-floating {
  margin: 10px auto 0 auto;
  max-width: 1360px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .site-header.site-header-floating {
    margin: 14px auto 14px auto;
    padding: 0 1.25rem;
    max-width: 1360px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 6px;
    padding: 0 8px !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-header.site-header-floating {
    margin: 6px auto 0 auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .header-island-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.35rem 0.65rem !important;
    border-radius: 16px !important;
    gap: 0.4rem !important;
    box-sizing: border-box !important;
  }

  .brand-logo img {
    max-height: 38px !important;
    width: auto !important;
  }

  .nav-actions {
    gap: 0.4rem !important;
  }

  .btn-pill {
    padding: 0.35rem 0.65rem !important;
    font-size: 0.76rem !important;
  }
}

.site-header.scrolled {
  top: 6px;
  transform: translateY(-2px);
}

.header-island-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(7, 34, 26, 0.09), 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(16, 185, 129, 0.08);
  padding: 0.48rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.site-header.scrolled .header-island-wrapper {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 16px 45px rgba(7, 34, 26, 0.14), 0 0 0 1px rgba(16, 185, 129, 0.18);
  padding: 0.42rem 1.15rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding-left: 0.25rem;
}

.brand-logo img {
  display: block;
  width: auto;
  max-height: 46px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(241, 245, 249, 0.7);
  padding: 0.28rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.87rem;
  color: #334155;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  position: relative;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
}

.nav-link.active {
  color: #065F46;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(7, 34, 26, 0.08);
  font-weight: 700;
}

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

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 340px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(7, 34, 26, 0.16), 0 0 0 1px rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
  color: var(--color-slate-800);
}

.dropdown-link:hover {
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  transform: translateX(3px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(13, 59, 46, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.dropdown-link:hover .dropdown-icon {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  color: #FFFFFF;
}

.dropdown-info {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
}

.dropdown-desc {
  font-size: 0.74rem;
  color: var(--color-slate-600);
  margin-top: 0.2rem;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-pill {
  border-radius: 999px;
  padding: 0.48rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
  transition: all 0.25s ease;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

.btn-outline-glass {
  background: rgba(13, 59, 46, 0.05);
  color: var(--color-primary-dark);
  border: 1px solid rgba(13, 59, 46, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.81rem;
  font-weight: 700;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.btn-outline-glass:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

/* Mobile Hamburger Button in Pill */
.mobile-toggle {
  display: none;
  background: rgba(13, 59, 46, 0.06);
  border: 1px solid rgba(13, 59, 46, 0.12);
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-slate-900);
  transition: all 0.25s ease;
}

.mobile-toggle:hover {
  background: rgba(13, 59, 46, 0.12);
  transform: scale(1.05);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-slate-200);
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-slate-700);
  font-size: 1.5rem;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-slate-800);
  padding: 0.5rem 0;
}

.drawer-link.active {
  color: var(--color-accent-hover);
}

.drawer-sublinks {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid var(--color-primary-subtle);
}

.drawer-sublink {
  font-size: 0.9rem;
  color: var(--color-slate-600);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #07221A 0%, #0D3B2E 60%, #0F2D24 100%);
  color: var(--color-white);
  padding: var(--spacing-4xl) 0 var(--spacing-3xl) 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  margin-bottom: var(--spacing-md);
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .text-gradient {
  background: linear-gradient(90deg, #34D399 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

.trust-item svg {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Visual / Card Panel */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-visual-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--color-white);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-facility-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-facility-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: all var(--transition-fast);
}

.mini-facility-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.4);
}

.mini-facility-item.full-span {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  border-color: rgba(16, 185, 129, 0.25);
}

.mini-facility-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.mini-facility-head svg {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
}

.mini-facility-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* Floating Stats Badge on Hero */
.floating-stat-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-white);
  color: var(--color-slate-900);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 4px solid var(--color-accent);
}

.floating-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-stat-text h4 {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.floating-stat-text span {
  font-size: 0.72rem;
  color: var(--color-slate-600);
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   METRICS & IMPACT COUNTERS
   ========================================================================== */
.metrics-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
  padding: var(--spacing-2xl) 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.metrics-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-xl) var(--spacing-2xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.metric-card {
  text-align: center;
  position: relative;
  padding: 0 var(--spacing-md);
}

.metric-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-slate-200);
}

.metric-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem auto;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-suffix {
  color: var(--color-accent-hover);
}

.metric-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-slate-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CORE FACILITIES OVERVIEW (5 CORE UNITS)
   ========================================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.facility-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.facility-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-slate-900);
}

.facility-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.facility-card:hover .facility-card-image img {
  transform: scale(1.08);
}

.facility-card-image .facility-unit-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(7, 34, 26, 0.85);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

.facility-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.facility-card-header {
  padding: 1.5rem 1.75rem 0.75rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.facility-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary-subtle) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 59, 46, 0.1);
  transition: all var(--transition-fast);
}

.facility-card:hover .facility-icon-box {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.facility-unit-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background-color: var(--color-slate-100);
  color: var(--color-slate-600);
}

.facility-card-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
  flex-grow: 1;
}

.facility-title {
  font-size: 1.28rem;
  margin-bottom: 0.65rem;
  color: var(--color-slate-900);
  transition: color var(--transition-fast);
}

.facility-card:hover .facility-title {
  color: var(--color-primary);
}

.facility-desc {
  font-size: 0.92rem;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.facility-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.spec-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--color-slate-100);
  color: var(--color-slate-700);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.facility-card-footer {
  padding: 1.25rem 1.75rem;
  background-color: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.facility-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.facility-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.facility-card:hover .facility-link svg {
  transform: translateX(4px);
}

/* Featured / Full Width Facility Cards */
.facility-card.featured-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   PROCESS FLOW / ROADMAP
   ========================================================================== */
.roadmap-container {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.roadmap-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #06B6D4, #F59E0B, #10B981);
  transform: translateY(-50%);
  z-index: 1;
}

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

.roadmap-step {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.roadmap-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.step-number-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 1rem auto;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem auto;
  color: var(--color-primary);
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-slate-900);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--color-slate-600);
  line-height: 1.5;
}

/* ==========================================================================
   VALUE PROPOSITION & WHY CHOOSE US
   ========================================================================== */
.feature-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.feature-box:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-box:hover .feature-icon-wrapper {
  background: var(--color-accent);
  color: var(--color-dark);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

/* --- Logo Themed Spec Pills & Badges --- */
.facility-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  border: 1px solid rgba(13, 59, 46, 0.12);
  letter-spacing: 0.02em;
}

/* Facility Navigation Tabs */
.facility-nav-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spacing-2xl);
}

.facility-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-slate-700);
  background: var(--color-white);
  border: 1.5px solid var(--color-slate-200);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.facility-tab-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-primary-light);
  transform: translateY(-1px);
}

.facility-tab-btn.active {
  background: var(--gradient-logo-btn);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

/* ==========================================================================
   COMPLIANCE & REGULATORY FRAMEWORK SHOWCASE
   ========================================================================== */
.compliance-banner {
  background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.compliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.compliance-item svg {
  color: var(--color-accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.compliance-cert-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}

.cert-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-item h5 {
  color: #34D399;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.cert-item p {
  font-size: 0.72rem;
  color: #94A3B8;
}

/* ==========================================================================
   SERVICES.PHP DEDICATED FACILITY SECTIONS & SPEC TABLES
   ========================================================================== */
.facility-deep-section {
  padding: clamp(2.25rem, 4vw, 4rem) 0;
  border-bottom: 1px solid var(--color-slate-200);
  overflow: hidden;
  width: 100%;
}

.facility-deep-section:nth-child(even) {
  background-color: #FFFFFF;
}

.facility-deep-section:nth-child(odd) {
  background-color: var(--color-slate-50);
}

.facility-deep-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.facility-deep-grid > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.facility-deep-grid.reverse {
  grid-template-columns: 0.95fr 1.15fr;
}

@media (min-width: 993px) {
  .facility-deep-grid.reverse {
    direction: rtl;
  }
  .facility-deep-grid.reverse > * {
    direction: ltr;
  }
}

@media (max-width: 992px) {
  .facility-deep-grid,
  .facility-deep-grid.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 2.25rem !important;
  }
  .facility-deep-grid > *,
  .facility-deep-grid.reverse > * {
    direction: ltr !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

.spec-table-wrap {
  margin-top: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-slate-200);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  text-align: left;
}

.spec-table th {
  background-color: var(--color-primary-subtle);
  color: var(--color-primary-dark);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--color-slate-200);
  font-size: 0.82rem;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.spec-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--color-slate-100);
  color: var(--color-slate-700);
  font-size: 0.84rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.spec-table th:first-child,
.spec-table td:first-child {
  width: 38%;
  min-width: 90px;
}

.spec-table th:last-child,
.spec-table td:last-child {
  width: 62%;
}

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

.spec-table tr:hover td {
  background-color: var(--color-slate-50);
}

.facility-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
  width: 100%;
  box-sizing: border-box;
}

.facility-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  line-height: 1.55;
  width: 100%;
  box-sizing: border-box;
}

.facility-highlight-item > div {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.facility-highlight-item svg {
  color: var(--color-accent-hover);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.facility-visual-box {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 2.5vw, 2.25rem);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.facility-visual-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .facility-visual-box {
    padding: 1.25rem 1rem !important;
  }
}

@media (max-width: 576px) {
  .spec-table {
    font-size: 0.78rem;
  }
  .spec-table th,
  .spec-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
    white-space: normal !important;
  }
  .spec-table th:first-child,
  .spec-table td:first-child {
    width: 35%;
    min-width: 80px;
  }
  .spec-table th:last-child,
  .spec-table td:last-child {
    width: 65%;
  }
  .facility-deep-section .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Facility Navigation Filter Tabs */
.facility-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--spacing-3xl);
}

.facility-tab-btn {
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-slate-700);
  border: 1.5px solid var(--color-slate-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.facility-tab-btn:hover,
.facility-tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ==========================================================================
   FORMS & INPUT FIELDS (AJAX Form & Quote Modal)
   ========================================================================== */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-slate-200);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-slate-800);
}

.form-label .required {
  color: #EF4444;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-slate-900);
  background-color: var(--color-slate-50);
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

/* Form Alert / Toast Message */
.form-feedback {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-feedback.error {
  display: block;
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 0.5rem;
}

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

/* ==========================================================================
   MODAL COMPONENT (Quick Quote / Waste Audit)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-slate-200);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--color-white);
  font-size: 1.35rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 2rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--color-slate-900);
  color: #94A3B8;
  padding-top: var(--spacing-4xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-brand p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 1rem 0 1.5rem 0;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #CBD5E1;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-newsletter input {
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 0.85rem;
  flex-grow: 1;
  outline: none;
}

.footer-newsletter input:focus {
  border-color: var(--color-accent);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-compliance-notice {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-compliance-notice svg {
  color: var(--color-accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-compliance-notice p {
  font-size: 0.82rem;
  color: #CBD5E1;
  margin: 0;
}

/* Floating Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

.delay-4 {
  transition-delay: 400ms;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .facility-card.featured-card {
    grid-column: span 2;
  }

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

@media (max-width: 900px) {

  .nav-menu,
  .btn-outline-glass {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .topbar-right {
    display: none;
  }

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

  .metric-card:nth-child(2)::after {
    display: none;
  }

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

  .roadmap-line {
    display: none;
  }

  .step-number-bubble {
    margin-top: 0;
  }

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

  .facility-deep-grid,
  .facility-deep-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

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

  .facility-card.featured-card {
    grid-column: span 1;
  }

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

  .metric-card::after {
    display: none !important;
  }

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

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

  .form-group.full-width {
    grid-column: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-stat-badge {
    position: static;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   FULL-WIDTH HERO SLIDER / CAROUSEL BANNER (TSDF, MEE & ESG)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 760px;
  background-color: var(--color-slate-900);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-slider-section {
    min-height: 780px;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-slider-track {
    min-height: 780px;
  }
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.03);
  display: flex;
  align-items: center;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
}

.hero-slide-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(7, 34, 26, 0.96) 0%, rgba(15, 23, 42, 0.88) 55%, rgba(15, 23, 42, 0.5) 100%),
    radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.22) 0%, transparent 60%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 6rem 0 6.5rem 0;
}

.hero-slide-inner {
  max-width: 860px;
}

.hero-slide-inner .hero-title {
  color: var(--color-white);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-slide-inner .hero-lead {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hero-slide-inner .hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-slide-inner .hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-slider-arrow:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-arrow.prev {
  left: 24px;
}

.hero-slider-arrow.next {
  right: 24px;
}

@media (max-width: 768px) {
  .hero-slider-arrow {
    display: none;
  }
}

.hero-slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-slider-dot.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  width: 32px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FACILITY IMAGE CAROUSEL & PHOTO SHOWCASE
   ========================================================================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--color-slate-900);
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 420px;
}

@media (max-width: 900px) {
  .carousel-track-container {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .carousel-track-container {
    height: 290px;
  }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 34, 26, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  color: var(--color-white);
  z-index: 3;
}

.carousel-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(16, 185, 129, 0.25);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  backdrop-filter: blur(8px);
}

.carousel-title {
  color: var(--color-white);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.carousel-desc {
  color: #CBD5E1;
  font-size: 0.88rem;
  max-width: 650px;
  line-height: 1.5;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.65);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  width: 26px;
  border-radius: var(--radius-full);
}

/* Facility Photo Grid Component for inside pages */
.facility-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: var(--spacing-xl) 0;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-slate-900);
  border: 1px solid var(--color-slate-200);
  transition: all var(--transition-normal);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.photo-card-zoom-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 34, 26, 0.85);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

.photo-card:hover .photo-card-zoom-badge {
  opacity: 1;
  transform: scale(1);
}

.photo-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 34, 26, 0.95) 0%, rgba(15, 23, 42, 0.4) 70%, transparent 100%);
  padding: 1.15rem 1rem 0.75rem 1rem;
  color: #FFFFFF;
  pointer-events: none;
}

.photo-card-caption h5 {
  color: #FFFFFF;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.photo-card-caption p {
  color: #A7F3D0;
  font-size: 0.73rem;
  margin: 0;
}

/* =========================================================================
   CLEANTECH LIGHTBOX MODAL
   ========================================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 18, 14, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
  box-sizing: border-box;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-img-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.12);
  background: #000000;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

.lightbox-header {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lightbox-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: #34D399;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close-btn {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10002;
}

.lightbox-close-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
  transform: rotate(90deg) scale(1.05);
}

.lightbox-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(7, 34, 26, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10001;
  backdrop-filter: blur(8px);
}

.lightbox-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary-light);
  transform: translateY(-50%) scale(1.08);
  color: #FFFFFF;
}

.lightbox-nav-btn.prev {
  left: 24px;
}

.lightbox-nav-btn.next {
  right: 24px;
}

.lightbox-footer {
  margin-top: 1rem;
  text-align: center;
  max-width: 780px;
}

.lightbox-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lightbox-caption {
  color: #A7F3D0;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav-btn.prev {
    left: 10px;
  }

  .lightbox-nav-btn.next {
    right: 10px;
  }

  .lightbox-close-btn {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .lightbox-img-wrapper {
    max-height: 62vh;
  }

  .lightbox-img {
    max-height: 62vh;
  }
}

@media (max-width: 900px) {
  .facility-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================================================================
   ENVIRONMENTAL ENGINEERING & CLEANTECH / INDUSTRIAL UTILITIES DESIGN SYSTEM
   ========================================================================= */

/* SCADA & Telemetry Live Dashboard Widget */
.scada-dashboard {
  background: linear-gradient(135deg, #071E17 0%, #0B2921 50%, #061812 100%);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scada-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38BDF8 0%, #2DD4BF 50%, #22C55E 100%);
}

.scada-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.75rem;
}

.scada-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.scada-pulse-dot {
  width: 12px;
  height: 12px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 12px #22C55E;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.scada-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.scada-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.scada-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}

.scada-param-label {
  color: #94A3B8;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scada-param-value {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit', -apple-system, sans-serif;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.scada-param-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: #67E8F9;
}

.scada-param-meta {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Process Flow Pipeline */
.process-pipeline-section {
  padding: var(--spacing-3xl) 0;
  background: #FFFFFF;
}

.process-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  position: relative;
  margin-top: 2rem;
}

.process-stage-card {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.process-stage-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
}

.stage-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-logo-btn);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.stage-title {
  color: var(--color-primary-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stage-desc {
  color: var(--color-slate-600);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.stage-parameters {
  background: rgba(13, 59, 46, 0.05);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  font-size: 0.76rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Industrial Utility Blueprint Box */
.blueprint-card {
  background: #0B192C;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: #FFFFFF;
  position: relative;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.blueprint-item {
  border-left: 3px solid var(--color-cyan);
  padding-left: 1rem;
}

.blueprint-item-title {
  color: #94A3B8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.blueprint-item-val {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Cleantech Callout Banner */
.cleantech-cta-card {
  background:linear-gradient(135deg, #D9F0E5 0%, #C2E8D6 100%);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cleantech-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================================================
   Cleantech Inner Page Hero Banner System (Title + Breadcrumb + Clean Layout)
   ========================================================================== */
.page-hero-cleantech {
  position: relative;
  padding: 3.5rem 0 3.25rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-cleantech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7, 34, 26, 0.94) 0%, rgba(13, 59, 46, 0.88) 55%, rgba(6, 182, 212, 0.4) 100%);
  z-index: 1;
}

.page-hero-cleantech::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #06B6D4, #3B82F6);
  z-index: 2;
}

.page-hero-cleantech .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.5rem 0 0 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-cleantech {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.breadcrumb-cleantech a {
  color: #CBD5E1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.breadcrumb-cleantech a:hover {
  color: #34D399;
}

.breadcrumb-cleantech .separator {
  color: #64748B;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-cleantech .active-crumb {
  color: #34D399;
}

/* ==========================================================================
   MASTER COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (ALL BREAKPOINTS & COMPONENTS)
   Breakpoints: 1200px (Desktop/Laptop), 992px (Tablet Landscape),
                768px (Tablet Portrait/Phablet), 576px (Mobile), 380px (Small Mobile)
   ========================================================================== */

/* Universal Responsive Table Container */
.spec-table-wrap,
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  border-radius: var(--radius-lg);
}

.spec-table-wrap::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.spec-table-wrap::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
  background: var(--color-slate-100);
}

.spec-table-wrap::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
  background: var(--color-slate-400);
  border-radius: var(--radius-full);
}

.spec-table {
  min-width: 580px;
  /* Prevents column crushing on mobile */
}

/* Embed & Iframe Responsiveness */
iframe,
embed,
object,
video {
  max-width: 100%;
}

.video-responsive-wrap,
.map-responsive-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.video-responsive-wrap iframe,
.map-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* --- 1. Large Screen / Laptops (max-width: 1200px) --- */
@media (max-width: 1200px) {
  :root {
    --container-max: 1080px;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
  }

  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .footer-top-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: var(--spacing-xl);
  }

  .compliance-banner {
    padding: var(--spacing-2xl);
  }
}

/* --- 2. Tablet Landscape & Medium Devices (max-width: 992px) --- */
@media (max-width: 992px) {
  :root {
    --header-height: 72px;
    --spacing-3xl: 3.5rem;
    --spacing-4xl: 4.5rem;
  }

  /* Floating Navigation Collapse */
  .site-header {
    top: 8px;
    padding: 0 0.85rem;
  }

  .header-island-wrapper {
    border-radius: 20px;
    padding: 0.45rem 0.95rem;
  }

  .nav-menu,
  .btn-outline-glass {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  /* Topbar condensing */
  .topbar-right .topbar-item:last-child {
    display: none;
  }

  .topbar-content {
    justify-content: space-between;
  }

  /* Layout Grids */
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .grid-2,
  .grid-1-2,
  .grid-2-1,
  .grid-1-1 {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-2xl);
  }

  /* Hero & Visuals */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-slider-section,
  .hero-slider-track {
    min-height: 620px;
  }

  .hero-slide-content {
    padding: 4.5rem 0 5rem 0;
  }

  /* Facilities & Features */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-card.featured-card {
    grid-column: span 2;
  }

  .facility-deep-grid,
  .facility-deep-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--spacing-2xl);
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  /* Process Pipeline & Roadmap */
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .roadmap-line {
    display: none;
  }

  .step-number-bubble {
    margin-top: 0;
  }

  /* Metrics Counters */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .metric-card:nth-child(2)::after {
    display: none;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  /* Photo & Gallery Grids */
  .facility-photo-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SCADA & Blueprint */
  .blueprint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 3. Tablet Portrait & Phablets (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --spacing-xl: 1.25rem;
    --spacing-2xl: 2.25rem;
    --spacing-3xl: 3rem;
  }

  /* Base Typography */
  h1 {
    font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  }

  .section {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  /* Convert ALL Grids to Single Column */
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-1-2,
  .grid-2-1,
  .grid-1-1 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .facilities-grid {
    grid-template-columns: 1fr !important;
  }

  .facility-card.featured-card {
    grid-column: span 1 !important;
  }

  /* Topbar on Mobile */
  .topbar {
    font-size: 0.76rem;
    padding: 0.35rem 0;
  }

  .topbar-right {
    display: none !important;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
  }

  /* Hero Slider Adjustments */
  .hero-slider-section,
  .hero-slider-track {
    min-height: 580px;
    height: auto;
  }

  .hero-slide-item {
    align-items: flex-start;
    padding-top: 1.25rem;
    box-sizing: border-box;
  }

  .hero-slider-arrow {
    display: none !important;
  }

  .hero-slider-dots {
    bottom: 14px;
    z-index: 10;
  }

  .hero-slide-content {
    padding: 1.25rem 0 3.25rem 0;
  }

  .hero-badge-wrap {
    margin-bottom: 0.6rem;
  }

  .hero-badge-wrap .section-badge {
    white-space: normal;
    text-align: left;
    font-size: 0.76rem;
    padding: 0.32rem 0.7rem;
    line-height: 1.35;
    margin-bottom: 0;
    display: inline-flex;
  }

  .hero-slide-inner .hero-title {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
    line-height: 1.22;
    margin-top: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .hero-slide-inner .hero-title br {
    display: none;
  }

  .hero-slide-inner .hero-lead {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.15rem;
  }

  .hero-slide-inner .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .hero-slide-inner .hero-cta-group .btn {
    width: 100%;
    padding: 0.7rem 1.15rem;
    font-size: 0.88rem;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding-top: 0.75rem;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  /* Floating badge on Hero */
  .floating-stat-badge {
    position: static;
    margin-top: 1.25rem;
    width: 100%;
  }

  .hero-card-main {
    padding: 1.25rem;
  }

  .hero-facility-mini-grid {
    grid-template-columns: 1fr;
  }

  .mini-facility-item.full-span {
    grid-column: span 1;
  }

  /* Metrics Counters */
  .metrics-section {
    margin-top: -15px;
    padding: var(--spacing-xl) 0;
  }

  .metrics-wrapper {
    padding: 1.25rem 1rem;
  }

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

  .metric-card {
    padding: 0.5rem;
  }

  .metric-card::after {
    display: none !important;
  }

  .metric-number {
    font-size: 1.95rem;
  }

  .metric-label {
    font-size: 0.78rem;
  }

  /* Process Pipeline & Roadmap */
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-pipeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-stage-card {
    padding: 1.25rem;
  }

  /* Compliance & SCADA */
  .compliance-list {
    grid-template-columns: 1fr;
  }

  .cert-badge-grid {
    grid-template-columns: 1fr;
  }

  .scada-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .scada-dashboard {
    padding: 1.5rem 1.25rem;
  }

  .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blueprint-card {
    padding: 1.5rem 1.25rem;
  }

  /* Facility Deep Sections & Cards */
  .facility-card-header {
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
  }

  .facility-card-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .facility-card-footer {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.65rem;
  }

  .facility-card-footer .btn {
    width: 100%;
  }

  .facility-visual-box {
    padding: 1.75rem 1.25rem;
  }

  .facility-visual-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  /* Photo & Gallery */
  .facility-photo-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .photo-card {
    aspect-ratio: 16 / 10;
  }

  .carousel-track-container {
    height: 280px;
  }

  .carousel-overlay {
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .carousel-desc {
    display: none;
    /* Keep slide clean on mobile */
  }

  /* Forms & Interactive Inputs */
  .form-card {
    padding: 1.5rem 1.25rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-control {
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
    padding: 0.75rem 0.9rem;
  }

  /* Modals */
  .modal-overlay {
    padding: 0.75rem;
  }

  .modal-container {
    width: 100%;
    max-height: 92vh;
  }

  .modal-header {
    padding: 1.15rem 1.25rem;
  }

  .modal-header h3 {
    font-size: 1.15rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  /* Cleantech Callout Banner */
  .cleantech-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }

  .cleantech-cta-card .btn {
    width: 100%;
  }

  /* Page Hero Cleantech */
  .page-hero-cleantech {
    padding: 2.75rem 0 2.25rem 0;
  }

  .page-hero-title {
    font-size: 1.85rem;
  }

  .breadcrumb-cleantech {
    font-size: 0.8rem;
  }

  /* Footer */
  .site-footer {
    padding-top: var(--spacing-3xl);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-compliance-notice {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

/* --- 4. Small Smartphone Screens (max-width: 576px) --- */
@media (max-width: 576px) {
  :root {
    --header-height: 64px;
    --spacing-lg: 1rem;
  }

  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Brand Logo in Header */
  .brand-logo img {
    max-height: 38px !important;
  }

  /* Button Touch-Target Sizing */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px;
    /* Apple/Google 44px touch target guideline */
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Hero Slider Compact */
  .hero-slider-section,
  .hero-slider-track {
    min-height: 590px;
    height: auto;
  }

  .hero-slide-item {
    align-items: flex-start;
    padding-top: 1rem;
  }

  .hero-slide-content {
    padding: 1rem 0 3.25rem 0;
  }

  .hero-badge-wrap .section-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
  }

  .hero-slide-inner .hero-title {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    line-height: 1.25;
    margin-top: 0.35rem;
    margin-bottom: 0.65rem;
  }

  .hero-slide-inner .hero-lead {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }

  /* Metrics Single Column */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .metric-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--color-slate-100);
  }

  .metric-card:last-child {
    border-bottom: none;
  }

  .metric-icon-wrap {
    margin: 0;
    flex-shrink: 0;
  }

  .metric-number {
    font-size: 1.65rem;
    margin-bottom: 0.1rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  /* SCADA Dashboard Single Column */
  .scada-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .scada-param-value {
    font-size: 1.3rem;
  }

  /* Facility Filter Tabs */
  .facility-nav-tabs {
    gap: 0.35rem;
  }

  .facility-tab-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }

  /* Spec Table Wrapper & Pills */
  .spec-table {
    font-size: 0.8rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.55rem 0.75rem;
  }

  .spec-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  /* Mobile Navigation Drawer */
  .mobile-drawer {
    width: 90%;
    max-width: 320px;
    padding: 1.25rem 1rem;
  }

  .drawer-header {
    margin-bottom: 1.25rem;
  }

  .drawer-link {
    font-size: 1rem;
    padding: 0.4rem 0;
  }

  .drawer-sublink {
    font-size: 0.85rem;
  }

  /* Modals Full Width */
  .modal-overlay {
    padding: 0.5rem;
  }

  .modal-container {
    border-radius: var(--radius-lg);
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-body {
    padding: 1rem;
  }

  /* Page Hero Cleantech */
  .page-hero-cleantech {
    padding: 2.25rem 0 1.75rem 0;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }

  /* Back to Top button */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* --- 5. Micro Screens / Foldables (max-width: 380px) --- */
@media (max-width: 380px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .hero-slide-inner .hero-title {
    font-size: 1.4rem;
  }

  .page-hero-title {
    font-size: 1.4rem;
  }

  .brand-logo img {
    max-height: 34px !important;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .metric-number {
    font-size: 1.45rem;
  }

  .modal-header h3 {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   GOVERNMENT RECOGNITION PAGE RESPONSIVE STYLES
   ========================================================================== */
.recog-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
}

.recog-cert-card {
  background: linear-gradient(145deg, #07221A 0%, #0D3B2E 60%, #082920 100%);
  border: 2px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  color: #FFFFFF;
  box-shadow: 0 20px 45px rgba(7, 34, 26, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.recog-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.recog-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.recog-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.recog-btn-group .btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 992px) {
  .recog-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
}

@media (max-width: 576px) {
  .recog-meta-grid {
    grid-template-columns: 1fr !important;
  }
  .recog-btn-group {
    flex-direction: column !important;
  }
  .recog-btn-group .btn {
    width: 100% !important;
    flex: none !important;
  }
  .recog-card-header h3 {
    font-size: 1.2rem !important;
  }
}