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

:root {
  --color-green: #54BA5D;
  --color-green-light: #6ad673;
  --color-blue: #4995D1;
  --color-blue-dark: #377cb2;
  --color-dark: #12131a; /* Deeper, more modern charcoal-black */
  --color-dark-light: #52606d; /* Premium slate gray */
  --color-light: #FFFFFF;
  --color-bg-secondary: #f8fafc; /* Ice blue-white */
  --color-border: rgba(226, 232, 240, 0.8);
  --color-success: #10b981;
  
  --gradient-primary: linear-gradient(135deg, #54BA5D 0%, #53B861 20%, #52B370 40%, #4FAC87 60%, #4CA1A8 80%, #4995D1 100%);
  --gradient-dark: linear-gradient(135deg, #0f1115 0%, #171a22 100%); /* Rich dark metallic gradient */
  --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(18, 19, 26, 0.05), 0 8px 16px -6px rgba(18, 19, 26, 0.03);
  --shadow-lg: 0 25px 50px -12px rgba(18, 19, 26, 0.1), 0 12px 24px -8px rgba(18, 19, 26, 0.05);
  --shadow-premium: 0 40px 80px -15px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 25px rgba(84, 186, 93, 0.25);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 28px;
  --border-radius-full: 9999px;
  
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.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); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

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

.section-padding {
  padding: 5.5rem 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(84, 186, 93, 0.1);
  color: var(--color-green);
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(84, 186, 93, 0.2);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--color-dark-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Premium Glassmorphism styling */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px -5px rgba(18, 19, 26, 0.04), 0 8px 16px -6px rgba(18, 19, 26, 0.02);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(84, 186, 93, 0.35);
}

.glass-card-dark {
  background: rgba(18, 19, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  color: var(--color-light);
}

.glass-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(84, 186, 93, 0.12);
  border-color: rgba(84, 186, 93, 0.3);
}

/* Button & Link Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--border-radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:active {
  transform: scale(0.96) translateY(0) !important;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-light);
  box-shadow: 0 8px 24px rgba(84, 186, 93, 0.22);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4995D1 0%, #4CA1A8 40%, #4FAC87 60%, #54BA5D 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(73, 149, 209, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--color-light);
  color: var(--color-dark);
  border-color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(18, 19, 26, 0.15);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-outline:hover {
  color: var(--color-light);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(84, 186, 93, 0.18);
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-sm {
  padding: 0.55rem 1.5rem;
  font-size: 0.825rem;
}

/* Header & Navigation Mega Menu */
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1240px;
  height: 72px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--border-radius-full);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  height: 66px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border: none;
  border-bottom: 1px solid var(--color-border);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Nav Menu & Dropdowns */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

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

/* Standard Dropdown Menu (e.g. About Us) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 290px;
  background: var(--color-light);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(230, 234, 240, 0.7);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 100;
}

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

.dropdown-list li {
  margin-bottom: 0.85rem;
}

.dropdown-list li:last-child {
  margin-bottom: 0;
}

.dropdown-list a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
  transition: var(--transition-fast);
}

.dropdown-list a span {
  font-size: 0.72rem;
  color: #a0aec0;
  font-weight: 500;
  margin-top: 0.15rem;
}

.dropdown-list a:hover {
  color: var(--color-green);
  transform: translateX(4px);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  transform-origin: top center;
  width: 1180px;
  background: var(--color-light);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 300px;
  gap: 2.75rem;
}

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

.mega-menu-col h4 {
  font-size: 0.825rem;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: -0.6rem;
  margin-right: -0.4rem;
  text-decoration: none;
}

.mega-menu-item:hover {
  background: var(--color-bg-secondary);
  transform: translateX(4px);
}

.m-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.icon-blue {
  background: rgba(73, 149, 209, 0.08);
  color: var(--color-blue);
}

.icon-green {
  background: rgba(84, 186, 93, 0.08);
  color: var(--color-green);
}

.icon-amber {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.mega-menu-item:hover .m-item-icon.icon-blue {
  background: var(--color-blue);
  color: var(--color-light);
}

.mega-menu-item:hover .m-item-icon.icon-green {
  background: var(--color-green);
  color: var(--color-light);
}

.mega-menu-item:hover .m-item-icon.icon-amber {
  background: #f59e0b;
  color: var(--color-light);
}

.m-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.m-item-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
  transition: var(--transition-fast);
}

.mega-menu-item:hover:has(.icon-blue) .m-item-title {
  color: var(--color-blue);
}

.mega-menu-item:hover:has(.icon-green) .m-item-title {
  color: var(--color-green);
}

.mega-menu-item:hover:has(.icon-amber) .m-item-title {
  color: #d97706;
}

.m-item-desc {
  font-size: 0.7rem;
  color: var(--color-dark-light);
  font-weight: 500;
  line-height: 1.35;
}

.mega-menu-promo {
  background: linear-gradient(135deg, #12131a 0%, #1c1d26 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mega-menu-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(84, 186, 93, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mega-menu-promo .promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.mega-menu-promo .promo-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
}

.mega-menu-promo h4 {
  color: var(--color-light);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  border: none;
  padding-bottom: 0;
  letter-spacing: -0.2px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.mega-menu-promo p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-trigger {
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-light);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-trigger:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-blue);
  color: var(--color-blue);
}

/* Hamburger Menu (Mobile) */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn-burger {
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  position: relative;
  transition: var(--transition-fast);
}

.menu-btn-burger::before,
.menu-btn-burger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  transition: var(--transition-fast);
}

.menu-btn-burger::before { transform: translateY(-8px); }
.menu-btn-burger::after { transform: translateY(8px); }

/* Sticky Products Compare Drawer */
.compare-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--color-blue);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: var(--transition-normal);
  padding: 1.5rem 0;
}

.compare-drawer.active {
  transform: translateY(0);
}

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

