/* =================================================================
   SMART POWER SYSTEMS - CORPORATE 2026 DESIGN
   Professional, Clean, Corporate Look with Parallax & Mega Menu
   ================================================================= */

:root {
  --color-primary: #1B3A8C;
  --color-primary-dark: #0f2240;
  --color-primary-light: #2a5499;
  --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;
  --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);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

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

* { 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: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ============================================
   HEADER - Sticky with Transparent to Solid
   ============================================ */
.site-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 75px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 65px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav a {
  color: #1E293B;
}

.main-nav a:hover,
.main-nav a.active {
  background: #F0F4FF;
  color: #1B3A8C;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 65px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 17px;
  font-weight: 700;
  color: #1B3A8C;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 10px;
  color: #64748B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   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);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 20px 25px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.mega-menu-grid.mega-menu-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 25px;
}

.mega-menu-column h4 {
  font-size: 10px;
  font-weight: 700;
  color: #1B3A8C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #F5D000;
}

.mega-menu-column ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-column ul li {
  margin-bottom: 0;
}

.mega-menu-column a {
  display: block;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: #1E293B;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mega-menu-column a:hover {
  background: #F0F4FF;
  color: #1B3A8C;
}

.main-nav li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
}

.mega-menu-grid.mega-menu-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}

.mega-menu-column h4 {
  font-size: 11px;
  font-weight: 700;
  color: #1B3A8C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F5D000;
}

.mega-menu-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #0f2240;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mega-menu-column a:hover {
  background: #1B3A8C;
  color: #fff;
}

.main-nav li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

}

/* Industry Grid */

.mega-menu-column ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-column ul li {
  margin-bottom: 0;
}

.mega-menu-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: #1E293B;
  font-weight: 500;
  transition: var(--transition-fast);
}

.mega-menu-column a:hover {
  background: #F0F4FF;
  color: #1B3A8C;
}

.mega-menu-column a i {
  width: 26px;
  height: 26px;
  background: #FFF3CD;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #1B3A8C;
  transition: all 0.2s ease;
}

.mega-menu-column a:hover i {
  background: #F5D000;
  color: #1B3A8C;
}

/* 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: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@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);
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .main-nav.active ul {
    flex-direction: column;
  }
  .main-nav.active > ul > li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .mega-menu {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 10px 0 0 20px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav li.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
  }
}

/* ============================================
   HERO PARALLAX SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1628;
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: 0;
  will-change: transform;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0) scale(1.1);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(27,58,140,0.85) 100%);
  animation: gradientOverlay 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientOverlay {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero Badge Animation */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 208, 0, 0.15);
  border: 1px solid rgba(245, 208, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #F5D000;
  animation: fadeInDown 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

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

/* Hero Content Animations */
.hero-text h1 {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-text p {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

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

.hero-stats {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 50px;
  width: 100%;
}

.hero-text {
  max-width: 580px;
  transition: transform 0.1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 11px;
  color: #F5D000;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-text h1 span {
  color: #F5D000;
}

.hero-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.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); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #CC1F28 0%, #E82E36 50%, #CC1F28 100%);
  background-size: 200% 200%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #a01820;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 31, 40, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: #fff;
  color: #1B3A8C;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #1B3A8C;
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #1B3A8C 0%, #2B4A9C 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 58, 140, 0.4);
}

.btn-secondary:hover {
  background: #0f2240;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #fff;
  padding: 30px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-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 12px;
}

.stat-icon i {
  font-size: 20px;
  color: #F5D000;
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1B3A8C;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: #64748B;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #1B3A8C, #F5D000);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 35px;
  padding-left: 30px;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #1B3A8C;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
  background: #F5D000;
}

.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(27, 58, 140, 0.15);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1B3A8C;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #1B3A8C 0%, #2B4A9C 100%);
  color: #F5D000;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(27, 58, 140, 0.3);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1B3A8C, #F5D000);
  border-radius: 2px;
}

.section-header p {
  font-size: 16px;
  color: #64748B;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.section-label {
  display: inline-block;
  background: #E8F0FE;
  color: #1B3A8C;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: #64748B;
  max-width: 500px;
  margin: 0 auto;
}

.section-why {
  background: var(--color-bg-alt);
}

.section-brands {
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  padding: 80px 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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(27, 58, 140, 0.2);
  border-color: transparent;
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 58, 140, 0), rgba(27, 58, 140, 0.1));
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.product-card:hover .product-image::before {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.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: 24px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.capacity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.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;
}

