/* ==========================================================================
   GREENLAND WASTE MANAGEMENT SYSTEMS - PREMIUM DESIGN SYSTEM
   Modern Eco-Industrial UI with Fluid Micro-Animations & Responsive Layouts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-950: #03140C;
  --primary-900: #072517;
  --primary-800: #0D3E27;
  --primary-700: #125737;
  --primary-600: #106C42;
  --primary-500: #10B981;
  --primary-400: #34D399;
  --primary-300: #6EE7B7;
  --primary-100: #D1FAE5;
  --primary-50: #ECFDF5;

  --accent-900: #78350F;
  --accent-700: #B45309;
  --accent-600: #D97706;
  --accent-500: #F59E0B;
  --accent-400: #FBBF24;
  --accent-100: #FEF3C7;
  --accent-50: #FFFBEB;

  --dark-950: #070B14;
  --dark-900: #0B1120;
  --dark-800: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;

  --gray-600: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;

  --white: #FFFFFF;
  --black: #000000;

  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.25);
  --shadow-accent-glow: 0 0 25px rgba(245, 158, 11, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-800);
  background-color: var(--gray-50);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

/* --- Container & Grid --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* --- Top Utility Bar --- */
.top-bar {
  background: var(--dark-950);
  color: var(--gray-300);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-400);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-400);
  animation: pulseDot 2s infinite;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
}

.top-bar-item i, .top-bar-item svg {
  color: var(--accent-400);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.iso-tag {
  color: var(--accent-400);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  padding: 0.2rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.02);
}

.logo-brand-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-brand-name span {
  color: var(--accent-600);
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-700);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500));
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-700);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-800);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.header-phone-btn:hover {
  background: var(--primary-100);
  color: var(--primary-900);
  transform: translateY(-1px);
}

.hamburger-btn {
  display: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--dark-800);
}

/* --- Mobile Menu Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--dark-900);
  color: white;
  z-index: 2000;
  padding: 2rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.25rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-200);
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-link.active, .drawer-link:hover {
  color: var(--primary-400);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
  color: white;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-700), var(--accent-600));
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

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

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

.btn-outline-primary {
  background: transparent;
  color: var(--primary-700);
  border: 2px solid var(--primary-600);
}

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

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #0d4e30 0%, #062316 45%, #04140c 100%);
  color: white;
  padding: 6rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-300);
}

.badge-pill-accent {
  border-color: rgba(245, 158, 11, 0.5);
  color: var(--accent-400);
  background: rgba(245, 158, 11, 0.1);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #6ee7b7, #10b981, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-stats-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-item h3 {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-400);
  margin-bottom: 0.2rem;
}

.ticker-item p {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* --- Hero Operations Showcase Hub --- */
.hero-visual {
  position: relative;
}

.hero-showcase-hub {
  background: rgba(11, 28, 19, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-showcase-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-400), var(--accent-400), transparent);
}

.hub-media-frame {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.hub-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-showcase-hub:hover .hub-media-img {
  transform: scale(1.04);
}

.hub-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 22, 0.2) 0%, rgba(3, 20, 12, 0.85) 100%);
}

.hub-media-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(11, 25, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-300);
}

.hub-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hub-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.hub-feature-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateX(4px);
}

.hub-feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.hub-feature-icon-wrap.cattle {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hub-feature-icon-wrap.energy {
  background: linear-gradient(135deg, var(--accent-700), var(--accent-500));
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hub-feature-info {
  flex-grow: 1;
}

.hub-feature-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-400);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.hub-feature-info h4 {
  font-size: 0.98rem;
  color: white;
  margin-bottom: 0.2rem;
}

.hub-feature-info p {
  font-size: 0.8rem;
  color: var(--gray-300);
  line-height: 1.35;
  margin: 0;
}

.hub-feature-metric {
  text-align: right;
  flex-shrink: 0;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-feature-metric strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--primary-400);
  line-height: 1;
}

.hub-feature-metric span {
  font-size: 0.68rem;
  color: var(--gray-400);
  text-transform: uppercase;
}

.hub-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.hub-footer-strip i {
  color: var(--accent-400);
  margin-right: 0.25rem;
}

.hub-footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* --- Section Formatting --- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--dark-900);
  color: white;
}

.section-white {
  background: white;
}

.section-tint {
  background: #F4F8F5;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-dark .section-subtitle {
  color: var(--primary-400);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: white;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--gray-300);
}