.compare-slots {
  display: flex;
  gap: 1.5rem;
}

.compare-slot {
  width: 180px;
  height: 70px;
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-light);
  overflow: hidden;
}

.compare-slot.filled {
  border-style: solid;
  border-color: var(--color-green);
  justify-content: space-between;
  padding: 0 0.75rem;
}

.compare-slot img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.compare-slot span {
  font-size: 0.8rem;
  font-weight: 700;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-slot .remove-compare {
  background: none;
  border: none;
  cursor: pointer;
  color: #ff4757;
  font-size: 1.1rem;
}

.compare-drawer-actions {
  display: flex;
  gap: 1rem;
}

/* Compare Comparison Modal Overlay */
.compare-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.compare-modal {
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  background: var(--color-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  overflow-y: auto;
  position: relative;
  padding: 3rem;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark);
  transition: var(--transition-fast);
}

.close-modal:hover {
  color: var(--color-green);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  text-align: left;
}

.compare-table th, .compare-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.compare-table th {
  font-family: var(--font-heading);
  color: var(--color-blue);
  font-weight: 700;
}

.compare-table tr:hover {
  background: var(--color-bg-secondary);
}

/* Home Page Hero Section (Immersive Luxury) */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #0c0e0f;
}

.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-bg-slide.active {
  opacity: 0.85;
  z-index: 2;
  animation: kenBurns 9.5s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Modern premium vignette gradient overlay that provides contrast for text but leaves the image visible */
  background: linear-gradient(90deg, rgba(12, 14, 15, 0.72) 0%, rgba(12, 14, 15, 0.35) 45%, transparent 100%),
              linear-gradient(180deg, rgba(12, 14, 15, 0.6) 0%, transparent 20%, rgba(12, 14, 15, 0.6) 100%);
  z-index: 3;
}

.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  z-index: 4;
  color: var(--color-light);
}

.hero-content-wrap {
  max-width: 850px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  margin-top: 1.5rem;
  box-shadow: none;
  transition: transform 0.4s ease-out;
  transform-style: preserve-3d;
}

.hero-headline {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  color: var(--color-light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-headline span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 720px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0;
}

/* Minimalist Horizontal Loader indicators */
.hero-slider-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.75rem;
  margin-top: auto;
}

.hero-nav-item {
  cursor: pointer;
  opacity: 0.45;
  transition: var(--transition-normal);
}

.hero-nav-item:hover, .hero-nav-item.active {
  opacity: 1;
}

.hero-nav-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-nav-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-green);
}

.hero-nav-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-nav-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-full);
  position: relative;
  overflow: hidden;
}

.hero-nav-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
}

.hero-nav-item.active .hero-nav-bar-fill {
  width: 100%;
  transition: width 9s linear;
}

.hero-animate {
  animation: heroTextFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTextFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Stats Counters */
.stats-section {
  position: relative;
  z-index: 3;
  margin-top: -50px;
  padding-bottom: 4rem;
}

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

.stat-card {
  text-align: center;
  border-right: 1px solid var(--color-border);
  padding: 1rem;
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-dark-light);
  font-weight: 700;
}

/* About Section Home */
.about-split {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}

/* Bento Grid Layout System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  width: 100%;
}

.bento-card {
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.bento-card-span-8 {
  grid-column: span 8;
}

.bento-card-span-5 {
  grid-column: span 5;
}

.bento-card-span-4 {
  grid-column: span 4;
}

.bento-card-span-3 {
  grid-column: span 3;
}

.bento-card-about {
  background: var(--gradient-light);
  border: 1px solid rgba(18, 19, 26, 0.08);
  box-shadow: var(--shadow-md);
}

.bento-card-about .about-features {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.bento-card-image {
  background: var(--gradient-dark);
  color: white;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 400px;
}

.bento-card-image .bento-image-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
  z-index: 1;
  opacity: 0.55;
}

.bento-card-image:hover .bento-image-bg {
  transform: scale(1.06);
  opacity: 0.7;
}

.bento-card-image-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card-image-gradient::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(18, 19, 26, 0) 30%, rgba(18, 19, 26, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Light Glass Stat Card */
.bento-card-stat-light {
  text-align: center;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(18, 19, 26, 0.06);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 15px 35px -5px rgba(18, 19, 26, 0.02);
}

.bento-card-stat-light .stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.bento-card-stat-light .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-dark-light);
}

.bento-card-stat-light:hover {
  transform: translateY(-5px);
  border-color: rgba(73, 149, 209, 0.35);
  box-shadow: 0 20px 40px rgba(73, 149, 209, 0.08);
}

/* Glowing Dark Stat Card */
.bento-card-stat-dark {
  text-align: center;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #12131a 0%, #1e202e 100%);
  border: 1px solid rgba(84, 186, 93, 0.15);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  color: var(--color-light);
}

.bento-card-stat-dark .stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(to right, #54BA5D, #a0f0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.bento-card-stat-dark .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
}

.bento-card-stat-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(84, 186, 93, 0.55);
  box-shadow: 0 25px 50px rgba(84, 186, 93, 0.2);
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  height: 500px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -30px;
  right: 0;
  padding: 2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 200px;
}

.about-img-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-dark-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.about-feat-item i {
  color: var(--color-green);
  font-size: 1.25rem;
}

/* Product Categories cards with 3D hover */
.category-card {
  perspective: 1000px;
  cursor: pointer;
}

.category-card-inner {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 480px;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.category-card-top h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.category-card-features {
  margin: 1.5rem 0;
}

.category-card-features li {
  font-size: 0.85rem;
  color: var(--color-dark-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-card-features li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: bold;
}

.category-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin: 1rem 0;
  transition: var(--transition-normal);
}

.category-card:hover .category-card-img {
  transform: scale(1.1) translateZ(30px);
}

.category-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Interactive Product Showcase Layout */
.showcase-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-tab-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.showcase-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.showcase-tab-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
  border-color: rgba(73, 149, 209, 0.25);
  box-shadow: 0 10px 20px rgba(18, 19, 26, 0.02);
}

