/* ============================================
   VARDHMAN FLEXIBLE HOSES - Professional Design
   White & Navy Blue Industrial Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-glass: rgba(0, 51, 102, 0.03);
  --accent-cyan: #003366;
  --accent-blue: #0066cc;
  --accent-orange: #0f3460;
  --text-primary: #1a1a2e;
  --text-secondary: #374151;
  --text-muted: #4b5563;
  --border-glass: #e8e8e8;
  --border-glow: #0066cc;
  --gradient-hero: linear-gradient(135deg, #0a1929 0%, #132f4c 50%, #051d2d 100%);
  --gradient-accent: linear-gradient(135deg, #003366, #0066cc);
  --gradient-orange: linear-gradient(135deg, #0f3460, #5a7ea8);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

/* ---------- Skip to Content (a11y) ---------- */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--accent-cyan);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.3s ease;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 10001;
  transition: width 0.05s linear;
}

/* ---------- Focus Visible (a11y) ---------- */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Reduced Motion (a11y) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .hero-canvas { display: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent-cyan);
}

/* ---------- Utility Classes ---------- */
.container-modern {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metallic-text {
  color: #003366;
  -webkit-text-fill-color: #003366;
}

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

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.glow-border {
  border: 1px solid var(--border-glass);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 1;
  transform: none;
}

/* ---------- Performance Optimization ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  will-change: transform;
}

.animated {
  will-change: auto;
}

section {
  contain: layout style paint;
}

.stagger-group {
  contain: layout style paint;
}

/* ---------- Section Label ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.products-header .section-label {
  font-size: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent-cyan);
}

.section-title {
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--accent-cyan);
}

.section-title .text-gradient {
  position: relative;
  background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .text-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  right: 14%;
  bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0f3460 0%, #5a7ea8 60%, transparent 100%);
  opacity: 0.85;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 51, 102, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  color: #fff;
  background: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
}

.btn-cta {
  background: var(--gradient-orange);
  color: #fff;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba( 15,  52,  96, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-modern i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-modern:hover i {
  transform: translateX(4px);
}

/* ---------- Unified Button System (Primary & Secondary) ---------- */
/* BUTTON DESIGN SYSTEM: 2 consistent styles for cohesive branding */

/* Standard button base (inline style fallback) */
.btn-standard {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* PRIMARY button: Solid dark navy with white text */
.btn-primary-solid {
  background: linear-gradient(135deg, #0c1f3f, #0f3460);
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 31, 63, 0.25);
}

.btn-primary-solid:hover {
  background: linear-gradient(135deg, #0a1a33, #0d2d52);
  box-shadow: 0 8px 24px rgba(12, 31, 63, 0.35);
  transform: translateY(-2px);
}

/* SECONDARY button: White/transparent with dark border */
.btn-secondary-outline {
  background: #fff;
  color: #0c1f3f;
  border: 2px solid #0c1f3f;
}

.btn-secondary-outline:hover {
  background: #0c1f3f;
  color: #fff;
  box-shadow: 0 6px 20px rgba(12, 31, 63, 0.2);
  transform: translateY(-2px);
}

/* On dark backgrounds */
.btn-secondary-outline.on-dark {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary-outline.on-dark:hover {
  background: #fff;
  color: #0c1f3f;
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Icon styling */
.btn-standard i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-standard:hover i {
  transform: translateX(3px);
}

/* ---------- Product Search Trigger (header) ---------- */
.product-search-trigger {
  cursor: pointer;
  padding: 8px 12px;
  color: var(--accent-cyan);
  font-size: 16px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.product-search-trigger:hover {
  color: var(--accent-orange);
}

/* Product Search Overlay */
.product-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-search-overlay.active {
  display: flex;
  opacity: 1;
}
.product-search-box {
  width: 90%;
  max-width: 680px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-search-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}
.product-search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-glass);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}
.product-search-input:focus {
  border-color: var(--accent-cyan);
}
.product-search-results {
  margin-top: 16px;
  max-height: 300px;
  overflow-y: auto;
}
.product-search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s;
}
.product-search-results a:hover {
  background: var(--bg-secondary);
}
.product-search-results a i {
  color: var(--accent-cyan);
  font-size: 14px;
}
.product-search-results a .product-name {
  font-weight: 600;
  font-size: 15px;
}
.product-search-results a .product-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.search-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s;
}
.search-close:hover { transform: rotate(90deg); }

/* ============================================
   PRELOADER
   ============================================ */
.modern-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.preloader-logo sup {
  font-size: 0.5em;
  vertical-align: 0.6em;
  margin-left: 2px;
  display: inline-block;
  line-height: 0.8;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: preloaderFill 1.1s ease-in-out forwards;
}

@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition-smooth);
  background: rgba(255, 255, 255, 0.95);
}