/* ============================================
   INDUSTRY GRID
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card a {
  display: block;
  padding: 30px 20px;
  text-decoration: none;
  text-align: center;
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1B3A8C, #2D4A9C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.industry-icon i {
  font-size: 28px;
  color: #fff;
}

.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 5px;
}

.industry-card p {
  font-size: 12px;
  color: #64748B;
}

.section-cta {
  text-align: center;
  margin-top: 30px;
}

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

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

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1B3A8C, #2a5499);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon i {
  font-size: 22px;
  color: #F5D000;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

/* ============================================
   BRANDS GRID
   ============================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.brand-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
}

.brand-logo {
  font-size: 22px;
  font-weight: 800;
  color: #1B3A8C;
  margin-bottom: 8px;
}

.brand-range {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.brand-type {
  font-size: 11px;
  color: #64748B;
  margin-top: 4px;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--color-bg-alt);
  padding: 24px 16px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  background: #1B3A8C;
}

.industry-card:hover .industry-icon,
.industry-card:hover h3,
.industry-card:hover p {
  color: #fff;
}

.industry-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.industry-icon i {
  font-size: 20px;
  color: #1B3A8C;
}

.industry-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 11px;
  color: #64748B;
}

/* ============================================
   CLIENTS GRID
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-item {
  background: var(--color-bg-alt);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  transition: var(--transition);
}

.client-item:hover {
  background: #1B3A8C;
  color: #fff;
}

/* ============================================
   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: 80px 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);
}

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

.modal-content {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 35px;
  width: 90%;
  max-width: 450px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 25px 60px rgba(27, 58, 140, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1E293B;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #1B3A8C;
  color: #fff;
  transform: rotate(90deg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.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: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B3A8C;
  box-shadow: 0 0 0 4px rgba(27, 58, 140, 0.1), 0 4px 12px rgba(27, 58, 140, 0.08);
}

.form-group input::placeholder {
  color: #94A3B8;
}

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

/* ============================================
   FOOTER WITH HOVER POPUPS
   ============================================ */
.site-footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand img {
  height: 65px;
  margin-bottom: 12px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand p {
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-brand .company-name {
  font-size: 16px;
  font-weight: 700;
  color: #F5D000;
  margin-bottom: 8px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 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: #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: 700;
  color: #F5D000;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links with Hover Popup */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: var(--transition);
}

.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: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.footer-contact i {
  color: #F5D000;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact .location-group {
  margin-bottom: 16px;
}

.footer-contact .location-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  display: block;
  font-size: 14px;
}

.footer-contact .location-address {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.footer-contact .location-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

/* New Contact Office Card Style */
.footer-contact .contact-office {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact .contact-office:last-of-type {
  border-bottom: none;
}

.footer-contact .office-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-contact .office-address {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.footer-contact .office-phone {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .office-phone i {
  color: #F5D000;
  margin-top: 0;
  min-width: auto;
}

.footer-contact .office-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 8px;
  color: rgba(255,255,255,0.9);
}

.footer-contact .office-email i {
  color: #F5D000;
}

.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: 160px 0 80px;
  background: linear-gradient(135deg, #1B3A8C 0%, #0f2240 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 208, 0, 0.1) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.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 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.reveal-2 {
  transition-delay: 0.15s;
}

/* ============================================
   GLASSMOPHISM EFFECTS (2026 Trend)
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-modal .modal-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ============================================
   MODERN BUTTON HOVER EFFECTS
   ============================================ */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1B3A8C 0%, #2B4A9C 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 58, 140, 0.4);
}

.btn-outline:hover {
  background: #1B3A8C;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   CARD HOVER EFFECTS
   ============================================ */
.product-card,
.feature-card,
.capacity-card,
.industry-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover,
.feature-card:hover,
.capacity-card:hover,
.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FLOATING ANIMATION
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-download {
  animation: float 3s ease-in-out infinite;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite, pulseWhatsApp 2s ease-in-out infinite;
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #20BD5A;
}

/* ============================================
   PULSE ANIMATION FOR CTA
   ============================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27, 58, 140, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(27, 58, 140, 0); }
}

.header-cta {
  animation: pulse 2s infinite;
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
  scroll-behavior: smooth;
}

*:has(.reveal) {
  animation-fill-mode: both;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-stats {
    gap: 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid,
  .features-grid,
  .brands-grid,
  .services-preview-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .cta-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* ============================================
   PRODUCT FILTER BAR
   ============================================ */
.product-filter-bar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  font-weight: 600;
  color: #1B3A8C;
  min-width: 100px;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #1B3A8C;
  color: #1B3A8C;
}

.filter-btn.active {
  background: #1B3A8C;
  border-color: #1B3A8C;
  color: #fff;
}

.product-model-card.hidden {
  display: none;
}

/* ============================================
   PRODUCT MODELS GRID
   ============================================ */
.product-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-model-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pmc-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pmc-image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.pmc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #CC1F28;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.pmc-content {
  padding: 20px;
}

.pmc-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1B3A8C;
  margin-bottom: 4px;
}

.pmc-capacity {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 12px;
}

.pmc-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.pmc-specs li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #64748B;
}

.pmc-specs li i {
  color: #1B3A8C;
  font-size: 12px;
}

.pmc-price {
  margin-bottom: 15px;
}

.price-label {
  display: block;
  font-size: 11px;
  color: #94A3B8;
}

.price-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1B3A8C;
}

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