.showcase-tab-btn.active {
  background: var(--color-light);
  border-color: rgba(73, 149, 209, 0.3);
  box-shadow: 0 15px 30px rgba(18, 19, 26, 0.05);
  transform: translateX(8px);
}

.showcase-tab-btn.active::before {
  transform: scaleY(1);
}

.showcase-tab-icon {
  font-size: 1.75rem;
  color: var(--color-dark-light);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-sm);
}

.showcase-tab-btn.active .showcase-tab-icon {
  background: rgba(84, 186, 93, 0.1);
  color: var(--color-green);
}

.showcase-tab-btn:nth-child(even).active .showcase-tab-icon {
  background: rgba(73, 149, 209, 0.1);
  color: var(--color-blue);
}

.showcase-tab-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-tab-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.showcase-tab-info span {
  font-size: 0.75rem;
  color: var(--color-dark-light);
}

.showcase-panels-container {
  position: relative;
  min-height: 520px;
}

.showcase-panel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
}

.showcase-panel-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Animations for Panel Entry */
.showcase-panel-item.active .bento-image-bg {
  animation: showcaseKenBurns 10s ease-out forwards;
}

@keyframes showcaseKenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.showcase-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 3.5rem 3rem;
  position: relative;
  z-index: 3;
}

.showcase-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.showcase-panel-header {
  max-width: 70%;
}

.showcase-panel-header h4 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.showcase-panel-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

.showcase-panel-features {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 80%;
}

.showcase-panel-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.showcase-panel-features li i {
  color: var(--color-green);
  font-size: 1.15rem;
}

.showcase-panel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.75rem;
  margin-top: auto;
}

.showcase-panel-codes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-panel-codes span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-panel-codes strong {
  font-size: 1.15rem;
  color: var(--color-light);
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Why Bycrete Premium Cards */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  padding: 3rem 2rem;
  text-align: center;
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-primary);
  color: white;
  margin: 0 auto 2rem;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(84, 186, 93, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--color-dark-light);
  font-size: 0.95rem;
}

/* Manufacturing Excellence Full-Width Section */
.mfg-section {
  background: var(--gradient-dark);
  color: var(--color-light);
  overflow: hidden;
}

.mfg-section .section-title {
  color: var(--color-light);
}

.mfg-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.mfg-split {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

.mfg-content-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mfg-item {
  display: flex;
  gap: 1.5rem;
}

.mfg-item-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-green);
  opacity: 0.7;
}

.mfg-item-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.mfg-item-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.mfg-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.mfg-gallery-img {
  height: 250px;
  border-radius: var(--border-radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.mfg-gallery-img:nth-child(even) {
  transform: translateY(30px);
}

.mfg-gallery-img:hover {
  transform: scale(1.05) translateY(0);
}

/* Industries Served Overlay Grid */
.industry-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.industry-card {
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--color-dark);
}

.industry-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 19, 26, 0.1) 40%, rgba(18, 19, 26, 0.8) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.08);
}

.industry-drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 19, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.75rem;
  transform: translateY(calc(100% - 82px));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  color: white;
  display: flex;
  flex-direction: column;
}

.industry-card:hover .industry-drawer {
  transform: translateY(0);
}

.industry-drawer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 48px;
  margin-bottom: 1.25rem;
}

.industry-drawer-header i {
  font-size: 1.75rem;
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-drawer-header i {
  transform: scale(1.08) rotate(3deg);
}

.industry-drawer-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-heading);
}

.industry-drawer-body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover .industry-drawer-body {
  opacity: 1;
  transition-delay: 0.1s;
}

.industry-drawer-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.industry-drawer-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.industry-drawer-body li {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.industry-drawer-body li i {
  color: var(--color-green);
  font-size: 0.95rem;
}

/* Bycrete Infracon Segment */
.infracon-section {
  background: var(--color-bg-secondary);
}

.infracon-split {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}

.infracon-service-list {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.infracon-service-item {
  padding: 1.25rem;
  border-left: 4px solid var(--color-green);
}

.infracon-service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.infracon-service-item p {
  font-size: 0.9rem;
  color: var(--color-dark-light);
}

/* Certifications Slider */
.certs-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  position: relative;
}

.certs-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (200px + 3rem) * 4)); }
}

.cert-slide {
  width: 220px;
  height: 140px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition-fast);
}

.cert-slide:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.cert-slide i {
  font-size: 2.5rem;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.cert-slide p {
  font-size: 0.8rem;
  font-weight: 700;
}

/* Dealer Network */
.dealer-split {
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.dealer-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.dealer-filters .form-group {
  margin-bottom: 0;
  flex: 1;
}

.dealer-filters select {
  width: 100%;
}

.dealer-cta-wrap {
  margin-top: 2rem;
}

.dealer-cta-btn {
  display: inline-block;
}

.map-container {
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  position: relative;
  min-height: 450px;
}

.map-svg-mock {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.map-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-green);
  border: 3px solid var(--color-light);
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.map-marker::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-green);
  border-radius: var(--border-radius-full);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.map-marker:hover {
  transform: scale(1.3);
  background: var(--color-blue);
}

.map-tooltip {
  position: absolute;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

/* Blog Summary list */
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-dark-light);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Universal CTA & Forms */
.cta-section {
  padding: 6rem 0;
  background: var(--color-light);
  position: relative;
  z-index: 5;
}

.cta-wrapper-card {
  position: relative;
  background: linear-gradient(135deg, #0f1015 0%, #151821 100%);
  border-radius: var(--border-radius-lg);
  padding: 4.5rem 5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
}

.cta-wrapper-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 186, 93, 0.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.cta-wrapper-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 149, 209, 0.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.cta-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(84, 186, 93, 0.1);
  border: 1px solid rgba(84, 186, 93, 0.2);
  color: var(--color-green);
  padding: 0.4rem 1.1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 10px var(--color-green);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(84, 186, 93, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(84, 186, 93, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(84, 186, 93, 0);
  }
}

.cta-heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-light) !important;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  font-family: var(--font-heading);
}