/* --- Marquee / Client Logos --- */
.client-marquee-section {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.marquee-heading {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marqueeScroll 25s linear infinite;
  align-items: center;
  flex-shrink: 0;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.client-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--dark-700);
  font-size: 1.05rem;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.client-pill:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-800);
  transform: translateY(-2px);
}

.client-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-500);
  border-radius: 50%;
}

/* --- 4-Step Recycling Procedure Timeline --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  margin-top: 2rem;
}

.process-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-400);
}

.process-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-100);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  transition: color var(--transition-fast);
}

.process-card:hover .process-number {
  color: var(--primary-300);
}

.process-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

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

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--dark-900);
}

.process-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* --- Services Showcase --- */
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.service-card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.08);
}

.service-badge-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-400);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

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

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--dark-900);
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.service-tag {
  background: var(--gray-100);
  color: var(--dark-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* --- Product Cards & Catalog --- */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.product-img-wrap {
  height: 200px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-category-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(13, 62, 39, 0.88);
  backdrop-filter: blur(6px);
  color: var(--primary-300);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-900);
}

.product-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.product-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-700);
}

/* --- Filter Bar --- */
.filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--gray-100);
  color: var(--dark-700);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-700);
  color: white;
}

.search-input-box {
  position: relative;
  min-width: 260px;
}

.search-input-box input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.search-input-box input:focus {
  border-color: var(--primary-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* --- Why Choose Us / Value Prop --- */
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-400);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.value-card:hover .value-icon {
  background: var(--primary-700);
  color: white;
}

.value-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.value-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Impact Banner / Mission --- */
.impact-banner {
  background: linear-gradient(135deg, #0A3622 0%, #062316 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-xl);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.impact-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.impact-content p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.impact-stats-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-stat-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.impact-stat-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-400);
  line-height: 1;
  min-width: 100px;
}

.impact-stat-label strong {
  display: block;
  font-size: 1rem;
  color: white;
}

.impact-stat-label span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .impact-banner { padding: 2.5rem 1.5rem; }
}

/* --- Page Banner --- */
.page-banner {
  background: radial-gradient(circle at 80% 20%, #0d4e30 0%, #062316 60%, #03140c 100%);
  color: white;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.page-banner-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.breadcrumb-list a {
  color: var(--primary-300);
  font-weight: 600;
}

.breadcrumb-list a:hover {
  color: white;
}

.breadcrumb-separator {
  color: var(--gray-500);
}

/* --- Contact & Inquiry Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--gray-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 1rem 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
  line-height: 1.5;
}

select.form-control:focus {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310B981' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E");
}

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

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem; }
}

/* --- Map Container --- */
.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  margin-top: 3.5rem;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-950);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.45fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-500);
  color: var(--dark-900);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--accent-500);
  border-radius: 2px;
}

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

.footer-links-list a {
  color: var(--gray-400);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

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

.footer-email-link {
  font-size: 0.73rem;
  color: var(--primary-300);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.footer-email-link:hover {
  color: white;
  text-decoration: underline;
}

.footer-swachh-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.swachh-badge {
  font-size: 1.8rem;
  color: var(--accent-400);
}

.swachh-text strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.swachh-text span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.credit-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ofinit-credit-link {
  color: var(--gray-300);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
}

.ofinit-credit-link strong {
  color: #FBBF24;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.credit-wrapper:hover .ofinit-credit-link strong {
  color: #F59E0B;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
}

.credit-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1000;
}

.credit-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 24px;
  border-width: 6px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
}

.credit-wrapper:hover .credit-tooltip,
.ofinit-credit-link:hover + .credit-tooltip,
.credit-tooltip.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

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

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Floating Quick Action Bar --- */
.floating-dock {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 1.35rem;
  position: relative;
}

.dock-whatsapp {
  background: #25D366;
}

.dock-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.dock-phone {
  background: var(--primary-600);
}