.modern-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 51, 102, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.02);
}

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

.header-logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.modern-header.scrolled .header-logo img {
  height: 40px;
}

.tm-symbol {
  font-size: 10px;
  font-weight: 700;
  color: inherit;
  vertical-align: super;
  line-height: 1;
  margin-left: 2px;
}

.footer-logo .tm-symbol {
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--accent-cyan);
  background: rgba(0, 51, 102, 0.05);
}

/* Dropdown */
.nav-menu .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -2px;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-menu .has-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transform-origin: top center;
  transition: all 0.35s var(--transition-smooth);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.nav-menu > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  border-color: var(--border-glass);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.nav-dropdown li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu > li:hover > .nav-dropdown li {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu > li:hover > .nav-dropdown li:nth-child(1) { transition-delay: 0.04s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(2) { transition-delay: 0.08s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(3) { transition-delay: 0.12s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(4) { transition-delay: 0.16s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(5) { transition-delay: 0.20s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(6) { transition-delay: 0.24s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(7) { transition-delay: 0.28s; }
.nav-menu > li:hover > .nav-dropdown li:nth-child(8) { transition-delay: 0.32s; }

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.25s var(--transition-smooth);
  position: relative;
}

.nav-dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 60%;
  transform: translateY(-50%);
  background: var(--gradient-accent);
  border-radius: 0 3px 3px 0;
  transition: width 0.25s var(--transition-smooth);
}

.nav-dropdown li a:hover {
  color: var(--accent-cyan);
  background: rgba(0, 51, 102, 0.05);
  padding-left: 22px;
}

.nav-dropdown li a:hover::before {
  width: 3px;
}

/* Nested dropdown */
.nav-dropdown .has-dropdown {
  position: relative;
}

.nav-dropdown .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-left: auto;
  float: right;
  margin-top: 6px;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-dropdown .has-dropdown:hover > a::after {
  transform: rotate(-45deg) translateX(3px);
}

.nav-dropdown .nav-dropdown {
  left: 100%;
  top: 0;
  transform-origin: left top;
  transform: translateX(8px) scale(0.97);
}

.nav-dropdown .has-dropdown:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  border-color: var(--border-glass);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.nav-dropdown .has-dropdown:hover > .nav-dropdown li {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown .has-dropdown:hover > .nav-dropdown li:nth-child(1) { transition-delay: 0.04s; }
.nav-dropdown .has-dropdown:hover > .nav-dropdown li:nth-child(2) { transition-delay: 0.08s; }
.nav-dropdown .has-dropdown:hover > .nav-dropdown li:nth-child(3) { transition-delay: 0.12s; }
.nav-dropdown .has-dropdown:hover > .nav-dropdown li:nth-child(4) { transition-delay: 0.16s; }
.nav-dropdown .has-dropdown:hover > .nav-dropdown li:nth-child(5) { transition-delay: 0.20s; }

.header-cta .btn-modern {
  padding: 10px 24px;
  font-size: 13px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 100px 24px 40px;
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-nav-links > li > a {
  display: block;
  padding: 16px 0;
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-glass);
}

.mobile-nav-links .mobile-sub {
  padding-left: 16px;
  display: none;
}

.mobile-nav-links .mobile-sub.open {
  display: block;
}

.mobile-nav-links .mobile-sub li a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.mobile-contact-info {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.mobile-contact-info p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15px;
}

.mobile-contact-info a {
  color: var(--accent-blue);
}

.mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.mobile-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 51, 102, 0.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ---------- Hero Photo Slideshow (Ken Burns) ---------- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 14s ease-out forwards;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-2%, -1.5%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 21, 41, 0.55) 0%, rgba(0, 21, 41, 0.28) 55%, rgba(0, 21, 41, 0.10) 100%),
    radial-gradient(ellipse at 70% 60%, transparent 0%, rgba(0, 34, 68, 0.18) 80%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-left: 6px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

/* Ensure SplitType chars in hero title stay white */
.hero-title .char,
.hero-title .word {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero-title .highlight {
  display: inline;
  color: #ffffff;
}

/* Override text-gradient inside hero/CTA/footer (dark backgrounds) */
.hero-section .text-gradient,
.hero-title .highlight.text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  color: #ffffff !important;
}

.cta-section .text-gradient,
.page-banner .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset;
  color: #ffffff !important;
}

/* Fix for SplitType chars inside text-gradient on dark backgrounds */
.hero-title .text-gradient .char,
.hero-title .text-gradient .word,
.hero-section .text-gradient .char,
.hero-section .text-gradient .word,
.cta-section .text-gradient .char,
.cta-section .text-gradient .word {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* Override buttons on dark backgrounds */
.hero-section .btn-secondary,
.cta-section .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-section .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero stats on dark bg */
.hero-stats {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.hero-stat .stat-number span {
  color: #ffffff;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.hero-stat .stat-number span {
  color: #ffffff;
}

.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-modern {
  background: var(--bg-primary);
  position: relative;
}

.about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-glass);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--transition-smooth);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.about-image-badge .badge-text {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

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

.btn-modern.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border-glass);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.stat-value .counter-suffix {
  color: var(--accent-orange);
}

.stat-name {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ============================================
   PRODUCTS / BENTO GRID
   ============================================ */
.products-section {
  background: var(--bg-secondary);
  position: relative;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.products-header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.products-header .section-desc {
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  cursor: pointer;
  min-height: 400px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

/* Gold sweep border on bottom */
.bento-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0f3460, #5a7ea8);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

.bento-item:hover {
  border-color: rgba( 15,  52,  96, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(12, 31, 63, 0.16), 0 0 0 1px rgba( 15,  52,  96, 0.2);
}

.bento-item:hover::after {
  width: 100%;
}

.bento-item .bento-bg {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #f4f6fa;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  overflow: hidden;
}

/* Soft gradient — always visible */
.bento-item .bento-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(12, 31, 63, 0.25) 100%);
  transition: background 0.4s ease;
  pointer-events: none;
}

.bento-item:hover .bento-bg {
  transform: scale(1.06);
}

.bento-item .bento-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: none;
}

.bento-item .bento-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 51, 102, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.bento-item:hover .bento-content {
  background: rgba(255, 253, 248, 0.99);
}

.bento-item .bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-cyan);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
}

.bento-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.bento-item:hover h3 {
  color: #0c1f3f;
}

.bento-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Explore arrow */
.bento-item .bento-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0f3460;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-item .bento-arrow::after {
  content: "→";
  font-size: 14px;
}

.bento-item:hover .bento-arrow {
  display: inline-flex;
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   WHY CHOOSE US - 3D Cards
   ============================================ */
.why-us-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-content {
  max-width: 480px;
}

.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.3);
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
}

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

.why-card .card-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 51, 102, 0.05);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.why-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 12px;
  color: var(--accent-cyan);
  font-size: 20px;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-cyan);
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   HOW WE WORK - Timeline
   ============================================ */