.cta-heading span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  margin: 0;
}

.cta-actions-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-light) !important;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(84, 186, 93, 0.28);
  transition: var(--transition-normal);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(73, 149, 209, 0.4);
  background: linear-gradient(135deg, #4995D1 0%, #4CA1A8 40%, #4FAC87 60%, #54BA5D 100%);
}

.cta-secondary-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: var(--border-radius-md);
  background: rgba(37, 211, 102, 0.08);
  color: #25d366 !important;
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-cta-whatsapp:hover {
  background: #25d366;
  color: var(--color-light) !important;
  border-color: #25d366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-light) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-cta-phone:hover {
  background: var(--color-light);
  color: var(--color-dark) !important;
  border-color: var(--color-light);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Premium About Section Grid Layouts (Desktop) */
.premium-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.premium-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .cta-content-column {
    align-items: center;
    text-align: center;
  }
  
  .cta-wrapper-card {
    padding: 3.5rem 2.5rem;
  }
  
  .cta-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .cta-secondary-buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Footer Section */
.footer {
  background: #1A1C1D;
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 2rem;
  border-top: 5px solid var(--color-green);
}

.footer-top {
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4rem;
}

.footer-brand .logo-text {
  color: var(--color-light);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.footer-col h3 {
  color: var(--color-light);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  letter-spacing: 1px;
}

.footer-col li {
  margin-bottom: 1rem;
}

.footer-col a {
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-green);
  padding-left: 5px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-info i {
  color: var(--color-blue);
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-light);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

/* Modern Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-blue);
  background: var(--color-light);
  box-shadow: 0 0 0 3px rgba(73, 149, 209, 0.15);
}

/* Products Catalog Filtering & Page styles */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.filters-sidebar {
  padding: 2rem;
}

.filter-section {
  margin-bottom: 2.5rem;
}

.filter-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-dark-light);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-green);
}

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

.product-item-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card-badge {
  background: var(--color-bg-secondary);
  color: var(--color-blue);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  align-self: flex-start;
  margin-bottom: 1rem;
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--color-dark-light);
  margin-bottom: 1.5rem;
}

.product-card-specs {
  font-size: 0.8rem;
  background: var(--color-bg-secondary);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
}

.product-card-specs p {
  margin-bottom: 0.25rem;
}

.product-card-specs p span {
  font-weight: 700;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Search bar header */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47,49,51,0.98);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.search-box-wrap {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(255,255,255,0.2);
  color: var(--color-light);
  font-size: 2rem;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-weight: 700;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-green);
}

.search-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* About Page Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--color-border);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-container {
  padding: 1rem 3rem;
  position: relative;
  background: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: var(--color-light);
  border: 4px solid var(--color-green);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 2rem;
  background: var(--color-bg-secondary);
  position: relative;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
}

.timeline-date {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

/* Before / After Slider for Services */
.slider-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slider-img-after {
  z-index: 1;
}

.slider-img-before {
  z-index: 2;
  width: 50%; /* Initial state split */
  border-right: 4px solid var(--color-light);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  margin-top: auto;
  margin-bottom: auto;
  background: var(--gradient-primary);
  border: 4px solid white;
  border-radius: 50%;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: ew-resize;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Careers open positions */
.job-card {
  padding: 2rem;
  border-left: 6px solid var(--color-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-dark-light);
}

/* Certificate Download Items */
.cert-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cert-gallery-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.cert-gallery-card i {
  font-size: 3.5rem;
  color: #ff4757;
  margin-bottom: 1.5rem;
}

.cert-gallery-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Interactive Product Finder Wizard */
.finder-split-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.finder-sidebar {
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--color-bg-secondary) 0%, rgba(255, 255, 255, 0.5) 100%);
  display: flex;
  flex-direction: column;
}

.finder-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blue);
  color: var(--color-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(73, 149, 209, 0.3);
}

.finder-sidebar h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.finder-sidebar p {
  font-size: 0.95rem;
  color: var(--color-dark-light);
  margin-bottom: 2.5rem;
}

.finder-progress {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
  transition: var(--transition-normal);
}

.progress-step.active {
  opacity: 1;
  font-weight: 700;
}

