:root {
  --primary: #3A449C;
  --primary-dark: #2a3278;
  --primary-deeper: #1e2455;
  --accent: #5891CD;
  --accent-light: #7ab0de;
  --accent-lighter: #c8dff4;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --light-gray: #e8edf5;
  --mid-gray: #8a9bb5;
  --dark: #0d1225;
  --dark-2: #151c35;
  --dark-3: #1e2748;
  --text-dark: #0d1225;
  --text-med: #3d4a6b;
  --text-light: #6b7a9e;
  --gold: #c9a84c;
  --gradient-primary: linear-gradient(135deg, #3A449C 0%, #5891CD 100%);
  --gradient-dark: linear-gradient(135deg, #0d1225 0%, #1e2748 100%);
  --shadow-sm: 0 2px 12px rgba(58,68,156,0.08);
  --shadow-md: 0 8px 40px rgba(58,68,156,0.15);
  --shadow-lg: 0 20px 80px rgba(58,68,156,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; max-width: 100%; }
section, .section, .container { overflow-x: hidden; }

/* Global image safety */
img { max-width: 100%; height: auto; display: block; }

/* Brands section specific overflow fix */
#brands { overflow: hidden; }
.brands-grid { min-width: 0; }
.brand-card { min-width: 0; overflow: hidden; }
.brand-card img { width: 100%; max-width: 100%; height: auto; object-fit: contain; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding:10px 50px;
  display: flex; align-items: center; justify-content: space-between;
  background:#fff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88,145,205,0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #fff;
  border-bottom-color: rgba(88,145,205,0.3);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.nav-logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white;
  letter-spacing: -1px; font-family: 'Montserrat', sans-serif;
  position: relative; overflow: hidden;
}
.nav-logo-icon::before {
  content: '';
  position: absolute; top: -50%; left: 30%;
  width: 3px; height: 200%;
  background: rgba(255,255,255,0.6);
  transform: rotate(15deg);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-en { font-size: 15px; font-weight: 800; color: white; letter-spacing: 1.5px; line-height: 1.1; }
.nav-logo-ar { font-size: 10px; font-weight: 400; color: var(--accent-light); font-family: 'Cairo', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
  color:#3b4799;
  text-decoration: none; transition: all 0.25s;
  position: relative;
}
.nav-link:hover { color: white; background: rgba(88,145,205,0.15); }
.nav-link.active { color: var(--accent-light); }
.nav-products-wrapper { position: relative; }
.nav-products-wrapper:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu {
  position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: 680px; background: var(--dark-2);
  border: 1px solid rgba(88,145,205,0.2);
  border-radius: var(--radius-lg); padding: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.mega-item:hover { background: rgba(88,145,205,0.12); color: white; }
.mega-item-icon { font-size: 20px; width: 32px; text-align: center; }
.mega-item-text { font-size: 12px; font-weight: 600; }
.nav-cta {
  padding: 10px 22px; border-radius: 8px;
  background: var(--gradient-primary);
  font-size: 13px; font-weight: 700; color: white;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.25s; border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(58,68,156,0.4); }
.nav-top-bar {
  background: var(--primary-deeper); padding: 8px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px;
}
.nav-top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.nav-top-bar a:hover { color: var(--accent-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--gradient-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(88,145,205,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(58,68,156,0.15) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(88,145,205,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,145,205,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translateY(0); } 100% { transform: translateY(60px); } }
.hero-glow {
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,145,205,0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(88,145,205,0.15); border: 1px solid rgba(88,145,205,0.3);
  font-size: 11px; font-weight: 700; color: var(--accent-light);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}

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

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-size: clamp(40px, 5vw, 68px); font-weight: 900;
  color: white; line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--accent); position: relative; }
.hero-title .accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary); border-radius: 2px;
}
.hero-subtitle { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  background: var(--gradient-primary); color: white;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(58,68,156,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,68,156,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: white;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-size: 32px; font-weight: 900; color: white; line-height: 1; }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 480px; }
.hero-main-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(88,145,205,0.2);
  border-radius: 24px; padding: 32px;
  backdrop-filter: blur(20px);
}
.hero-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hero-product-item {
  background: rgba(88,145,205,0.08); border: 1px solid rgba(88,145,205,0.15);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  transition: all 0.3s;
}
.hero-product-item:hover { background: rgba(88,145,205,0.15); border-color: rgba(88,145,205,0.3); transform: translateY(-4px); }
.hero-product-emoji { font-size: 32px; margin-bottom: 10px; }
.hero-product-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }
.floating-badge {
  position: absolute; padding: 12px 18px; border-radius: 12px;
  background: rgba(13,18,37,0.95); border: 1px solid rgba(88,145,205,0.3);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.floating-badge-1 { top: -20px; right: -30px; animation-delay: 0s; }
.floating-badge-2 { bottom: -20px; left: -30px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-badge-icon { font-size: 20px; }
.floating-badge-text { font-size: 11px; font-weight: 700; color: white; }
.floating-badge-sub { font-size: 10px; color: rgba(255,255,255,0.5); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(88,145,205,0.5)); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero-scroll-text { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.4); }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--gradient-dark); }
.section-gray { background: var(--off-white); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(58,68,156,0.1); color: var(--primary); margin-bottom: 16px;
  border: 1px solid rgba(58,68,156,0.2);
}
.section-dark .section-label { background: rgba(88,145,205,0.15); color: var(--accent-light); border-color: rgba(88,145,205,0.25); }
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: var(--text-dark); line-height: 1.1; letter-spacing: -0.5px; }
.section-dark .section-title { color: white; }
.section-title .highlight { color: var(--primary); }
.section-dark .section-title .highlight { color: var(--accent-light); }
.section-subtitle { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ─── MARQUEE / CLIENTS ─── */
.marquee-section { padding: 40px 0; background: var(--primary-deeper); overflow: hidden; border-top: 1px solid rgba(88,145,205,0.2); border-bottom: 1px solid rgba(88,145,205,0.2); }
.marquee-track { display: flex; gap: 80px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item {
    background:#fff;
    padding:5px;
    display: flex; align-items: center; gap: 12px; flex-shrink: 0; 
}
.marquee-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.marquee-item-text { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-image-frame {
  aspect-ratio: 4/3; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-image-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 12px; padding: 24px; width: 100%; height: 100%; }
.about-image-cell {
  border-radius: 10px; background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: all 0.3s;
}
.about-image-cell:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.about-image-cell.large { grid-column: span 2; grid-row: span 2; font-size: 52px; }
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: white; border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.about-accent-num { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.about-accent-label { font-size: 12px; font-weight: 600; color: var(--text-light); }
.about-text { font-size: 16px; color: var(--text-med); line-height: 1.8; margin-bottom: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.about-feature:hover { border-color: var(--accent-lighter); background: white; box-shadow: var(--shadow-sm); }
.about-feature-icon { font-size: 24px; }
.about-feature-title { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.about-feature-text { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ─── PRODUCTS ─── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: 32px 24px; text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; position: relative; overflow: hidden;
  group: true;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-primary); opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { opacity: 1; }
.product-card:hover .product-icon,
.product-card:hover .product-title,
.product-card:hover .product-desc,
.product-card:hover .product-count { color: white; }
.product-card:hover .product-arrow { background: rgba(255,255,255,0.2); color: white; }
.product-icon {
  font-size: 48px; margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.3s;
  display: block;
}
.product-title { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; position: relative; z-index: 1; transition: color 0.3s; }
.product-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; transition: color 0.3s; }
.product-footer { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.product-count { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 0.5px; transition: color 0.3s; }
.product-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.3s;
}

/* ─── BRANDS ─── */
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 48px; }
.brand-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3/2; transition: all 0.3s;
}
.brand-card:hover { border-color: var(--accent-lighter); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.brand-name { font-size: 14px; font-weight: 800; color: var(--mid-gray); letter-spacing: 1px; transition: color 0.3s; }
.brand-card:hover .brand-name { color: var(--primary); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(88,145,205,0.12);
  transition: all 0.3s;
}
.why-card:hover { background: rgba(88,145,205,0.08); border-color: rgba(88,145,205,0.25); transform: translateY(-4px); }
.why-num { font-size: 48px; font-weight: 900; color: rgba(88,145,205,0.2); line-height: 1; margin-bottom: 16px; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-title { font-size: 14px; font-weight: 800; color: white; margin-bottom: 10px; }
.why-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── INDUSTRIES ─── */
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; position: relative; cursor: pointer;
  transition: all 0.4s;
}
.industry-card:hover { transform: scale(1.02); }
.industry-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.industry-card:nth-child(1) .industry-bg { background: linear-gradient(135deg, #1a1a2e, #3a449c); }
.industry-card:nth-child(2) .industry-bg { background: linear-gradient(135deg, #0f3460, #5891cd); }
.industry-card:nth-child(3) .industry-bg { background: linear-gradient(135deg, #162447, #1f4068); }
.industry-card:nth-child(4) .industry-bg { background: linear-gradient(135deg, #1b1b2f, #4a4e8a); }
.industry-card:nth-child(5) .industry-bg { background: linear-gradient(135deg, #0d1b2a, #1b4f72); }
.industry-card:nth-child(6) .industry-bg { background: linear-gradient(135deg, #16213e, #3a449c); }
.industry-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.industry-name { font-size: 13px; font-weight: 800; color: white; letter-spacing: 0.5px; }
.industry-desc { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── FEATURED PRODUCTS ─── */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.3s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-lighter); }
.feat-card-img {
  aspect-ratio: 4/3; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.feat-card:hover .feat-card-img { background: linear-gradient(135deg, rgba(58,68,156,0.05), rgba(88,145,205,0.1)); }
.feat-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
}
.feat-badge.new { background: var(--primary); color: white; }
.feat-badge.hot { background: #e74c3c; color: white; }
.feat-badge.top { background: var(--gold); color: white; }
.feat-card-body { padding: 20px; }
.feat-card-cat { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.feat-card-name { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.feat-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.feat-card-foot { display: flex; align-items: center; justify-content: space-between; }
.feat-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--gradient-primary); color: white;
  font-size: 12px; font-weight: 700; text-decoration: none;
  transition: all 0.2s;
}
.feat-card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(58,68,156,0.3); }
.feat-card-inquiry { font-size: 11px; font-weight: 600; color: var(--text-light); text-decoration: none; }
.feat-card-inquiry:hover { color: var(--primary); }

/* ─── CERTIFICATIONS ─── */
.cert-strip {
  background: var(--off-white); border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray);
  padding: 60px 0;
}
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cert-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.cert-card:hover { border-color: var(--accent-lighter); box-shadow: var(--shadow-sm); }
.cert-icon { font-size: 40px; margin-bottom: 16px; }
.cert-title { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.cert-text { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 32px; font-weight: 900; color: white; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(88,145,205,0.15); border: 1px solid rgba(88,145,205,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.contact-detail-value { font-size: 14px; font-weight: 600; color: white; margin-top: 2px; }
.contact-wa {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 10px;
  background: #25d366; color: white;
  font-size: 14px; font-weight: 700; text-decoration: none;
  margin-top: 24px; transition: all 0.3s;
}
.contact-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(88,145,205,0.15);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(88,145,205,0.2);
  color: white; font-size: 14px; font-family: 'Montserrat', sans-serif;
  transition: all 0.3s; outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-textarea { height: 120px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-2); color: white; }
.form-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--gradient-primary); color: white; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,68,156,0.4); }
.map-placeholder {
  height: 200px; border-radius: var(--radius-lg); margin-top: 24px;
  background: rgba(88,145,205,0.1); border: 1px solid rgba(88,145,205,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(88,145,205,0.4);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark); border-top: 1px solid rgba(88,145,205,0.1);
  padding: 80px 0 0;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-text { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 20px 0 28px; }
.footer-socials { display: flex; gap: 10px; }

.footer-social {
  color:#fff;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 16px; transition: all 0.3s;
}

.footer-social:hover { background: rgba(88,145,205,0.15); border-color: rgba(88,145,205,0.3); }
.footer-col-title { font-size: 13px; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--accent-light); }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[class*="delay-1"] { transition-delay: 0.1s; }
[class*="delay-2"] { transition-delay: 0.2s; }
[class*="delay-3"] { transition-delay: 0.3s; }
[class*="delay-4"] { transition-delay: 0.4s; }
[class*="delay-5"] { transition-delay: 0.5s; }
[class*="delay-6"] { transition-delay: 0.6s; }
[class*="delay-7"] { transition-delay: 0.7s; }
[class*="delay-8"] { transition-delay: 0.8s; }

/* ─── DIVIDER ─── */
.divider-line { height: 1px; background: linear-gradient(to right, transparent, rgba(88,145,205,0.3), transparent); }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--gradient-primary); padding: 48px 0; }
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.strip-stat { text-align: center; }
.strip-stat-num { font-size: 48px; font-weight: 900; color: white; line-height: 1; }
.strip-stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waFloat 3s ease-in-out infinite;
  transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1200px)
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .brand-card img { max-width: 100%; height: auto; object-fit: contain; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .mega-menu { width: 560px; }
  .hero-content { gap: 48px; }
  .about-grid { gap: 48px; }
  .navbar { padding: 10px 32px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (max 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .container { padding: 0 32px; }
  .section-header { margin-bottom: 48px; }

  /* Navbar */
  .navbar { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-top-bar { display: none; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 110px 32px 64px;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; flex-wrap: wrap; }
  .hero-badge { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-accent-card { right: 0; bottom: -20px; }
  .about-features { grid-template-columns: 1fr 1fr; }

  /* Products */
  .products-grid { grid-template-columns: repeat(3, 1fr); }

  /* Featured */
  .featured-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product Tabs */
  .product-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .tab-btn { font-size: 12px; padding: 8px 14px; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(4, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-card { aspect-ratio: 4/5; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 24px; }

  /* Stats */
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .strip-stat-num { font-size: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Cert strip / clients */
  .cert-strip { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-subtitle { font-size: 14px; }

  /* Navbar */
  .navbar { padding: 10px 16px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }

  /* Hero */
  .hero-content { padding: 100px 20px 56px; }
  .hero-title { font-size: clamp(30px, 7vw, 48px); letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 26px; }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 13px; }

  /* About */
  .about-grid { gap: 40px; }
  .about-accent-card { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-flex; }
  .about-visual { text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .about-text { font-size: 15px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card { padding: 22px 16px; }
  .product-icon { font-size: 36px; margin-bottom: 14px; }
  .product-title { font-size: 13px; }
  .product-desc { font-size: 11px; }

  /* Featured grid */
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feat-card-body { padding: 14px; }
  .feat-card-desc { font-size: 11px; }

  /* Product tabs */
  .product-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; font-size: 12px; padding: 8px 14px; }

  /* Slider controls */
  .slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
  .brand-card { padding: 12px 8px; overflow: hidden; }
  .brand-card img { max-width: 100%; height: auto; object-fit: contain; display: block; }
  .brand-name { font-size: 12px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 28px 14px; }
  .why-num { font-size: 36px; }
  .why-icon { font-size: 28px; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { aspect-ratio: 3/4; }
  .industry-name { font-size: 12px; }
  .industry-desc { font-size: 10px; }

  /* Stats strip */
  .stats-strip { padding: 40px 0; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strip-stat-num { font-size: 36px; }
  .strip-stat-label { font-size: 11px; }

  /* Marquee */
  .marquee-track { gap: 48px; }
  .marquee-item { width: 80px; }
  .marquee-item img { max-height: 36px; object-fit: contain; }

  /* Section down slider */
  .section_down_slider { padding: 24px 20px; }
  .section_down_slider h2 { font-size: 20px; }
  .section_down_slider p { font-size: 13px; }

  /* EEWC section */
  .eewc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .eewc-card { padding: 20px 14px !important; }

  /* Contact */
  .contact-info h3 { font-size: 24px; }
  .contact-info p { font-size: 14px; margin-bottom: 24px; }
  .contact-form { padding: 24px 16px; border-radius: var(--radius-lg); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group.full { grid-column: span 1; }
  .contact-wa { font-size: 13px; padding: 12px 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 56px 0 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* WA float */
  .wa-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }

  /* Cert / clients strip */
  .cert-strip { padding: 40px 0; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cert-card { padding: 20px 14px; }

  /* Trustglobal contact */
  .trustglobal-contact-wrapper { flex-direction: column !important; gap: 20px !important; text-align: center; }
  .trustglobal-contact-left { flex-direction: column !important; align-items: center !important; text-align: center; }
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content { padding: 90px 16px 48px; }
  .hero-title { font-size: clamp(26px, 8vw, 38px); }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; padding-top: 28px; margin-top: 28px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { padding: 20px 16px; text-align: left; display: flex; flex-direction: column; }

  /* Featured */
  .featured-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 24px 16px; text-align: left; display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
  .why-num { font-size: 28px; min-width: 40px; margin-bottom: 0; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .industry-card { aspect-ratio: 1/1; }

  /* Stats */
  .stats-strip-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .strip-stat-num { font-size: 30px; }

  /* About */
  .about-grid { gap: 32px; }
  .about-features { grid-template-columns: 1fr; }

  /* EEWC */
  .eewc-grid { grid-template-columns: 1fr !important; }

  /* Contact form */
  .contact-form { padding: 20px 14px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Cert */
  .cert-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Navbar logo text on very small screens */
  .nav-logo-en { font-size: 13px; }
}