.process-section {
  background: var(--bg-primary);
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-desc {
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-glass);
}

.process-step {
  flex: 1;
  position: relative;
  text-align: center;
}

.step-dot {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.process-step:hover .step-dot {
  border-color: var(--accent-cyan);
  color: #ffffff;
  background: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.2);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-cyan);
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-title {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #ffffff;
}

.cta-inner .section-desc {
  margin: 0 auto 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.cta-inner .section-label {
  color: var(--accent-orange);
}

.cta-inner .section-label::before {
  background: var(--accent-orange);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.modern-footer {
  background: #1a1a2e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  height: 50px;
}

.footer-brand .footer-logo .tm-symbol {
  position: absolute;
  top: 0;
  right: -16px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

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

/* ============================================
   FACTORY VIDEO SECTION
   ============================================ */
.factory-video-section {
  background: #0d0d1a;
  overflow: hidden;
}

.factory-video-section .section-label {
  color: rgba(255,255,255,0.5);
}

.factory-video-section .section-title {
  color: #fff;
}

.factory-video-section .section-desc {
  color: rgba(255,255,255,0.6);
}

.factory-video-header {
  text-align: center;
  margin-bottom: 48px;
}

.factory-video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 16px;
}

.video-play-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  background: rgba(255,255,255,1);
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.play-btn-circle i {
  font-size: 28px;
  color: #1a1f71;
  margin-left: 4px;
}

.play-text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.factory-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.factory-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.factory-highlight-item i {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.factory-highlight-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

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

@media (max-width: 575px) {
  .factory-highlights { grid-template-columns: 1fr; gap: 12px; }
  .play-btn-circle { width: 64px; height: 64px; }
  .play-btn-circle i { font-size: 22px; }
  .play-text { font-size: 12px; }
}

/* ============================================
   GLOBAL EXPORTS SECTION
   ============================================ */
.exports-section {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.exports-header {
  text-align: center;
  margin-bottom: 48px;
}

.exports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.export-region {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.export-region:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 31, 113, 0.1);
  border-color: #1a1f71;
}

.region-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1f71 0%, #3a42c1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 24px;
}

.export-region h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.export-region p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.exports-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--primary);
  border-radius: 16px;
  padding: 36px 32px;
}