.progress-step.completed {
  opacity: 0.8;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.progress-step.active .step-circle {
  background: var(--color-green);
  color: var(--color-light);
  box-shadow: 0 0 10px rgba(84, 186, 93, 0.4);
}

.progress-step.completed .step-circle {
  background: var(--color-blue);
  color: var(--color-light);
}

.finder-wizard {
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finder-step {
  display: none;
  animation: fadeSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.finder-step.active {
  display: block;
}

.step-question {
  text-align: center;
  font-size: 1.65rem;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.finder-opt {
  padding: 1.75rem 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
  background: var(--color-light);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.finder-opt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(84, 186, 93, 0.4);
}

.finder-opt.selected {
  border-color: var(--color-green);
  background: rgba(84, 186, 93, 0.03);
  box-shadow: 0 8px 25px rgba(84, 186, 93, 0.15);
}

.opt-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--color-blue);
  transition: var(--transition-fast);
}

.finder-opt.selected .opt-icon {
  color: var(--color-green);
}

.opt-label {
  font-size: 1.05rem;
  color: var(--color-dark);
}

.opt-check {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.finder-opt.selected .opt-check {
  opacity: 1;
  transform: scale(1);
}

.finder-nav {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.finder-result-card {
  padding: 2.5rem;
  text-align: center;
}

.finder-result-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .finder-split-layout {
    grid-template-columns: 1fr;
  }
  .finder-progress {
    flex-direction: row;
    justify-content: center;
  }
  .finder-sidebar p { margin-bottom: 1rem; }
}

@media (max-width: 576px) {
  .finder-options { grid-template-columns: 1fr; }
  .finder-wizard {
    padding: 1.5rem 1.25rem !important;
    min-height: auto !important;
  }
  .finder-sidebar {
    padding: 2rem 1.25rem !important;
  }
  .step-question {
    font-size: 1.25rem !important;
    margin-bottom: 1.5rem !important;
  }
  .finder-opt {
    padding: 1.25rem 1rem !important;
  }
  .progress-step span {
    display: none !important;
  }
  .finder-progress {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1.5rem !important;
  }
  .finder-result-card {
    padding: 1.5rem 1.25rem !important;
  }
  .finder-result-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .finder-result-actions .btn {
    width: 100% !important;
    margin: 0 !important;
  }
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .nav-menu { gap: 1.25rem; }
  .mega-menu {
    width: 960px;
    grid-template-columns: repeat(3, 1fr) 230px;
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 70px;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .menu-btn { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 1.5rem 1rem 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nav-item:hover .mega-menu {
    display: grid;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  
  .mega-menu-promo {
    display: none;
  }
  
  .grid-5, .grid-4, .grid-3, .why-grid, .industry-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
  }
  
  .stat-card:last-child {
    border-bottom: none;
  }
  
  .about-split, .mfg-split, .infracon-split, .dealer-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-img-main {
    width: 100%;
  }
  
  .mfg-gallery-img:nth-child(even) {
    transform: none;
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }

  /* Bento Grid Responsive overrides */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .bento-card {
    grid-column: span 1 / span 1 !important;
    padding: 2.5rem 2rem;
  }

  .bento-card-image {
    min-height: 320px;
  }

  /* Product Showcase Responsive overrides */
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .showcase-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    gap: 0.75rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  
  .showcase-tab-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 1rem 1.25rem;
  }
  
  .showcase-tab-btn::before {
    display: none;
  }
  
  .showcase-tab-btn.active {
    transform: none;
    background: var(--gradient-primary);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(84, 186, 93, 0.15);
  }

  .showcase-tab-btn.active h3 {
    color: white !important;
  }

  .showcase-tab-btn.active span {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .showcase-tab-btn.active .showcase-tab-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
  }
  
  .showcase-panels-container {
    min-height: 480px;
  }
  
  .showcase-panel-content {
    padding: 2.5rem 2rem;
  }
  
  .showcase-panel-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section-padding { padding: 3.5rem 0; }
  .section-title { font-size: 2.25rem; }
  
  .hero-headline { font-size: 2.25rem; letter-spacing: -0.5px; line-height: 1.2; }
  .hero-subheadline { font-size: 1.05rem; margin-bottom: 1.75rem; }
  
  .hero .container {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-slider-nav {
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
  .hero-nav-title {
    font-size: 0.72rem;
    letter-spacing: 0px;
  }
  .hero-nav-number {
    font-size: 0.75rem;
  }

  .nav-actions .btn {
    display: none !important;
  }
  
  .grid-5, .grid-4, .grid-3, .grid-2, .products-grid, .stats-grid, .why-grid, .industry-grid, .blog-grid {
    grid-template-columns: 1fr !important;
  }
  
  .grid {
    gap: 1.5rem !important;
  }

  .why-card {
    padding: 2rem 1.5rem !important;
  }
  .blog-card-content {
    padding: 1.5rem !important;
  }

  /* Custom grids from index.html premium about section */
  .premium-about-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .premium-about-features {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .about-img-main {
    width: 100%;
  }

  .vm-pane {
    padding: 2.5rem 1.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .compare-drawer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-container::after {
    left: 21px;
  }
  
  .timeline-right {
    left: 0%;
  }

  /* Industry Showcase Mobile Overrides */
  .industry-card {
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--color-light) !important;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
  }
  .industry-card-bg {
    position: relative;
    height: 200px;
    width: 100%;
    z-index: 1;
  }
  .industry-card::before {
    display: none !important;
  }
  .industry-drawer {
    position: static;
    transform: none !important;
    background: transparent !important;
    padding: 1.5rem;
    color: var(--color-dark) !important;
    border: none !important;
  }
  .industry-drawer-header {
    height: auto;
    margin-bottom: 0.75rem;
  }
  .industry-drawer-header i {
    background: rgba(84, 186, 93, 0.1) !important;
    color: var(--color-green) !important;
  }
  .industry-drawer-header h3 {
    color: var(--color-dark) !important;
  }
  .industry-drawer-body {
    opacity: 1 !important;
  }
  .industry-drawer-body p {
    color: var(--color-dark-light) !important;
    margin-bottom: 1rem;
  }
  .industry-drawer-body li {
    color: var(--color-dark) !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .map-container {
    min-height: 320px !important;
    padding: 1rem !important;
  }
  .map-svg-mock {
    min-height: 300px !important;
  }
  .dealer-filters {
    flex-direction: column;
    gap: 0.75rem;
  }
  .dealer-cta-btn {
    width: 100% !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid-5, .grid-4, .grid-3, .grid-2, .products-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .cert-gallery-grid {
    grid-template-columns: 1fr;
  }
  .slider-container {
    height: 300px;
  }
}

/* Animations classes */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* 2026 Premium Gradient Glow Containers */
.glow-container {
  position: relative;
  z-index: 1;
}

.glow-container::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 186, 93, 0.08) 0%, rgba(73, 149, 209, 0.05) 50%, transparent 100%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glow-container-left::before {
  left: 20%;
  background: radial-gradient(circle, rgba(84, 186, 93, 0.09) 0%, transparent 80%);
}

.glow-container-right::before {
  left: auto;
  right: 20%;
  background: radial-gradient(circle, rgba(73, 149, 209, 0.09) 0%, transparent 80%);
}

/* Modern Card Interactions */
.category-card:hover {
  border-color: rgba(84, 186, 93, 0.35);
  box-shadow: 0 30px 60px rgba(84, 186, 93, 0.06);
}

.why-card:hover .why-icon {
  transform: rotate(6deg) scale(1.06);
  box-shadow: 0 15px 30px rgba(73, 149, 209, 0.3);
}

/* Premium Products Catalog Custom Styles */

/* 1. Custom Branded Checkboxes */
.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.custom-checkbox {
  position: relative;
  padding-left: 2rem;
  user-select: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--color-bg-secondary);
  border: 1.5px solid rgba(18, 19, 26, 0.12);
  border-radius: 5px;
  transition: var(--transition-fast);
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--color-green);
  background: rgba(84, 186, 93, 0.05);
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--color-green);
  border-color: var(--color-green);
  box-shadow: 0 0 10px rgba(84, 186, 93, 0.25);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.custom-checkbox .checkmark::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .filter-option {
  color: var(--color-dark);
}

/* 2. Catalog Action Bar & Search Console */
.catalog-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-secondary);
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  gap: 2rem;
}

.search-filter-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 580px;
}

.search-filter-wrap .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-blue);
  font-size: 1rem;
}

.search-filter-wrap .form-control {
  padding-left: 3rem;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: var(--color-light);
  border: 1.5px solid rgba(18, 19, 26, 0.08);
  font-weight: 500;
  width: 100%;
}

.search-filter-wrap .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(73, 149, 209, 0.15);
}

