/* =================================================================
   SMART POWER SYSTEMS - CORPORATE 2026 DESIGN
   Professional, Clean, Corporate Look with Parallax & Mega Menu
   ================================================================= */

 /* Hide floating menu button on desktop - only show on mobile */
 @media (min-width: 769px) {
   .floating-menu-toggle {
     display: none !important;
   }
 }

 /* Also hide any elements that should only be on mobile */
 @media (min-width: 769px) {
   .mobile-only {
     display: none !important;
   }
 }
 
/* Desktop Navigation - simple plain text */
@media (min-width: 769px) {
  .nav-desc {
    display: none !important;
  }
  .nav-link div {
    display: inline !important;
  }
  .nav-link i {
    display: none !important;
  }
  .main-nav a {
    padding: 8px 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }
}

:root {
  --color-primary: #1B3A8C;
  --color-primary-dark: #0A1E4A;
  --color-neon-blue: #00D2FF;
  --color-glass: rgba(255, 255, 255, 0.75);
  --color-accent-red: #CC1F28;
  --color-accent-yellow: #F5D000;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-dark: #0A1628;
  --color-text: #1E293B;
  --color-text-light: #64748B;
  --color-text-muted: #94A3B8;
  --color-border: #E2E8F0;
  --font-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --font-body: clamp(1rem, 0.5vw + 0.8rem, 1.125rem);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-blue: 0 10px 40px rgba(27, 58, 140, 0.2);
  --shadow-glow: 0 0 30px rgba(27, 58, 140, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-2026: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--font-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: var(--font-h1); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); }
h4 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }
h5 { font-size: clamp(1.1rem, 1vw + 0.5rem, 1.25rem); }
h6 { font-size: clamp(1rem, 0.5vw + 0.5rem, 1.125rem); }

p { margin-bottom: 16px; }

.section {
  padding: 60px 0;
  background: var(--color-bg);
  position: relative;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: #fff;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER - Sticky with Transparent to Solid
   ============================================ */
.site-header {
  background: var(--color-glass);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glass);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  transition: var(--transition-2026);
  overflow: visible;
}



.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
  height: 75px;
}



.site-header.dark {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(10px);
}

.site-header.dark .logo-title,
.site-header.dark .main-nav a,
.site-header.dark .header-call i,
.site-header.dark .header-email i {
  color: #fff;
}

.site-header.dark .logo-subtitle {
  color: rgba(255,255,255,0.6);
}

.site-header.dark .main-nav a:hover,
.site-header.dark .main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #F5D000;
}

.site-header.dark .header-call,
.site-header.dark .header-email {
  color: rgba(255,255,255,0.8);
}

.site-header.dark .header-cta {
  background: #CC1F28;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 75px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.scrolled .logo img {
  height: 60px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 800;
  color: #1B3A8C;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.logo-subtitle {
  font-size: 10px;
  color: #64748B;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.site-header.scrolled .logo-text {
  display: none;
}



/* ============================================
   MAIN NAVIGATION WITH MEGA MENU
   ============================================ */
.main-nav {
  position: relative;
}

.main-nav ul {
  display: flex;
  gap: 2px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  padding: 10px 16px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a:hover,
.main-nav a.active {
  background: #F0F4FF;
  color: #1B3A8C;
}

.main-nav a.has-dropdown::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  transition: var(--transition);
}

.main-nav li:hover > a.has-dropdown::after {
  transform: rotate(180deg);
}

/* ============================================
   CASCADING FLYOUT MENU
   ============================================ */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1001;
  pointer-events: none;
  padding: 8px;
  overflow: visible;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.main-nav li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Primary Menu Item */
.mega-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mega-menu-item:hover {
  background: #F0F4FF;
}

.mega-menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-item-title i {
  font-size: 14px;
  color: var(--color-primary);
  width: 18px;
  text-align: center;
}

.mega-menu-item-desc {
  font-size: 11px;
  color: #94A3B8;
  padding-left: 26px;
}

.mega-menu-item .arrow {
  font-size: 10px;
  color: #94A3B8;
  transition: transform 0.15s ease;
}

.mega-menu-item:hover .arrow {
  transform: translateX(2px);
  color: var(--color-primary);
}

/* Flyout Panel (Secondary Menu) */
.mega-flyout {
  position: absolute;
  left: calc(100% + 8px);
  top: -8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 1002;
}

.mega-flyout::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: transparent;
}

.mega-menu-item:hover > .mega-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* Flyout Links */
.mega-flyout a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #1E293B;
  font-weight: 500;
  transition: all 0.15s ease;
}

.mega-flyout a i {
  font-size: 12px;
  color: var(--color-primary);
  width: 16px;
  text-align: center;
}

.mega-flyout a:hover {
  background: #F0F4FF;
  color: var(--color-primary);
  padding-left: 18px;
}

.mega-flyout-header {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px 6px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 4px;
}









.mega-menu-column ul li {
  margin-bottom: 0;
}

.mega-menu-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #1E293B;
  font-weight: 500;
  transition: var(--transition-fast);
}

.mega-menu-column a:hover {
  background: #F0F4FF;
  color: #1B3A8C;
}

.mega-menu-column a i {
  width: 32px;
  height: 32px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1B3A8C;
  transition: var(--transition);
}

.mega-menu-column a:hover i {
  background: #1B3A8C;
  color: #F5D000;
}

/* Mega Menu Products - Nested Flyout System */
.mega-menu-products {
  width: 310px !important;
  min-width: 310px !important;
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-product-row {
  position: relative;
  border-radius: 10px;
}

/* Category Card */
.mega-menu-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: default;
}

.mega-menu-product-row:hover .mega-menu-product-card {
  background: rgba(27, 58, 140, 0.08);
}