.dock-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.dock-top-btn {
  background: var(--dark-800);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.dock-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dock-top-btn:hover {
  background: var(--dark-950);
}

/* --- Modal Styles --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: white;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gray-100);
  color: var(--dark-700);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gray-200);
  color: var(--dark-900);
}

/* --- Animations --- */
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

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

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

/* Scroll reveal helper classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (DESKTOP, TABLET & MOBILE)
   ========================================================================== */

/* --- Medium Devices & Tablets (<= 1024px) --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { text-align: center; align-items: center; }
  .hero-actions { justify-content: center; }
  .badge-pill { margin: 0 auto; }
  .hero-stats-ticker { max-width: 550px; margin: 2rem auto 0; }
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
}

/* --- Tablets & Phablets (<= 992px) --- */
@media (max-width: 992px) {
  .header-phone-btn { display: none !important; }
  .hamburger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-50);
    color: var(--primary-800);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    transition: all var(--transition-fast);
  }
  .hamburger-btn:hover {
    background: var(--primary-100);
    color: var(--primary-900);
  }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .impact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- Mobile Landscape & Standard Phones (<= 768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 1.15rem; }
  .section { padding: 3.75rem 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-timeline { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Top bar hidden on mobile/tablet to avoid clutter */
  .top-bar { display: none !important; }

  /* Header & Logo */
  .site-header { padding: 0.15rem 0; }
  .header-inner { padding: 0.65rem 0; }
  .logo-img { height: 40px; }

  /* Hero Section */
  .hero-section { padding: 3rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.5rem); line-height: 1.18; }
  .hero-lead { font-size: 0.98rem; line-height: 1.6; }
  
  /* Dual Action Buttons Side by Side on Mobile */
  .hero-actions,
  .btn-row-responsive {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .hero-actions .btn,
  .btn-row-responsive .btn {
    width: 100% !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.82rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.35rem !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }
  .hero-stats-ticker {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding-top: 1.35rem;
    margin-top: 1.35rem;
  }
  .ticker-item h3 { font-size: 1.35rem; }
  .ticker-item p { font-size: 0.7rem; }

  /* Operations Hub on Mobile */
  .hero-showcase-hub { padding: 1rem; gap: 0.85rem; border-radius: var(--radius-lg); }
  .hub-media-frame { height: 170px; }
  .hub-feature-card { padding: 0.8rem; gap: 0.7rem; }
  .hub-feature-icon-wrap { width: 38px; height: 38px; font-size: 1.05rem; }
  .hub-feature-info h4 { font-size: 0.9rem; }
  .hub-feature-info p { font-size: 0.76rem; }
  .hub-feature-metric { min-width: 55px; padding-left: 0.35rem; }
  .hub-feature-metric strong { font-size: 1rem; }
  .hub-feature-metric span { font-size: 0.6rem; }
  .hub-footer-strip { font-size: 0.68rem; flex-wrap: wrap; justify-content: center; gap: 0.35rem; }

  /* Floating Dock */
  .floating-dock { bottom: 0.85rem; right: 0.85rem; gap: 0.45rem; z-index: 1500; }
  .dock-btn { width: 44px; height: 44px; font-size: 1.15rem; box-shadow: 0 4px 12px rgba(0,0,0,0.35); }

  /* Product Filters & Search */
  .filter-container { padding: 0.85rem 1rem; gap: 1rem; flex-direction: column; align-items: stretch; }
  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; padding: 0.45rem 0.95rem; font-size: 0.82rem; }
  .search-input-box { width: 100%; min-width: 100%; }

  /* Forms & Cards */
  .form-row-2 { grid-template-columns: 1fr; gap: 1.1rem; }
  .contact-form-box { padding: 1.5rem 1.15rem; border-radius: var(--radius-lg); }
  .contact-info-card { padding: 1.25rem 1rem; gap: 1rem; }
  .map-card iframe { height: 280px; }
  .impact-banner { padding: 2.25rem 1.25rem; }
  .impact-stats-box { padding: 1.25rem; gap: 1rem; }
  .impact-stat-row { gap: 1rem; }
  .impact-stat-num { font-size: 1.85rem; min-width: 65px; }

  /* Footer */
  .site-footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; margin-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.85rem; }
  .footer-email-link { font-size: 0.72rem; justify-content: center; }

  /* Modal */
  .modal-box { padding: 1.5rem 1.15rem; max-width: 94%; border-radius: var(--radius-lg); }
}

/* --- Small Mobile Phones (<= 480px) --- */
@media (max-width: 480px) {
  .top-bar { display: none; } /* Clean top space on small phones */
  .hero-section { padding: 2.75rem 0 2.25rem; }
  .hero-title { font-size: clamp(1.75rem, 8.5vw, 2.25rem); }
  .hero-stats-ticker { gap: 0.35rem; }
  .ticker-item h3 { font-size: 1.25rem; }
  .ticker-item p { font-size: 0.65rem; }
  .section-title { font-size: clamp(1.5rem, 6.5vw, 1.95rem); }
  .page-banner { padding: 3rem 0 2rem; }
  .page-banner-title { font-size: clamp(1.75rem, 7.5vw, 2.25rem); }
}