.view-toggles {
  display: flex;
  gap: 0.5rem;
  background: rgba(18, 19, 26, 0.04);
  padding: 0.35rem;
  border-radius: 8px;
}

.view-toggle-btn {
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-light);
  font-size: 1.05rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.view-toggle-btn:hover {
  color: var(--color-blue);
  background: var(--color-light);
}

.view-toggle-btn.active {
  background: var(--color-light);
  color: var(--color-blue);
  box-shadow: var(--shadow-sm);
}

/* 3. Upgraded Product Cards (Grid Mode) */
.product-item-card {
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  background: var(--color-light);
}

.product-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(73, 149, 209, 0.35);
  box-shadow: var(--shadow-lg);
}

.product-card-media {
  position: relative;
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 19, 26, 0.05);
  z-index: 1;
}

.product-media-img {
  max-height: 160px;
  max-width: 85%;
  width: auto;
  object-fit: contain;
  z-index: 3;
  transition: var(--transition-normal);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.product-item-card:hover .product-media-img {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.22));
}

.product-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(18, 19, 26, 0.04);
  letter-spacing: -2px;
  pointer-events: none;
  z-index: 2;
  bottom: 10px;
  right: 15px;
  text-transform: uppercase;
}

.product-tech-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  background: rgba(18, 19, 26, 0.78);
  color: var(--color-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 3;
}

/* E-commerce Compare Badge Overlay */
.card-compare-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-compare-badge:hover {
  background: var(--color-light);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-sm);
}

.card-compare-badge input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: var(--color-blue);
}

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

/* Product Card Sizing & Stock status row */
.product-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  color: var(--color-dark-light);
  font-weight: 600;
}

.meta-pkg i {
  color: var(--color-blue);
  margin-right: 0.35rem;
}

.meta-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--color-success);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  display: inline-block;
  animation: pulse-status 1.8s infinite;
}

@keyframes pulse-status {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.product-card-title-desc {
  display: flex;
  flex-direction: column;
}

.product-item-card .product-card-badge {
  background: rgba(73, 149, 209, 0.08);
  color: var(--color-blue);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-full);
  align-self: flex-start;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-item-card[data-cat="tile-grouts"] .product-card-badge,
.product-item-card[data-cat="epoxy-grouts"] .product-card-badge {
  background: rgba(84, 186, 93, 0.08);
  color: var(--color-green);
}

.product-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.product-card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-dark-light);
  margin-bottom: 1.25rem;
  min-height: 64px; /* Ensure uniform spacing for descriptions */
}

/* 2x2 Specs Grid */
.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  background: var(--color-bg-secondary);
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(18, 19, 26, 0.04);
  margin-bottom: 1.25rem;
}

.spec-grid-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-grid-label {
  font-size: 0.7rem;
  color: var(--color-dark-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.spec-grid-label i {
  color: var(--color-blue);
  font-size: 0.72rem;
  width: 12px;
}

.spec-grid-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-dark);
  word-break: break-word;
}

.product-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-dark-light);
  background: rgba(18, 19, 26, 0.04);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.feature-tag i {
  color: var(--color-green);
  font-size: 0.65rem;
}

/* E-commerce B2B Buttons */
.product-item-card .product-card-actions {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-light) !important;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(84, 186, 93, 0.16);
  transition: var(--transition-normal);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(73, 149, 209, 0.35);
  background: linear-gradient(135deg, #4995D1 0%, #4CA1A8 40%, #4FAC87 60%, #54BA5D 100%);
}

.btn-cta-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue) !important;
  background: transparent;
  border: 1.5px solid rgba(73, 149, 209, 0.3);
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
}

.btn-cta-sample:hover {
  background: rgba(73, 149, 209, 0.05);
  border-color: var(--color-blue);
  transform: translateY(-1px);
}

/* 4. Horizontal Technical Row (List Mode Overrides) */
.products-grid.list-view-active {
  grid-template-columns: 1fr !important;
  gap: 1.25rem;
}

.products-grid.list-view-active .product-item-card {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem !important;
  height: auto;
}

.products-grid.list-view-active .product-item-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.products-grid.list-view-active .product-card-media {
  width: 130px;
  height: 130px;
  min-height: 130px;
  margin-bottom: 0;
  flex-shrink: 0;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(18, 19, 26, 0.05);
}

.products-grid.list-view-active .product-media-img {
  max-height: 110px;
}