@media (max-width: 600px) {
  .product-models-grid {
    grid-template-columns: 1fr;
  }
}
  .cta-info {
    flex-direction: column;
    gap: 20px;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
   FLOATING PDF DOWNLOAD BUTTON
   ============================================ */
.floating-download {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: linear-gradient(135deg, #1B3A8C 0%, #2a5499 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(27, 58, 140, 0.4);
  transition: all 0.3s ease;
  animation: floatPulse 3s ease-in-out infinite;
  text-decoration: none;
}

.floating-download:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(27, 58, 140, 0.5);
  color: #fff;
  background: linear-gradient(135deg, #2a5499 0%, #1B3A8C 100%);
}

.floating-download i {
  font-size: 18px;
}

.floating-download span {
  display: block;
}

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

@media (max-width: 600px) {
  .floating-download {
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
    font-size: 13px;
    border-radius: 50px;
  }
  .floating-download span {
    display: none;
  }
  .floating-download i {
    font-size: 20px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }
  .hero-stat h4 {
    font-size: 36px;
  }
  .page-hero {
    padding: 100px 0 60px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .testimonials-section {
    padding: 50px 0;
  }
  .testimonials-section .section-header h2 {
    font-size: 28px !important;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
  .testimonial-card .client-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: linear-gradient(135deg, #0A1628 0%, #1B3A8C 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.testimonial-card .quote-icon {
  font-size: 40px;
  color: #F5D000;
  opacity: 0.5;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  background: #F5D000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1B3A8C;
  font-size: 18px;
}

.testimonial-card .client-name h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-card .client-name span {
  font-size: 13px;
  opacity: 0.6;
}

/* ============================================
   CLIENTS GRID
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.client-item {
  background: #f8fafc;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #1B3A8C;
  transition: all 0.3s ease;
}

.client-item:hover {
  background: #1B3A8C;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .header-container {
    padding: 0 20px;
  }
  .footer-content {
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 65px;
  }
  .logo img {
    height: 40px;
  }
  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .testimonials-section {
    padding: 50px 0;
  }
  .testimonials-section .section-header h2 {
    font-size: 28px !important;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
.site-footer {
  background: #0A1628;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #F5D000;
  color: #1B3A8C;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F5D000;
}

.footer-links a {
  position: relative;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.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: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #F5D000;
  width: 20px;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 24px;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

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

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

/* ============================================
   INDUSTRIES BRAND SECTIONS WITH IMAGES
   ============================================ */
.industry-brand-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px 0;
}

.industry-brand-hero .brand-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 0.5s ease;
}

.industry-brand-hero:hover .brand-bg-image {
  transform: scale(1.05);
}

.industry-brand-hero .brand-content-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  color: #fff;
}

.industry-brand-hero .brand-content-overlay h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-brand-hero .brand-content-overlay p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 20px;
}

.industry-brand-hero .brand-badge {
  display: inline-block;
  background: var(--color-accent-yellow);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ENHANCED BRAND CARDS
   ============================================ */
.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27,58,140,0.1) 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 58, 140, 0.3);
  border-color: rgba(245, 208, 0, 0.3);
}

.brand-card a {
  display: block;
  padding: 40px 30px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.brand-card .brand-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand-card .brand-range {
  font-size: 13px;
  color: #F5D000;
  margin-bottom: 8px;
  font-weight: 600;
}

.brand-card .brand-type {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator i {
  font-size: 24px;
  color: #fff;
  opacity: 0.8;
}

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

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat h4 {
  font-size: 48px;
  font-weight: 800;
  color: #F5D000;
  line-height: 1;
}

.hero-stat h4 span {
  font-size: 32px;
  margin-left: 2px;
}

.hero-stat span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

.counter {
  display: inline-block;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat h4 {
  font-size: 48px;
  font-weight: 800;
  color: #F5D000;
  line-height: 1;
}

.hero-stat h4 span {
  font-size: 32px;
  margin-left: 2px;
}

.hero-stat span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }
  .hero-stat h4 {
    font-size: 36px;
  }
}

/* ============================================
   PRODUCT CARD HOVER EFFECTS
   ============================================ */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.product-card:hover::after {
  left: 100%;
}

/* ============================================
   BUTTON Ripple Effect
   ============================================ */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ============================================
   Enhanced Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

.modal-header {
  padding: 30px 30px 0;
  text-align: center;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1B3A8C;
  margin-bottom: 8px;
}

.modal-header p {
  color: #64748B;
  font-size: 14px;
}

#quoteForm {
  padding: 20px 30px 30px;
}

/* ============================================
   FLOATING PDF DOWNLOAD BUTTON
   ============================================ */
.floating-download {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 99999 !important;
  background: linear-gradient(135deg, #1B3A8C 0%, #2a5499 100%) !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 30px rgba(27, 58, 140, 0.4) !important;
  transition: all 0.3s ease !important;
  animation: floatPulse 3s ease-in-out infinite !important;
}

.floating-download:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(27, 58, 140, 0.5);
  color: #fff;
  background: linear-gradient(135deg, #2a5499 0%, #1B3A8C 100%);
}

.floating-download i {
  font-size: 18px;
}

.floating-download span {
  display: block;
}

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

@media (max-width: 600px) {
  .floating-download {
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
  }
  .floating-download span { display: none; }
  .floating-download i { font-size: 20px; }
}