.mega-product-icon {
  width: 38px;
  height: 38px;
  background: #F0F4FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1B3A8C;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-menu-product-row:hover .mega-product-icon {
  background: #1B3A8C;
  color: #F5D000;
}

.mega-product-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.mega-product-title {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.mega-product-desc {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.3;
}

.mega-product-arrow {
  font-size: 10px;
  color: #CBD5E1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mega-menu-product-row:hover .mega-product-arrow {
  color: #1B3A8C;
  transform: translateX(4px);
}

/* Mega Menu Solutions */
.mega-menu-solutions {
  width: 280px !important;
  min-width: 280px !important;
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-solution-row {
  position: relative;
  border-radius: 10px;
}

.mega-menu-solution-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: default;
}

.mega-menu-solution-row:hover .mega-menu-solution-card {
  background: rgba(27, 58, 140, 0.08);
}

.mega-solution-icon {
  width: 38px;
  height: 38px;
  background: #F0F4FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1B3A8C;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-menu-solution-row:hover .mega-solution-icon {
  background: #1B3A8C;
  color: #F5D000;
}

.mega-solution-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.mega-solution-title {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.mega-solution-desc {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.3;
}

.mega-solution-arrow {
  font-size: 10px;
  color: #CBD5E1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mega-menu-solution-row:hover .mega-solution-arrow {
  color: #1B3A8C;
  transform: translateX(4px);
}

/* Mega Menu Services */
.mega-menu-services {
  width: 280px !important;
  min-width: 280px !important;
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-service-row {
  position: relative;
  border-radius: 10px;
}

.mega-menu-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: default;
}

.mega-menu-service-row:hover .mega-menu-service-card {
  background: rgba(27, 58, 140, 0.08);
}

.mega-service-icon {
  width: 38px;
  height: 38px;
  background: #F0F4FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1B3A8C;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-menu-service-row:hover .mega-service-icon {
  background: #1B3A8C;
  color: #F5D000;
}

.mega-service-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.mega-service-title {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.mega-service-desc {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.3;
}

.mega-service-arrow {
  font-size: 10px;
  color: #CBD5E1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mega-menu-service-row:hover .mega-service-arrow {
  color: #1B3A8C;
  transform: translateX(4px);
}

/* Flyout Panel - Shared */
.mega-flyout {
  position: absolute;
  top: -8px;
  left: 100%;
  width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(27,58,140,0.06);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  pointer-events: none;
}

.mega-flyout::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -12px;
  width: 12px;
  background: transparent;
}

.mega-menu-product-row:hover > .mega-flyout,
.mega-menu-solution-row:hover > .mega-flyout,
.mega-menu-service-row:hover > .mega-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* Flyout Sections */
.flyout-section h5 {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid rgba(27,58,140,0.2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.flyout-section h5 i {
  font-size: 9px;
  color: #F5D000;
}

.flyout-divider {
  height: 1px;
  background: #E8ECF4;
  margin: 10px 0;
}

.flyout-link {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
  transition: all 0.15s ease;
}

.flyout-link i {
  margin-right: 6px;
  font-size: 11px;
  color: #94A3B8;
  transition: color 0.15s ease;
}

.flyout-link:hover {
  background: rgba(27,58,140,0.06);
  color: var(--color-primary);
  padding-left: 14px;
}

.flyout-link:hover i {
  color: var(--color-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-call,
.header-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748B;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.header-call:hover,
.header-email:hover {
  background: #F0F4FF;
  color: #1B3A8C;
}

.header-cta {
  background: #1B3A8C;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.header-cta:hover {
  background: #0f2240;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1B3A8C;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .main-nav,
  .header-actions {
    display: none;
  }
  .main-nav.active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.active ul {
    flex-direction: column;
  }
  
  
}

/* ============================================
   HERO SLIDESHOW SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1628;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.5);
}

.slide-dot.active {
  background: #F5D000;
  border-color: #F5D000;
  transform: scale(1.2);
}

.slide-dot:hover {
  background: rgba(255,255,255,0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.6) 0%, rgba(27,58,140,0.5) 100%);
  z-index: 1;
}

/* Parallax fallback */
.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-parallax-bg.loaded {
  opacity: 1;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text {
  max-width: 900px;
  width: 100%;
  transition: transform 0.1s ease-out;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  color: #F5D000;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: gradientPulse 3s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2), 0 0 40px rgba(27, 58, 140, 0.1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4), 0 0 60px rgba(27, 58, 140, 0.2);
  }
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}


@keyframes shimmer {
  100% { left: 100%; }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-text h1 span {
  color: #F5D000;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  max-width: 700px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.hero-stat h4 {
  font-size: 28px;
  font-weight: 700;
  color: #F5D000;
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}


/* ============================================
   BRAND HERO SECTION
   ============================================ */
.brand-hero {
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.brand-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.brand-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.brand-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.brand-hero .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.brand-hero .hero-buttons .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.brand-hero .hero-buttons .btn-primary {
  background: #CC1F28;
  color: #fff;
}

.brand-hero .hero-buttons .btn-primary:hover {
  background: #a01820;
  transform: translateY(-2px);
}

.brand-hero .hero-buttons .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.brand-hero .hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: #1B3A8C;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.btn:hover::after {
  width: 200px;
  height: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, #CC1F28 0%, #a01820 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(204, 31, 40, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b81d25 0%, #8a141b 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 31, 40, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #1B3A8C;
  border-color: #fff;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #1B3A8C;
}

.btn-secondary {
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(27, 58, 140, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2a5499 0%, #1B3A8C 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 58, 140, 0.4);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #fff;
  padding: 30px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1B3A8C 0%, #2a5499 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(27, 58, 140, 0.2);
}

.stat-icon i {
  font-size: 22px;
  color: #F5D000;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */


.section-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-yellow), var(--color-accent-red));
  margin: 20px auto 0;
  border-radius: 2px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(27, 58, 140, 0.1), rgba(27, 58, 140, 0.05));
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(27, 58, 140, 0.1);
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section-why {
  background: var(--color-bg-alt);
}

.section-brands {
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  padding: 50px 0;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1B3A8C;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
}

.product-content p {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 15px;
}

.product-features li {
  font-size: 12px;
  color: #64748B;
  padding: 4px 0;
}

.product-features li i {
  color: #22C55E;
  margin-right: 8px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1B3A8C;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.product-link:hover {
  gap: 10px;
}

/* ============================================
   CAPACITY GRID
   ============================================ */
.capacity-section {
  background: var(--color-bg-alt);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.capacity-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.capacity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.capacity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F5D000, #E5C000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.capacity-icon i {
  font-size: 24px;
  color: #1B3A8C;
}

.capacity-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 5px;
}

.capacity-card p {
  font-size: 12px;
  color: #64748B;
}

/* ============================================
   FEATURE CARDS - LIQUID GLASS DESIGN
   ============================================ */
.feature-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(27, 58, 140, 0.06);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(27, 58, 140, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.feature-image {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image img {
  transform: scale(1.06);
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 58, 140, 0.08) 100%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-image::after {
  background: linear-gradient(180deg, transparent 30%, rgba(27, 58, 140, 0.12) 100%);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -22px 0 12px 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(27, 58, 140, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(27, 58, 140, 0.28);
}

.feature-icon i {
  font-size: 18px;
  color: #fff;
}

.feature-card-content {
  padding: 0 18px 18px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 12px;
  transition: all 0.25s ease;
}

.feature-link:hover {
  gap: 8px;
  color: var(--color-primary-dark);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27, 58, 140, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image img {
  transform: scale(1.08);
}

.feature-image::after {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 58, 140, 0.05) 100%);
  pointer-events: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px 0 14px 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(27, 58, 140, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(27, 58, 140, 0.35);
}

.feature-icon i {
  font-size: 20px;
  color: #fff;
}

.feature-card-content {
  padding: 0 20px 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.feature-link:hover {
  gap: 10px;
  color: var(--color-primary-dark);
}

.feature-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-content {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(27, 58, 140, 0.3);
}

.feature-icon i {
  font-size: 24px;
  color: #fff;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.feature-link:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

.feature-link i {
  font-size: 12px;
  transition: var(--transition-fast);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 58, 140, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-image {
  margin: 0 0 25px 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2A5BD7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 28px;
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.feature-icon i {
  font-size: 28px;
  color: #fff;
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 58, 140, 0.1) 100%);
  pointer-events: none;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.feature-link:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

.feature-link i {
  font-size: 12px;
  transition: var(--transition-fast);
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-2026);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 350px;
  width: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-yellow));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue);
  border-color: var(--color-primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B3A8C 0%, #2a5499 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 24px;
  color: #F5D000;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   BRANDS GRID
   ============================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.brand-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.brand-card * {
  color: inherit;
}

.brand-card a {
  color: #1E293B;
  text-decoration: none;
  display: block;
}

.brand-card .brand-logo {
  font-size: 22px;
  font-weight: 800;
  color: #1B3A8C;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.brand-card .brand-type {
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
  font-weight: 500;
}

.brand-card .brand-range {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 4px;
}

.brand-card p {
  font-size: 12px;
  color: #64748B;
  margin-top: 10px;
  line-height: 1.5;
  margin-bottom: 0;
}

.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-yellow));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue);
  border-color: var(--color-primary);
}

.brand-card:hover::after {
  transform: scaleX(1);
}

/* ============================================
    INDUSTRIES GRID
    ============================================ */
.industry-grid,
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-yellow));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover,
.industry-card:hover a {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 58, 140, 0.15);
  border-color: #1B3A8C;
  background: #fff;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B3A8C 0%, #2a5499 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.industry-icon i {
  font-size: 20px;
  color: #F5D000;
}

.industry-card:hover .industry-icon {
  background: #1B3A8C;
  transform: scale(1.1);
}

.industry-card:hover .industry-icon i {
  color: #F5D000;
}

.industry-card:hover h3 {
  color: #1B3A8C;
}

.industry-card:hover p {
  color: #64748B;
}

.industry-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.industry-card p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* ============================================
   BRAND HERO CARDS
   ============================================ */
.brand-hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.brand-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}

.brand-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-hero-card:hover img {
  transform: scale(1.05);
}

.brand-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(27,58,140,0.65) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.brand-hero-content .brand-badge {
  display: inline-block;
  background: var(--color-accent-yellow);
  color: #0A1628;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.brand-hero-content h3 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.brand-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.brand-hero-content .btn {
  margin-top: 8px;
}

/* ============================================
   CLIENTS GRID
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.clients-section {
  background: var(--color-bg-alt);
  padding: 40px 0;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 80px;
}

.client-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.client-item {
  background: var(--color-bg-alt);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.client-item:hover {
  background: #1B3A8C;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(27, 58, 140, 0.15);
  border-color: #1B3A8C;
}

.client-item i {
  margin-right: 8px;
  transition: all 0.3s ease;
}

.client-item:hover i {
  color: #F5D000;
}

/* ============================================
    BLOG GRID
    ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-meta i {
  margin-right: 4px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h3 a:hover {
  color: var(--color-primary);
}

.blog-content p {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 10px;
}

/* ============================================
    BLOG POST STYLES
    ============================================ */
.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #F5D000;
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.blog-featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.blog-content {
  padding: 0;
}

.blog-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin: 35px 0 15px;
  line-height: 1.4;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  margin: 30px 0 12px;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.blog-intro {
  font-size: 20px !important;
  line-height: 1.8 !important;
  color: var(--color-text) !important;
  font-weight: 500;
  margin-bottom: 30px !important;
}

.blog-tip {
  background: #fffbeb;
  border-left: 4px solid #F5D000;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.blog-tip h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-tip h3 i {
  color: #F59E0B;
}

.blog-tip p {
  font-size: 15px;
  margin-bottom: 0;
}

.cta-box {
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  color: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  font-size: 16px;
}

.cta-box .btn {
  margin: 0 8px 8px;
}

.cta-box .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.cta-box .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.blog-meta {
  justify-content: center;
  margin-top: 15px;
}

.page-hero .blog-meta {
  color: rgba(255,255,255,0.8);
}

.page-hero .blog-meta i {
  color: #F5D000;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-tip-success {
  background: #f0fdf4;
  border-color: #22C55E;
}

.blog-tip-success h3 i {
  color: #22C55E;
}

.cta-box-green {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.cta-box-red {
  background: linear-gradient(135deg, #DC3545 0%, #B42B37 100%);
}

.cta-box .btn-light {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.cta-box-green .btn-light {
  color: #16A34A;
}

.cta-box-red .btn-light {
  color: #B42B37;
}

.blog-checklist {
  list-style: none;
  padding: 0;
}

.blog-checklist li {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
}

.blog-checklist i,
.blog-checklist-item {
  color: #22C55E;
  margin-right: 8px;
}

.modal-form .btn-full {
  width: 100%;
}

/* ============================================
    RESPONSIVE BLOG POST STYLES
    ============================================ */

/* ============================================
    PRODUCT MODELS GRID
    ============================================ */
.product-models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-model-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pmc-image {
  height: 200px;
  overflow: hidden;
}

.pmc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pmc-content {
  padding: 20px;
}

.pmc-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.pmc-capacity {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.pmc-specs {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.pmc-specs li {
  font-size: 12px;
  color: var(--color-text-light);
  padding: 4px 0;
}

.pmc-specs li i {
  color: #22C55E;
  margin-right: 8px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-left: 10px;
}

/* ============================================
    BRAND HERO SECTIONS
    ============================================ */
.industry-brand-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 60px;
  background: #0A1628;
}

.brand-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.brand-content-overlay {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.brand-badge {
  display: inline-block;
  background: rgba(245, 208, 0, 0.2);
  color: #F5D000;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.brand-content-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.brand-content-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================
    SERVICES PREVIEW
    ============================================ */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-preview-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B3A8C, #2a5499);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon i {
  font-size: 20px;
  color: #F5D000;
}

.service-preview-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
}

.service-preview-card p {
  font-size: 12px;
  color: #64748B;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="c" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23c)"/></svg>');
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.cta-info-item i {
  font-size: 20px;
  color: #F5D000;
}

.cta-info-item strong {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.cta-info-item span {
  font-size: 14px;
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  overflow: hidden;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  margin: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: var(--color-bg-alt);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: var(--transition);
}

.modal-close:hover {
  background: #E2E8F0;
  color: #1E293B;
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
}

.modal-header p {
  font-size: 13px;
  color: #64748B;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B3A8C;
  box-shadow: 0 0 0 3px rgba(27,58,140,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid #F1F5F9;
}

/* ============================================
    MAP SECTION
    ============================================ */
.map-section {
  background: var(--color-bg-alt);
  padding: 50px 0;
}

.service-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}

.map-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(226,232,240,0.6);
}

.map-info-card {
  background: linear-gradient(135deg, #0A1628 0%, #1B3A8C 100%);
  padding: 35px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.map-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.map-pin-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F5D000, #E5C000);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-pin-icon i {
  font-size: 20px;
  color: #0A1628;
}

.map-info-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.map-info-details {
  flex: 1;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row i {
  width: 20px;
  color: #F5D000;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-row span,
.info-row a {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.info-row a {
  color: #F5D000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-row a:hover {
  color: #fff;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #F5D000, #E5C000);
  color: #0A1628;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 25px;
  transition: all 0.3s ease;
  text-align: center;
}

.map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,208,0,0.35);
  color: #0A1628;
}

.map-container {
  position: relative;
  min-height: 450px;
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  width: 100% !important;
  height: 100% !important;
  filter: saturate(0.85) brightness(0.95);
  transition: filter 0.3s ease;
}

.map-frame:hover iframe {
  filter: saturate(1) brightness(1);
}

/* ============================================
   FOOTER WITH HOVER POPUPS
   ============================================ */
.site-footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 25px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-yellow), var(--color-accent-red), var(--color-accent-yellow));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand .logo img {
  height: 75px;
  width: auto;
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.footer-brand .logo-subtitle {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-company-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: #F5D000;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

/* Social Links with Hover Popup */
.social-link {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: #F5D000;
  color: #1B3A8C;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 14px;
}

/* Tooltip Popup */
.tooltip-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #1B3A8C;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 10;
}

.tooltip-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1B3A8C;
}

.social-link:hover .tooltip-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

/* Footer Links with Hover Popup */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition-fast);
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #F5D000;
  padding-left: 5px;
}

.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8px;
  color: #F5D000;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #F5D000;
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
}

.office-name {
  color: #F5D000;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-contact i {
  color: #F5D000;
  margin-top: 4px;
}

.contact-office {
  margin-bottom: 16px;
}

.contact-office .office-name {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-office .office-name i {
  color: #F5D000;
  font-size: 12px;
}

.contact-office .office-address {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 4px;
  padding-left: 20px;
}

.contact-office .office-phone {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-office .office-phone i {
  color: #F5D000;
  font-size: 11px;
}

.office-email {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-email i {
  color: #F5D000;
  font-size: 13px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: 100px 0 40px;
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-2,
.reveal-3 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.reveal-2.active,
.reveal-3.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-2 {
  transition-delay: 0.15s;
}

.reveal-3 {
  transition-delay: 0.3s;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
  text-align: center;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Staggered animation for grid items */
.features-grid .reveal,
.brands-grid .reveal,
.industry-grid .reveal,
.industries-grid .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.features-grid .reveal.active,
.brands-grid .reveal.active,
.industry-grid .reveal.active,
.industries-grid .reveal.active {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
    RESPONSIVE
    ============================================ */
@media (max-width: 1024px) {
  .products-grid,
  .features-grid,
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .modal-content {
    width: 95%;
    padding: 24px 18px;
    max-height: 85vh;
    border-radius: 12px;
  }
  
  .modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 14px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-header p {
    font-size: 12px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  
  .floating-download {
    bottom: 90px;
    right: 20px;
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .contact-grid-layout {
    grid-template-columns: 1fr !important;
  }
  
  .map-layout {
    grid-template-columns: 1fr !important;
  }
  
  .map-info-card {
    padding: 25px 20px;
  }
  
  .map-container {
    min-height: 350px;
  }
  
  .service-locations-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 9998;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
  color: #fff;
}

/* Floating PDF Download Button */
.floating-download {
  position: fixed;
  bottom: 105px;
  right: 30px;
  background: #F5D000;
  color: #1B3A8C;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245,208,0,0.3);
  z-index: 9998;
  transition: all 0.3s ease;
}

.floating-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245,208,0,0.4);
}

.floating-download i {
  font-size: 16px;
}

.floating-download span {
  letter-spacing: 0.5px;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile Dropdown Active State */
@media (max-width: 1024px) {
  .main-nav li.dropdown-active > .mega-menu {
    display: block !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px;
    min-width: auto;
  }
  
  .main-nav li.dropdown-active > a.has-dropdown::after {
    transform: rotate(180deg);
  }

  /* Mobile: Stack mega-menu-items vertically */
  .mega-menu-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
  }

  .mega-menu-item-content {
    width: 100%;
  }

  .mega-menu-item .arrow {
    display: none;
  }

  /* Mobile: Flyouts expand below */
  .mega-flyout {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #F8FAFC;
    border-radius: 8px;
    padding: 10px 10px 10px 26px;
    margin-top: 8px;
    display: none;
    pointer-events: auto !important;
    min-width: auto !important;
    left: auto !important;
    top: auto !important;
  }

  .mega-menu-item.mobile-open > .mega-flyout {
    display: block !important;
  }

  .mega-flyout a {
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .mega-flyout-header {
    padding: 6px 12px 4px;
    font-size: 9px;
  }
}

/* ============================================
    PARALLAX & UTILITY
    ============================================ */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Industry Video Section */
.industry-video-section h2 {
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-weight: 800;
}

/* Fallback: show content if JS is disabled */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-2 {
    opacity: 1;
    transform: none;
  }
}

/* Fallback: show reveal elements if JS fails to load after 3 seconds */
.js-fallback .reveal,
.js-fallback .reveal-2 {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   MODERN SCROLL TEXT ANIMATIONS
   GPU-accelerated with IntersectionObserver
   ============================================ */

/* Base reveal states */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Blur reveal */
.scroll-reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.scroll-reveal-blur.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Staggered delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Text highlight animation */
.scroll-reveal-highlight {
  background: linear-gradient(120deg, rgba(245,208,0,0) 0%, rgba(245,208,0,0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 88%;
  transition: background-size 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.scroll-reveal-highlight.active {
  background-size: 100% 40%;
}

/* Character-by-character reveal for headings */
.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(-90deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.char-reveal.active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale,
  .scroll-reveal-blur {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
/* ============================================
   HERO GALLERY & SMOOTH SCROLLING
   ============================================ */
.hero-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-gallery-slide.active {
  opacity: 1;
}

.hero-gallery-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.3) 100%);
}

/* Smooth Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Text Animation */
.hero-text h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax Scrolling Effect */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-element {
  animation: float 3s ease-in-out infinite;
}
/* ============================================
   HERO GALLERY & SMOOTH SCROLLING
   ============================================ */
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Text Animation */
.hero-text h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax Scrolling Effect */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-element {
  animation: float 3s ease-in-out infinite;
}
/* Hero Gallery & Smooth Scrolling */
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Text Animation */
.hero-text h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax Scrolling Effect */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-element {
  animation: float 3s ease-in-out infinite;
}

/* 3D Hero Canvas Styles */
.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

/* ============================================
   EXPERT MOBILE UI/UX OPTIMIZATION (=768px)
   DOES NOT AFFECT DESKTOP VIEW
   Complete audit & fixes applied
   ============================================ */
/* ============================================
   EXPERT MOBILE UI/UX OPTIMIZATION (<=768px)
   DOES NOT AFFECT DESKTOP VIEW
   ============================================ */

@media (max-width: 768px) {
  /* Hide desktop nav on mobile, show floating button */
  .site-header .main-nav,
  nav.main-nav,
  nav#desktopNav,
  .main-nav {
    display: none !important;
  }

  /* Show nav ONLY when 'open' class is added */
  nav.open,
  nav.mobile-active {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #0A1628 !important;
    z-index: 2147483647 !important;
    padding: 80px 20px 30px;
    overflow-y: auto;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Level 1: Modern Main Nav Cards - VERTICAL LAYOUT */
  nav.showing-level-1 {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
  }

  nav.showing-level-1 > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  nav.showing-level-1 > ul > li {
    display: block !important;
  }

  nav.showing-level-1 .nav-link {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 64px;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  nav.level-1-active > ul > li {
    display: block;
  }

  nav.level-1-active .nav-link {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 56px;
    position: relative;
    overflow: hidden;
  }

  nav.level-1-active .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1B3A8C, #F5D000);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px 0 0 4px;
  }

  nav.level-1-active .nav-link:hover,
  nav.level-1-active .nav-link:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  nav.level-1-active .nav-link:hover::before,
  nav.level-1-active .nav-link:active::before {
    opacity: 1;
  }

  nav.level-1-active .nav-link i:first-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 58, 140, 0.4);
    border-radius: 10px;
    color: #F5D000 !important;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  nav.level-1-active .nav-link:hover i:first-child,
  nav.level-1-active .nav-link:active i:first-child {
    background: rgba(27, 58, 140, 0.6);
    transform: scale(1.1);
  }

  nav.level-1-active .nav-link span,
  nav.level-1-active .nav-link div {
    flex: 1;
  }

  nav.level-1-active .nav-link .nav-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: block;
    line-height: 1.3;
    color: #fff !important;
  }

  nav.level-1-active .nav-link .nav-desc {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
  }

  /* Ensure icons display properly */
  nav.level-1-active .nav-link > i:first-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 58, 140, 0.4);
    border-radius: 10px;
    color: #F5D000 !important;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  nav.level-1-active .nav-link:hover > i:first-child,
  nav.level-1-active .nav-link:active > i:first-child {
    background: rgba(27, 58, 140, 0.6);
    transform: scale(1.1);
  }

  /* Chevron icon */
  nav.level-1-active .nav-link .fa-chevron-right {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
  }

  nav.level-1-active .nav-link:hover .fa-chevron-right {
    color: #F5D000 !important;
    transform: translateX(4px);
  }

  nav.level-1-active .nav-link.active .fa-chevron-right {
    transform: rotate(90deg);
    color: #F5D000 !important;
  }

  nav.level-1-active .nav-link .fa-chevron-right {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  nav.level-1-active .nav-link:hover .fa-chevron-right {
    color: #F5D000 !important;
    transform: translateX(4px);
  }

  nav.level-1-active .nav-link.active .fa-chevron-right {
    transform: rotate(90deg);
    color: #F5D000 !important;
  }

  /* Hide mega-menus at level 1 */
  nav.level-1-active .mega-menu {
    display: none !important;
  }

  /* Level 2: Card-based layout for categories */
  nav.level-2-active {
    padding-top: 70px;
  }

  nav.level-2-active .mega-menu.level-2 {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav.level-2-active .mega-menu-item.mobile-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  nav.level-2-active .mega-menu-item.mobile-card:hover,
  nav.level-2-active .mega-menu-item.mobile-card:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
  }

  nav.level-2-active .mega-menu-item-title {
    display: flex !important;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #F5D000 !important;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  nav.level-2-active .mega-menu-item-title i {
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 208, 0, 0.15);
    border-radius: 8px;
  }

  nav.level-2-active .mega-menu-item-desc {
    display: block !important;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6) !important;
    padding-left: 40px;
    line-height: 1.4;
  }

  nav.level-2-active .mega-flyout {
    display: none !important;
  }

  /* Level 3: Sub-options list */
  nav.level-3-active {
    padding-top: 70px;
  }

  nav.level-3-active .mobile-flyout-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
  }

  nav.level-3-active .mega-flyout {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    background: transparent;
  }

  nav.level-3-active .mega-flyout-header {
    display: none !important;
  }

  nav.level-3-active .mega-flyout a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    min-height: 48px;
  }

  nav.level-3-active .mega-flyout a:hover,
  nav.level-3-active .mega-flyout a:active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transform: translateX(4px);
    border-left-color: #F5D000;
  }

  nav.level-3-active .mega-flyout a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #F5D000 !important;
    flex-shrink: 0;
  }

  /* Back button */
  .mobile-back-btn {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
  }

  .mobile-back-btn:hover,
  .mobile-back-btn:active {
    color: #fff !important;
  }

  .mobile-back-btn i {
    font-size: 14px;
  }

  /* Hide main nav links at level 2 and 3 */
  nav.level-2-active > ul > li:not(:has(.mega-menu.level-2)),
  nav.level-3-active > ul > li {
    display: none !important;
  }

/* ============================================
   PREMIUM MOBILE MENU
   ============================================ */
  
  /* Hide floating menu on desktop - only show on mobile */
  @media (min-width: 769px) {
    .floating-menu-toggle {
      display: none !important;
    }
  }

  /* Premium Floating Menu Button - Mobile Only */
  @media (max-width: 768px) {
    .floating-menu-toggle {
      display: flex !important;
      position: fixed !important;
      top: 18px !important;
      right: 18px !important;
      width: 54px;
      height: 54px;
      background: linear-gradient(135deg, #1B3A8C 0%, #0D2348 100%);
      border-radius: 16px;
      box-shadow: 
        0 8px 32px rgba(27, 58, 140, 0.5),
        0 4px 12px rgba(27, 58, 140, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      z-index: 2147483647 !important;
      cursor: pointer;
      flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
  }

  .floating-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 
      0 12px 40px rgba(27, 58, 140, 0.6),
      0 6px 16px rgba(27, 58, 140, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.4);
  }

  .floating-menu-toggle:active {
    transform: scale(0.96);
  }

  .floating-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }

  /* Open state - X animation */
  .floating-menu-toggle.open,
  .floating-menu-toggle.active {
    background: linear-gradient(135deg, #CC1F28 0%, #8B1420 100%);
    box-shadow: 
      0 8px 32px rgba(204, 31, 40, 0.5),
      0 4px 12px rgba(204, 31, 40, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .floating-menu-toggle.open span,
  .floating-menu-toggle.active span {
    background: #fff;
  }

  .floating-menu-toggle.open span:nth-child(1),
  .floating-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .floating-menu-toggle.open span:nth-child(2),
  .floating-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .floating-menu-toggle.open span:nth-child(3),
  .floating-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Nav links styling */
  nav.open .nav-link,
  nav.mobile-active .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.mobile-active .nav-link:hover,
  nav.mobile-active .nav-link:active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
  }

  nav.mobile-active .nav-link.active {
    background: rgba(255, 255, 255, 0.12);
  }

  /* Mega menu styling for mobile */
  nav.mobile-active .mega-menu {
    display: none;
    padding: 12px 16px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.mobile-active .mega-menu.mobile-show {
    display: block;
    animation: slideDown 0.35s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav.mobile-active .mega-menu-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav.mobile-active .mega-menu-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.mobile-active .mega-menu-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #F5D000 !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  nav.mobile-active .mega-menu-item-title i {
    font-size: 16px;
    width: 24px;
    text-align: center;
  }

  nav.mobile-active .mega-menu-item-desc {
    display: none;
  }

  nav.mobile-active .mega-flyout {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  nav.mobile-active .mega-flyout-header {
    display: none;
  }

  nav.mobile-active .mega-flyout a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
  }

  nav.mobile-active .mega-flyout a:hover,
  nav.mobile-active .mega-flyout a:active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transform: translateX(4px);
    border-left-color: #F5D000;
  }

  nav.mobile-active .mega-flyout a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #F5D000 !important;
    flex-shrink: 0;
  }

  /* Keep icon colors white for cards */
  .feature-icon,
  .service-icon,
  .capacity-icon,
  .stat-icon {
    color: #fff !important;
  }

  /* Cards - force dark text */
  .feature-card,
  .product-card,
  .service-card,
  .solution-card,
  .blog-card,
  .capacity-card,
  .stat-item {
    color: #0F172A !important;
  }

  .feature-card *,
  .product-card *,
  .service-card *,
  .solution-card *,
  .blog-card *,
  .capacity-card *,
  .stat-item * {
    color: #0F172A !important;
  }

  .feature-card h3,
  .product-card h3,
  .service-card h3,
  .solution-card h3,
  .blog-card h3,
  .capacity-card h3,
  .stat-item h3,
  .stat-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
  }

  .feature-card p,
  .product-card p,
  .service-card p,
  .solution-card p,
  .blog-card p,
  .capacity-card p,
  .stat-item p,
  .stat-item span {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ============================================
   MODERN MOBILE MENU - Brand Colors
   ============================================ */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  /* Mobile menu overlay */
  nav.main-nav.open,
  nav#desktopNav.open,
  .main-nav.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, #0A1628 0%, #0D1E35 50%, #0F2240 100%) !important;
    z-index: 99999999 !important;
    flex-direction: column;
    padding: 70px 20px 30px;
    overflow-y: auto;
    overflow-x: hidden !important;
    animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-width: 100vw;
  }

  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  /* Menu header decorative gradient */
  nav.main-nav.open::before,
  nav#desktopNav.open::before,
  .main-nav.open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, #1B3A8C 0%, #00AEEF 50%, #1B3A8C 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  /* Close button (X) */
  .floating-menu-toggle.open {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 100000000 !important;
  }

  .floating-menu-toggle.open span {
    background: #fff !important;
  }

  /* Menu items container */
  nav.main-nav.open > ul,
  nav#desktopNav.open > ul,
  .main-nav.open > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 15px;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Individual menu items - Premium Card Style */
  nav.main-nav.open .nav-link,
  nav#desktopNav.open .nav-link,
  .main-nav.open .nav-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    background: linear-gradient(135deg, rgba(27, 58, 140, 0.35) 0%, rgba(27, 58, 140, 0.15) 100%);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 14px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  nav.main-nav.open .nav-link::before,
  nav#desktopNav.open .nav-link::before,
  .main-nav.open .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00D2FF 0%, #1B3A8C 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  nav.main-nav.open .nav-link:hover,
  nav#desktopNav.open .nav-link:hover,
  .main-nav.open .nav-link:hover,
  nav.main-nav.open .nav-link:focus,
  nav#desktopNav.open .nav-link:focus,
  .main-nav.open .nav-link:focus {
    background: linear-gradient(135deg, rgba(27, 58, 140, 0.55) 0%, rgba(0, 210, 255, 0.15) 100%);
    border-color: rgba(0, 210, 255, 0.5);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.15);
  }

  nav.main-nav.open .nav-link:hover::before,
  nav#desktopNav.open .nav-link:hover::before,
  .main-nav.open .nav-link:hover::before {
    opacity: 1;
  }

  /* Premium Icon styling */
  nav.main-nav.open .nav-link i,
  nav#desktopNav.open .nav-link i,
  .main-nav.open .nav-link i {
    font-size: 20px;
    color: #00D2FF !important;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(27, 58, 140, 0.2) 100%);
    border-radius: 8px;
    text-align: center;
  }

  /* Text container */
  nav.main-nav.open .nav-link div,
  nav#desktopNav.open .nav-link div,
  .main-nav.open .nav-link div {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  /* Main text - Premium */
  nav.main-nav.open .nav-text,
  nav#desktopNav.open .nav-text,
  .main-nav.open .nav-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    letter-spacing: -0.3px;
  }

  /* Description - Premium */
  nav.main-nav.open .nav-desc,
  nav#desktopNav.open .nav-desc,
  .main-nav.open .nav-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55) !important;
    margin-top: 3px;
    font-weight: 400;
  }

  /* Dropdown arrow - Premium */
  nav.main-nav.open .has-dropdown::after,
  nav#desktopNav.open .has-dropdown::after,
  .main-nav.open .has-dropdown::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    color: #00D2FF;
    font-size: 13px;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  nav.main-nav.open .has-dropdown:hover::after,
  nav#desktopNav.open .has-dropdown:hover::after,
  .main-nav.open .has-dropdown:hover::after {
    transform: translateX(6px);
    opacity: 1;
  }

  /* Hide mega menu on mobile - we use category cards instead */
  nav.main-nav.open .mega-menu,
  nav#desktopNav.open .mega-menu,
  .main-nav.open .mega-menu {
    display: none !important;
  }

  /* Category cards (shown when clicking Products/Solutions/Services) */
  .category-cards {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }

  .category-cards.active {
    display: flex;
  }

  .category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(27,58,140,0.4) 0%, rgba(0,210,255,0.1) 100%);
    border: 1px solid rgba(0,210,255,0.3);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .category-card:hover {
    background: linear-gradient(135deg, rgba(27,58,140,0.6) 0%, rgba(0,210,255,0.2) 100%);
    border-color: #00D2FF;
    transform: translateY(-2px);
  }

  .category-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00D2FF 0%, #1B3A8C 100%);
    border-radius: 10px;
    font-size: 22px;
    color: #fff;
  }

  .category-card-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }

  .category-card-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 4px 0 0;
  }

  /* Back button */
  .back-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(204, 31, 40, 0.2);
    border: 1px solid rgba(204, 31, 40, 0.5);
    border-radius: 12px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .back-btn:hover {
    background: rgba(204, 31, 40, 0.4);
    transform: translateX(-5px);
  }

  .back-btn i {
    color: #CC1F28;
  }

  /* Menu section title */
  .menu-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #00D2FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 20px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,210,255,0.2);
  }

  /* Active state */
  nav.main-nav.open .nav-link.active,
  nav#desktopNav.open .nav-link.active,
  .main-nav.open .nav-link.active {
    background: linear-gradient(135deg, rgba(204,31,40,0.3) 0%, rgba(204,31,40,0.1) 100%);
    border-color: rgba(204,31,40,0.5);
  }

  nav.main-nav.open .nav-link.active::before,
  nav#desktopNav.open .nav-link.active::before,
  .main-nav.open .nav-link.active::before {
    background: #CC1F28;
    opacity: 1;
  }

  nav.main-nav.open .nav-link.active i,
  nav#desktopNav.open .nav-link.active i,
  .main-nav.open .nav-link.active i {
    color: #CC1F28 !important;
  }

  /* Mobile Header - Improve visibility with scroll effect */
  .site-header {
    height: 70px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
  }

  /* Scrolled state - more solid */
  .site-header.scrolled {
    height: 60px !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15) !important;
  }

  .site-header.scrolled .logo img {
    width: 35px !important;
    height: 35px !important;
  }

  .site-header.scrolled .logo-title {
    font-size: 13px !important;
  }

  .site-header.scrolled .logo-subtitle {
    display: none !important;
  }

  .header-container {
    padding: 0 12px !important;
  }

  .logo {
    gap: 8px !important;
  }

  .logo img {
    width: 42px !important;
    height: 42px !important;
    transition: all 0.3s ease !important;
  }

  .logo-text {
    display: flex !important;
    flex-direction: column !important;
  }

  .logo-title {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1B3A8C !important;
    line-height: 1.1 !important;
    letter-spacing: -0.2px !important;
    transition: all 0.3s ease !important;
  }

  .logo-subtitle {
    font-size: 9px !important;
    color: #64748B !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease !important;
  }

  .header-actions {
    display: none !important;
  }

  /* Mobile Home Page Card Fixes */
  .features-grid,
  .services-grid,
  .products-grid,
  .grid-container,
  .brands-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .feature-card,
  .service-card,
  .product-card,
  .brands-card,
  .capacity-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .feature-card h3,
  .service-card h3,
  .product-card h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }

  .feature-card p,
  .service-card p,
  .product-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Mobile Hero Section - Consistent Fonts */
  .hero-content {
    padding: 25px 16px 40px !important;
    box-sizing: border-box !important;
  }

  .hero-text {
    padding-top: 15px !important;
  }

  .hero-badge {
    margin-top: 35px !important;
    margin-bottom: 18px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    letter-spacing: 0.5px !important;
    font-family: inherit !important;
  }

  .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 16px !important;
    font-family: inherit !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
  }

  .hero-content p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
    font-family: inherit !important;
    color: rgba(255,255,255,0.85) !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 18px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    letter-spacing: 0.3px !important;
  }

  .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #CC1F28 0%, #a01820 100%) !important;
  }

  .hero-buttons .btn-outline {
    border: 2px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
  }

  section,
  .section {
    padding: 40px 16px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    font-family: inherit !important;
    color: #1B3A8C !important;
  }

  h3 {
    font-size: 19px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    font-family: inherit !important;
    color: #1B3A8C !important;
  }

  p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-family: inherit !important;
  }

  .section-header h2 {
    font-size: 20px !important;
  }

  .section-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
  }

  /* Contact Cards - Office Locations Mobile */
  .capacity-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }

  .capacity-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    border-left: 4px solid #F5D000 !important;
  }

  .capacity-card .capacity-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .capacity-card h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1B3A8C !important;
    margin-bottom: 8px !important;
  }

  .capacity-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #64748B !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
  }

  .capacity-card a {
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  /* Contact Grid Layout Mobile */
  .contact-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* Contact Form Mobile */
  .contact-form-card {
    padding: 24px 16px !important;
  }

  .contact-form-card .form-group {
    margin-bottom: 16px !important;
  }

  .contact-form-card input,
  .contact-form-card textarea,
  .contact-form-card select {
    padding: 14px 16px !important;
    font-size: 15px !important;
  }

  /* Fix text encoding display */
  body, p, span, div, h1, h2, h3, h4, h5, h6 {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
  }
}