.products-grid.list-view-active .product-watermark {
  display: none;
}

.products-grid.list-view-active .product-tech-tag {
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  top: 8px;
  right: 8px;
}

.products-grid.list-view-active .card-compare-badge {
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
}

.products-grid.list-view-active .product-card-body {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
}

.products-grid.list-view-active .product-card-title-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-grid.list-view-active .product-card-meta-row {
  display: none; /* Hide e-comm meta row in list view */
}

.products-grid.list-view-active .product-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.products-grid.list-view-active .product-card-desc {
  margin-bottom: 0;
  height: auto;
  min-height: 0; /* Reset min-height for horizontal row layout */
}

.products-grid.list-view-active .product-card-badge {
  display: none;
}

.products-grid.list-view-active .product-specs-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: transparent;
  padding: 0;
  border: none;
  margin-bottom: 0;
}

.products-grid.list-view-active .spec-grid-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.products-grid.list-view-active .spec-grid-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-grid.list-view-active .spec-grid-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-dark);
  text-align: left;
}

.products-grid.list-view-active .product-card-features {
  display: none;
}

.products-grid.list-view-active .product-card-actions {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 170px;
  flex-shrink: 0;
}

.products-grid.list-view-active .product-card-actions .btn {
  width: 100%;
}

/* 5. Responsive Controls for Catalog */
@media (max-width: 1200px) {
  .products-grid.list-view-active .product-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .products-grid.list-view-active .product-card-specs {
    justify-content: flex-start;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .catalog-action-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .search-filter-wrap {
    max-width: 100%;
  }
  
  .view-toggles {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  /* Disable List View on Smaller Viewports entirely */
  .view-toggles {
    display: none !important;
  }
  
  .products-grid {
    grid-template-columns: 1fr !important;
  }
  
  .products-grid.list-view-active .product-item-card {
    flex-direction: column;
    align-items: stretch;
    padding: 0 !important;
  }
  
  .products-grid.list-view-active .product-card-media {
    width: 100%;
    height: 200px;
    border-radius: 0;
  }
  
  .products-grid.list-view-active .product-card-body {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.5rem;
  }
  
  .products-grid.list-view-active .product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    background: var(--color-bg-secondary);
    padding: 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(18, 19, 26, 0.04);
    margin-bottom: 1.25rem;
  }
  
  .products-grid.list-view-active .spec-grid-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .products-grid.list-view-active .product-card-actions {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .product-card-desc {
    height: auto;
  }
}

/* Responsive Contacts & Clickable Footer Links */
.footer-contact-info a {
  color: inherit;
  transition: var(--transition-fast);
  word-break: break-all;
}

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

.contact-quick-connect {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 576px) {
  .contact-quick-connect {
    grid-template-columns: 1fr;
  }
}

/* Mega Menu Product Finder Button Hover contrast fix */
.btn-promo-finder {
  background: var(--color-green);
  color: var(--color-light);
  border-color: var(--color-green);
  box-shadow: 0 4px 15px rgba(84, 186, 93, 0.3);
}

.btn-promo-finder:hover {
  color: var(--color-dark) !important;
  background: var(--color-light) !important;
  border-color: var(--color-light) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

/* Global Link Responsiveness */
a[href^="mailto:"], a[href^="tel:"] {
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* ==========================================================================
   About Us - Advanced Redesign
   ========================================================================== */

/* 1. Hero Banner */
.about-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 16, 21, 0.95) 0%, rgba(21, 24, 33, 0.8) 100%);
}
.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title {
  color: white;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 1.5rem 0;
}
.text-gradient-green {
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-green);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 2. Bento Grid Overview */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.bento-card {
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  background: var(--color-light);
  box-shadow: var(--shadow-md);
  position: relative;
}
.bento-main {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
}
.bento-image {
  grid-column: 3;
  grid-row: 1;
  height: 190px;
}
.bento-image:hover img {
  transform: scale(1.05);
}
.bento-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.bento-highlight-wrap {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.bento-highlight {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


/* 3. Vision & Mission Interlocking Cards */
.vm-split-card {
  display: flex;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: var(--color-light);
}
.vm-pane {
  flex: 1;
  padding: 4rem;
  position: relative;
}
.vm-vision {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #ffffff 100%);
  border-right: 1px solid var(--color-border);
}
.vm-mission {
  background: linear-gradient(135deg, #1a1e29 0%, var(--color-dark) 100%);
  color: var(--color-light);
}
.vm-mission h3 {
  color: var(--color-light) !important;
}
.vm-mission p {
  color: rgba(255,255,255,0.85) !important;
}
.vm-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.vm-vision .vm-icon {
  background: rgba(84, 186, 93, 0.15);
  color: var(--color-green);
}
.vm-mission .vm-icon {
  background: rgba(73, 149, 209, 0.15);
  color: var(--color-blue);
  box-shadow: 0 0 20px rgba(73, 149, 209, 0.2);
}

/* 4. Advanced Timeline */
.adv-timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding-left: 3rem;
}
.adv-timeline-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-green) 0%, var(--color-blue) 100%);
  border-radius: 3px;
}
.adv-timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.adv-timeline-item:last-child {
  margin-bottom: 0;
}
.adv-timeline-node {
  position: absolute;
  left: -3rem;
  top: 1.5rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--color-light);
  border: 4px solid var(--color-green);
  box-shadow: 0 0 0 5px rgba(84, 186, 93, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}