.export-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}

.export-highlight i {
  font-size: 24px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  flex-shrink: 0;
}

.export-highlight h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.export-highlight p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.4;
}

.exports-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .exports-grid { grid-template-columns: repeat(2, 1fr); }
  .exports-highlights { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 575px) {
  .exports-grid { grid-template-columns: 1fr; }
  .exports-highlights { grid-template-columns: 1fr; padding: 24px 20px; }
  .export-region { padding: 24px 16px; }
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba( 15,  52,  96, 0.1);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff !important;
}

.modern-footer h4 {
  color: #ffffff !important;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--accent-orange);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--accent-orange) !important;
}

/* Ensure all footer links are visible */
.modern-footer a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.modern-footer a:hover {
  color: var(--accent-orange) !important;
}

.footer-newsletter {
  margin-top: 24px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

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

.newsletter-form button {
  padding: 10px 20px;
  background: var(--gradient-orange);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  box-shadow: 0 0 20px rgba( 15,  52,  96, 0.3);
}

.footer-bottom-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-inner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-modern {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-cyan);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.3);
}

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

.scroll-top-modern:hover {
  background: #004080;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.4);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 51, 102, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.15s ease;
}

.cursor-ring.hovering {
  transform: scale(1.5);
  border-color: var(--accent-cyan);
  background: rgba(0, 51, 102, 0.05);
}

/* ============================================
   INFINITE MARQUEE BANNER
   ============================================ */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: rgba(0, 51, 102, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.marquee-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pm-accent, #0f3460);
  opacity: 0.85;
  flex-shrink: 0;
}

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

/* ============================================
   INDUSTRIES WE SERVE
   ============================================ */
.industries-section {
  background: var(--bg-primary);
  position: relative;
}

.industries-header {
  text-align: center;
  margin-bottom: 64px;
}

.industries-header .section-desc {
  margin: 0 auto;
}

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

.industry-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.3);
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card .industry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.12);
  border-radius: 16px;
  font-size: 24px;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  background: var(--accent-cyan);
  color: #ffffff;
  transform: scale(1.1);
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: var(--accent-cyan);
}

.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================
   GLOW DIVIDERS
   ============================================ */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 51, 102, 0.12) 20%, rgba(0, 102, 204, 0.18) 50%, rgba(0, 51, 102, 0.12) 80%, transparent 100%);
  opacity: 1;
}