.adv-timeline-item:hover .adv-timeline-node {
  background: var(--color-green);
  box-shadow: 0 0 15px rgba(84, 186, 93, 0.6);
}
.adv-timeline-content {
  padding: 2rem;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.adv-timeline-item:hover .adv-timeline-content {
  transform: translateX(10px);
  border-left-color: var(--color-green);
}
.adv-timeline-date {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-green);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

/* 5. Core Values Hover Cards */
.value-card-advanced {
  background: var(--color-light);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.value-card-advanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(84,186,93,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.value-card-advanced:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(84, 186, 93, 0.3);
}
.value-card-advanced:hover::before {
  opacity: 1;
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-dark);
  transition: all 0.4s ease;
}
.value-card-advanced:hover .value-icon {
  background: var(--color-green);
  color: var(--color-light);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(84,186,93,0.3);
}
.value-card-advanced h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.value-card-advanced p {
  font-size: 0.9rem;
  color: var(--color-dark-light);
}

/* 6. Leadership Profile Cards */
.leader-card-advanced {
  background: var(--color-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}
.leader-card-advanced:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.leader-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.leader-card-advanced:hover .leader-img-wrap img {
  transform: scale(1.05);
}
.leader-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.leader-card-advanced:hover .leader-social {
  opacity: 1;
  transform: translateY(0);
}
.leader-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.leader-social a:hover {
  background: var(--color-green);
}
.leader-info {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}
.leader-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.leader-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}
.leader-info p {
  font-size: 0.95rem;
  color: var(--color-dark-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-main { grid-column: 1; grid-row: 1; }
  .bento-image { grid-column: 1; grid-row: 2; }
  .bento-highlight { grid-column: 1; grid-row: 3; }
  
  .vm-split-card {
    flex-direction: column;
  }
  .vm-vision {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  
  .hero-title { font-size: 3.5rem; }
  .hero-stats-row { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats-row { flex-direction: column; gap: 1.5rem; }
  .adv-timeline { padding-left: 2rem; }
  .adv-timeline-node { left: -2rem; width: 20px; height: 20px; }
  .adv-timeline-line { left: 8px; }
}

/* ==========================================================================
   Premium Quote Modal Redesign
   ========================================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 21, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem;
}

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

.quote-modal-split {
  display: flex;
  background: var(--color-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.quote-modal-overlay.active .quote-modal-split {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.quote-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.quote-close-btn:hover {
  background: var(--color-accent);
  color: var(--color-light);
  transform: rotate(90deg);
}

.quote-modal-sidebar {
  flex: 0 0 35%;
  background: linear-gradient(135deg, #1a1e29 0%, var(--color-dark) 100%);
  color: var(--color-light);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.quote-modal-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.quote-sidebar-content {
  position: relative;
  z-index: 1;
}

.quote-sidebar-title {
  font-size: 1.5rem;
  color: var(--color-light);
  margin-bottom: 1rem;
}

.quote-sidebar-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quote-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.trust-badge i {
  font-size: 1.25rem;
}

.quote-modal-form-pane {
  flex: 1;
  padding: 3rem;
  background: var(--color-light);
}

.quote-form-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

/* Floating Labels */
.form-floating {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating .form-control {
  height: auto;
  padding: 1rem 1rem 1rem 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.form-floating .form-control:focus {
  border-bottom-color: var(--color-green);
}

.form-floating label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: var(--color-dark-light);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left top;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  transform: translateY(-1.25rem) scale(0.85);
  color: var(--color-green);
}

.quote-submit-btn {
  padding: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(84, 186, 93, 0.3);
}

@media (max-width: 768px) {
  .quote-modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 1rem;
  }
  .quote-modal-split {
    flex-direction: column;
    margin: 0 auto;
  }
  .quote-modal-sidebar {
    flex: none;
    padding: 2rem;
  }
  .quote-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
  }
  .trust-badge {
    font-size: 0.85rem;
  }
  .quote-modal-form-pane {
    padding: 2rem;
  }
}

/* ==========================================================================
   Premium About Section Overhaul
   ========================================================================== */
.about-composition-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 0 auto;
}

.about-img-primary {
  width: 82%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img-secondary {
  width: 50%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-composition-wrap:hover .about-img-primary {
  transform: scale(1.03) translate(-5px, -5px);
}

.about-composition-wrap:hover .about-img-secondary {
  transform: scale(1.05) translate(8px, 8px) rotate(1deg);
}

.about-legacy-badge {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 2.25rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(84, 186, 93, 0.12);
  border: 1px solid rgba(84, 186, 93, 0.25);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.about-legacy-badge .badge-num {
  font-size: 3.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-align: center;
}

.about-legacy-badge .badge-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
  text-align: center;
}

/* Feature cards */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(84, 186, 93, 0.05) 0%, rgba(73, 149, 209, 0.05) 100%);
  border-color: rgba(84, 186, 93, 0.2);
  box-shadow: 0 12px 30px rgba(84, 186, 93, 0.08);
}

.about-feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.4s ease;
}

.about-feature-card:hover .about-feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.icon-wrap-green {
  background: rgba(84, 186, 93, 0.12);
  color: var(--color-green);
}

.icon-wrap-blue {
  background: rgba(73, 149, 209, 0.12);
  color: var(--color-blue);
}

.about-feature-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-dark);
}

/* Discover Button */
.about-discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: white !important;
  box-shadow: 0 10px 25px rgba(84, 186, 93, 0.22);
  transition: all 0.3s ease;
}

.about-discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(84, 186, 93, 0.35);
}

.about-discover-btn i {
  transition: transform 0.3s ease;
}

.about-discover-btn:hover i {
  transform: translateX(5px);
}

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

@media (max-width: 992px) {
  .about-composition-wrap {
    height: 400px;
  }
  .about-img-primary {
    height: 320px;
  }
  .about-img-secondary {
    height: 200px;
  }
  .about-legacy-badge {
    left: 0;
    bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-composition-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .about-img-primary, .about-img-secondary {
    position: static;
    width: 100%;
    height: 240px;
    border-radius: 16px;
    transform: none !important;
  }
  .about-img-secondary {
    border: 1px solid var(--color-border);
  }
  .about-legacy-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 1rem auto 0;
    max-width: 260px;
    animation: none;
  }
  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }


}