.glow-divider-orange {
  background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
  opacity: 0.3;
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Scroll-aware: hidden until the user scrolls past the hero (added by JS) */
.floating-buttons.is-hidden {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.float-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s var(--transition-smooth);
  text-decoration: none;
  position: relative;
}

.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  transform: scale(1);
  animation: pulseRing 2.5s infinite;
}

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

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.float-btn:hover::after {
  animation: none;
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn.whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.float-btn.phone {
  background: var(--gradient-accent);
}

.float-btn.phone:hover {
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.4);
}

.float-btn.email-btn {
  background: var(--gradient-orange);
}

.float-btn.email-btn:hover {
  box-shadow: 0 8px 30px rgba( 15,  52,  96, 0.4);
}

/* Float btn tooltip */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   INNER PAGES - Page Banner
   ============================================ */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.page-banner h1 span {
  color: var(--accent-orange);
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-modern a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
  color: #ffffff;
}

.breadcrumb-modern span.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.breadcrumb-modern span.current {
  color: var(--accent-orange);
  font-size: 14px;
}

/* ============================================
   INNER PAGES - Content Sections
   ============================================ */
.inner-content {
  padding: 80px 0;
}

.inner-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.inner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.inner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.inner-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.inner-content h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.inner-content ul {
  list-style: none;
  padding: 0;
}

.inner-content ul li {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}

.inner-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.inner-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ============================================
   INNER PAGES - About Page
   ============================================ */
.about-detail-section {
  padding: 80px 0;
}

.about-image-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.about-content-col .section-label {
  margin-bottom: 12px;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.vm-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.vm-card .vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 51, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.vm-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.vm-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   INNER PAGES - Product Detail
   ============================================ */
.product-detail-section {
  padding: 80px 0;
}

.product-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.product-header-grid .product-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.product-header-grid .product-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.product-header-grid .product-info h4 {
  color: var(--accent-blue);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.product-header-grid .product-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Product series grid cards */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.series-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.series-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
  background: rgba(0, 51, 102, 0.03);
}

.series-card h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.series-card:hover h4 {
  color: var(--accent-cyan);
}

/* Modern tabs for product specs */
.modern-tabs {
  margin-top: 60px;
}

.tab-buttons-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0;
}

.tab-btn-modern {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn-modern:hover {
  color: var(--text-primary);
}

.tab-btn-modern.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.tab-panel-modern {
  display: none;
  animation: fadeTabIn 0.3s ease;
}

.tab-panel-modern.active {
  display: block;
}

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

.tab-panel-modern h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.tab-panel-modern ul {
  list-style: none;
  padding: 0;
}

.tab-panel-modern ul li {
  color: var(--text-secondary);
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.tab-panel-modern ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
}

/* Technical sheet section */
.tech-sheet-section {
  padding: 60px 0;
  text-align: center;
}

.tech-sheet-section h3 {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.tech-sheet-section img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  margin-bottom: 32px;
}

.tech-sheet-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Assembly types grid */
.assembly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.assembly-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.assembly-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.assembly-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.assembly-card h4 {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   INNER PAGES - Gallery
   ============================================ */
.gallery-section {
  padding: 80px 0;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border-glass);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 24px;
  color: #ffffff;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  padding: 20px;
  transition: color 0.3s ease;
}

.lightbox-nav:hover {
  color: var(--accent-orange);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ============================================
   INNER PAGES - Contact
   ============================================ */
.contact-info-section {
  padding: 80px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.contact-info-card .ci-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 51, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-cyan);
  margin: 0 auto 20px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  display: block;
}

.contact-info-card a:hover {
  color: var(--accent-blue);
}

/* Contact form */
.contact-form-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 100%;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.modern-form .form-group {
  margin-bottom: 16px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
  color: var(--text-muted);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modern-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.modern-form select option {
  background: #ffffff;
  color: var(--text-primary);
}

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

/* ============================================
   INNER PAGES - Industries Detail
   ============================================ */
.industries-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.industry-detail-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.industry-detail-card .id-image {
  height: 200px;
  overflow: hidden;
}

.industry-detail-card .id-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.industry-detail-card:hover .id-image img {
  transform: scale(1.05);
}

.industry-detail-card .id-content {
  padding: 24px;
}

.industry-detail-card .id-content h4 {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ============================================
   INNER PAGES - Installation Guide
   ============================================ */
.installation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.install-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.install-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.08);
}

.install-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.install-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   INNER PAGES - FAQ
   ============================================ */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--accent-blue);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question .faq-toggle {
  color: var(--accent-blue);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   INNER PAGES - 404
   ============================================ */
.error-404-section {
  padding: 120px 0;
  text-align: center;
}

.error-404-section h1 {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-404-section h3 {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.error-404-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   INNER PAGES - Responsive
   ============================================ */
@media (max-width: 991px) {
  .content-two-col,
  .product-header-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-detail-grid,
  .installation-grid,
  .assembly-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 130px 0 60px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
  .tab-buttons-modern {
    flex-direction: column;
  }
  .tab-btn-modern {
    text-align: left;
  }
  .industries-detail-grid,
  .installation-grid,
  .assembly-grid {
    grid-template-columns: 1fr;
  }
  .series-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .series-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-stats {
    gap: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-timeline {
    flex-direction: column;
    gap: 32px;
  }
  .process-timeline::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .section-padding {
    padding: 80px 0;
  }
  .floating-buttons {
    right: 16px;
    bottom: 80px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .float-btn::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    gap: 6px;
    margin-left: 4px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-trust-indicator {
    margin-bottom: 16px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
  }
  .hero-stat .stat-number {
    font-size: 24px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .why-us-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .cursor-dot, .cursor-ring {
    display: none;
  }
  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .container-modern {
    padding: 0 16px;
  }
  .section-padding {
    padding: 64px 0;
  }
  .hero-section {
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 60px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn-modern {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .trust-badges-row {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HERO TRUST INDICATOR
   ============================================ */
.hero-trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-indicator i {
  color: #25D366;
  font-size: 14px;
}

/* ============================================
   TRUST BADGES ROW (About Section)
   ============================================ */
.trust-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border-glass);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--transition-smooth);
}

.trust-badge-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(0, 51, 102, 0.06),
    0 12px 32px rgba(0, 51, 102, 0.1);
  border-color: var(--accent-cyan);
}

.trust-badge-item i {
  font-size: 32px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.trust-badge-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .trust-badges-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--bg-secondary);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(0, 51, 102, 0.06),
    0 16px 48px rgba(0, 51, 102, 0.12);
  border-color: var(--accent-cyan);
}

.testimonial-card .quote-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 12px;
  color: var(--accent-cyan);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.author-info h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-company {
  font-size: 13px;
  color: var(--text-muted);
}

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

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

/* ============================================
   ENHANCED FRONTEND - 2025 IMPROVEMENTS
   ============================================ */

/* ---------- Smooth Image Reveal ---------- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}
img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ---------- Section Heading Accent ---------- */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin-top: 16px;
  border-radius: 2px;
}
.section-title.text-center::after,
.sec-title.centred .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Button Hover Sweep Effect ---------- */
.btn-modern.btn-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-modern.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  z-index: -1;
  transition: left 0.6s var(--transition-smooth);
}
.btn-modern.btn-cta:hover::before {
  left: 100%;
}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--transition-smooth);
}
.mobile-sticky-cta.visible {
  transform: translateY(0);
}
.mobile-sticky-cta .cta-inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-sticky-cta .cta-btn-mobile {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-sticky-cta .cta-btn-quote {
  background: var(--accent-cyan);
  color: #fff;
}
.mobile-sticky-cta .cta-btn-call {
  background: #25D366;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  /* Offset floating buttons above sticky CTA + scroll-to-top */
  .floating-buttons {
    bottom: 140px;
  }
  .scroll-top-modern {
    bottom: 80px;
  }
  /* Sticky CTA bar already has WhatsApp — hide the duplicate bubble on mobile */
  .float-btn.whatsapp {
    display: none;
  }
}

/* ---------- Table Scroll Hint (mobile) ---------- */
.table-scroll-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.table-scroll-wrapper.scrolled-right::after {
  opacity: 0;
}

/* ---------- Smooth Card Border Top Accent ---------- */
.why-card::before,
.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--transition-smooth);
}
.why-card:hover::before,
.industry-card:hover::before {
  transform: scaleX(1);
}

/* ---------- Active Nav Highlight ---------- */
.nav-menu > li.section-active > a {
  color: var(--accent-cyan);
  background: rgba(0, 51, 102, 0.06);
}

/* ---------- Image Hover Brightness ---------- */
.bento-item:hover .bento-bg,
.about-image-wrapper:hover img {
  filter: brightness(1.05);
}

/* ---------- Subtle Noise Texture on Flat Sections ---------- */
.industries-section::before,
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---------- Smooth Section Entrance ---------- */
.section-padding {
  position: relative;
}

/* ---------- Footer Enhancement ---------- */
.modern-footer .footer-social a {
  transition: all 0.3s var(--transition-smooth);
}
.modern-footer .footer-social a:hover {
  transform: translateY(-3px);
}

/* ---------- Marquee hover color pop ---------- */
.marquee-item:hover {
  color: rgba(0, 51, 102, 0.3);
  transition: color 0.3s ease;
}

/* ============================================
   Small Phone Fixes (375px)
   ============================================ */
@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .section-desc {
    font-size: 14px;
  }
  .container-modern {
    padding: 0 12px;
  }
  .section-padding {
    padding: 50px 0;
  }
  .hero-buttons .btn-modern {
    padding: 12px 20px;
    font-size: 14px;
  }
  .trust-badges-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-badge-item {
    padding: 16px 10px;
  }
  .trust-badge-item i {
    font-size: 24px;
  }
  .trust-badge-item span {
    font-size: 11px;
  }
  .exports-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .bento-title {
    font-size: 14px;
  }
}

/* ============================================
   Extra Small Phone Fixes (320px)
   ============================================ */
@media (max-width: 320px) {
  .container-modern {
    padding: 0 8px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-modern {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .mobile-sticky-cta .cta-inner {
    flex-direction: column;
    gap: 6px;
  }
  .mobile-sticky-cta .cta-btn-mobile {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ============================================
   Latest from Blog Section
   ============================================ */
.blog-latest-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.blog-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.blog-latest-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  height: 200px;
}

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

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

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-meta i {
  margin-right: 4px;
  color: var(--accent-cyan);
}

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--accent-cyan);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 10px;
  color: var(--accent-blue);
}

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

@media (max-width: 640px) {
  .blog-latest-grid {
    grid-template-columns: 1fr;
  }
  .blog-latest-section {
    padding: 60px 0;
  }
}

/* ============================================
   SEO Content Sections (Homepage Rich Content)
   ============================================ */
.seo-content-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.seo-content-section--alt {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.seo-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 51, 102, 0.1), transparent);
}

.seo-block {
  max-width: 1140px;
  margin: 0 auto;
}
.seo-block-header {
  margin-bottom: 32px;
  max-width: 900px;
}
.seo-block-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.seo-block-header .section-title {
  margin-bottom: 16px;
}
.seo-block-intro {
  font-size: 17px;
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin-top: 16px;
}
.seo-block-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary, #4a5568);
  margin-bottom: 20px;
}
.seo-block-body p:last-child {
  margin-bottom: 0;
}
.seo-block-body strong {
  color: #0f3460;
  font-weight: 600;
}
.seo-block-footer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary, #4a5568);
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba( 15,  52,  96, 0.06), rgba(0, 51, 102, 0.04));
  border-left: 4px solid var(--accent-orange, #0f3460);
  border-radius: 8px;
  margin-top: 32px;
}
.seo-block-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Why Choose Us Features Grid */
.seo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.seo-feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.seo-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue, #003366), var(--accent-orange, #0f3460));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.seo-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 51, 102, 0.12);
  border-color: transparent;
}
.seo-feature-card:hover::before {
  transform: scaleX(1);
}
.seo-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #003366, #004080);
  color: #fff;
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0, 51, 102, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.seo-feature-card:hover .seo-feature-icon {
  background: linear-gradient(135deg, #0f3460, #0f3460);
  transform: rotate(-5deg) scale(1.05);
}
.seo-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue, #003366);
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.3;
}
.seo-feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
}

/* Product Range List */
.seo-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.seo-product-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(0, 51, 102, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.seo-product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.1);
  border-color: rgba( 15,  52,  96, 0.3);
}
.seo-product-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue, #003366);
  margin-bottom: 14px;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.seo-product-item h3 i {
  font-size: 18px;
  background: linear-gradient(135deg, #003366, #0f3460);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seo-product-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
}
.seo-product-item p strong {
  color: var(--accent-blue, #003366);
  font-weight: 600;
}

/* ============================================
   FAQ Section (Accordion)
   ============================================ */
.faq-modern-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}
.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.faq-header .section-title {
  margin-bottom: 16px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item:hover {
  border-color: rgba( 15,  52,  96, 0.3);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.06);
}
.faq-item[open] {
  border-color: rgba(0, 51, 102, 0.15);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-blue, #003366);
  font-family: 'Space Grotesk', sans-serif;
  list-style: none;
  transition: all 0.3s ease;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  background: rgba(0, 51, 102, 0.02);
}
.faq-icon {
  font-size: 14px;
  color: var(--accent-orange, #0f3460);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 28px 24px;
  animation: faqFadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary, #555);
  margin: 0;
}
.faq-answer a {
  color: var(--accent-orange, #0f3460);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.faq-answer a:hover {
  color: var(--accent-blue, #003366);
}
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .seo-block-header {
    text-align: left;
  }
  .seo-block-body p {
    font-size: 15px;
    line-height: 1.75;
  }
  .seo-features-grid,
  .seo-product-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .seo-feature-card,
  .seo-product-item {
    padding: 24px 20px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
  .seo-block-cta {
    flex-direction: column;
  }
  .seo-block-cta .btn-modern {
    width: 100%;
    justify-content: center;
  }
}

/* SEO/FAQ Animation Safety Net — ensure content is always visible even if scroll triggers fail */
.seo-content-section .seo-block,
.faq-modern-section .faq-list,
.faq-modern-section .faq-item,
.faq-modern-section .faq-header {
  opacity: 1 !important;
  transform: none !important;
}
.seo-content-section .seo-feature-card,
.seo-content-section .seo-product-item {
  opacity: 1 !important;
}

/* Products Section — Detailed SEO descriptions (below bento grid) */
.products-details {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 51, 102, 0.08);
  position: relative;
}
.products-details::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue, #003366), var(--accent-orange, #0f3460));
  border-radius: 2px;
}
.products-details-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-blue, #003366);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}
.products-details .seo-product-list {
  margin-top: 0;
}

/* Group note (subtle highlight box) */
.seo-group-note {
  margin-top: 28px !important;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.04), rgba( 15,  52,  96, 0.04));
  border-left: 3px solid var(--accent-cyan, #003366);
  border-radius: 8px;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--text-secondary, #555) !important;
}

/* ============================================
   Contact FAB group (phone + email fold into one bubble)
   ============================================ */
.contact-fab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-fab .contact-fab-item {
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.contact-fab:hover .contact-fab-item,
.contact-fab:focus-within .contact-fab-item,
.contact-fab.is-open .contact-fab-item {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.contact-fab-toggle {
  background: linear-gradient(135deg, #0f3460, #003366);
}
.contact-fab:hover .contact-fab-toggle,
.contact-fab.is-open .contact-fab-toggle {
  background: linear-gradient(135deg, #0c1f3f, #0f3460);
}

/* ============================================
   Footer polish
   ============================================ */
.footer-grid {
  gap: 40px 56px;
  align-items: start;
}
.footer-col h4 {
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 14px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14.5px;
  line-height: 1.6;
}
