/* ==========================================================================
   MEGA MEDICAL — NEXT-GEN CLINICAL TECH & LUXURY VISUAL SYSTEM
   Parent: El Salhy Group (Established 1983)
   ========================================================================== */

:root {
  --bg-deep: #f8fafc;
  --bg-darker: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --neon-cyan: #0284c7;
  --neon-cyan-glow: rgba(2, 132, 199, 0.25);
  --electric-blue: #0369a1;
  --electric-blue-light: #0284c7;
  --pure-teal: #0d9488;
  
  --salhy-orange: #ff7700;
  --salhy-orange-glow: rgba(255, 119, 0, 0.35);
  --salhy-gold: #ea580c;
  
  --border-neon: rgba(2, 132, 199, 0.20);
  --border-neon-strong: rgba(2, 132, 199, 0.45);
  --border-orange: rgba(255, 119, 0, 0.35);
  --border-white-frosted: rgba(226, 232, 240, 0.90);
  
  --text-pure: #0b1a30;
  --text-silver: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --shadow-neon: 0 8px 25px rgba(2, 132, 199, 0.18);
  --shadow-orange: 0 8px 25px rgba(255, 119, 0, 0.22);
  --shadow-deep: 0 15px 35px rgba(11, 26, 48, 0.08);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
  cursor: url('assets/cursor.png') 0 0, auto;
}

body {
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f6fb 45%, #e8f1f8 100%);
  background-attachment: fixed;
  color: var(--text-silver);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  cursor: url('assets/cursor.png') 0 0, auto;
}

/* Custom MegaMedical Cursor for Interactive Elements */
a, button, [role="button"], input[type="submit"], input[type="button"], select, 
.btn-primary-neon, .btn-secondary-dark, .btn-nav-calc, .subsidiary-neon-card, 
.stepper-btn, .slider-arrow-btn, .slider-tab-dot, .btn-slide-explore, 
.product-matrix-card, .term-glass-card, .dock-action-btn {
  cursor: url('assets/cursor.png') 0 0, pointer !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--electric-blue));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--salhy-orange);
}

/* Dynamic Ambient Canvas */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* Custom Cursor Circle - Disabled per user preference */
.custom-cursor-dot,
.custom-cursor-trail {
  display: none !important;
}

/* App Master Layout */
.app-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   TOP BAR (Group Affiliation & Global Commercial Info)
   ========================================================================== */
.top-header-strip {
  background: linear-gradient(90deg, rgba(16, 34, 62, 0.95) 0%, rgba(24, 48, 84, 0.95) 50%, rgba(16, 34, 62, 0.95) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.top-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.group-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b1a30;
  box-shadow: 0 1px 3px rgba(11, 26, 48, 0.04);
}

.group-link-badge span {
  color: #0b1a30;
}

.top-badge-title {
  color: #0b1a30 !important;
  font-weight: 800;
}

.top-badge-sep {
  color: #94a3b8 !important;
}

.top-badge-cert {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7 !important;
  border: 1px solid rgba(2, 132, 199, 0.28);
  padding: 1px 7px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.3px;
}

.top-badge-desc {
  color: #475569 !important;
  font-weight: 600;
}

.badge-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-ring 1.5s infinite;
}

.group-link-badge a {
  color: var(--text-pure);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.group-link-badge a:hover {
  color: var(--salhy-orange);
}

.tag-legacy {
  background: rgba(255, 119, 0, 0.15);
  color: var(--salhy-orange);
  border: 1px solid rgba(255, 119, 0, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.top-strip-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-strip-link {
  color: var(--text-silver);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.top-strip-link:hover {
  color: var(--neon-cyan);
}

.top-strip-link svg {
  width: 14px;
  height: 14px;
  color: var(--neon-cyan);
}

.sound-toggle-btn {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-neon);
  color: var(--neon-cyan);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.sound-toggle-btn:hover {
  background: var(--neon-cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
}

/* ==========================================================================
   NAVIGATION BAR (Glassmorphism & Neon Indicators)
   ========================================================================== */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 28, 52, 0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: var(--transition-smooth);
}

.main-navbar.scrolled {
  background: rgba(12, 24, 46, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-main-logo {
  height: 104px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 12px rgba(0, 242, 254, 0.35));
  transition: var(--transition-smooth);
  display: block;
}

.brand-main-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(0, 242, 254, 0.6));
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

.brand-parent-logo {
  height: 36px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.brand-parent-logo:hover {
  opacity: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-item-link {
  color: var(--text-silver);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--electric-blue));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-item-link:hover, .nav-item-link.active {
  color: var(--text-pure);
}

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

.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav-calc {
  background: linear-gradient(135deg, #0284c7 0%, #00f2fe 100%);
  color: #030712;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  transition: var(--transition-smooth);
}

.btn-nav-calc:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.7);
}

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-neon);
  color: var(--text-pure);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   PAGE HERO BANNER (FOR SUB-PAGES)
   ========================================================================== */
.subpage-hero {
  position: relative;
  padding: 70px 0 50px;
  background: radial-gradient(circle at 50% 20%, rgba(2, 132, 199, 0.18) 0%, rgba(3, 7, 18, 0.98) 70%);
  border-bottom: 1px solid var(--border-neon);
  text-align: center;
  overflow: hidden;
}

.subpage-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.badge-tag-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.subpage-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1.2;
  margin-bottom: 16px;
}

.subpage-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #00f2fe 50%, #ff7700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   HOME PAGE: 3D THREE.JS HERO SECTION
   ========================================================================== */
.home-hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 35%, transparent 68%),
    radial-gradient(circle at 80% 25%, rgba(0, 242, 254, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #0f1f38 0%, #0a172c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-3d-canvas-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
}

.home-hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 5;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-pure);
  letter-spacing: -0.5px;
}

.hero-main-title .gradient-cyan {
  background: linear-gradient(135deg, #38bdf8, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 242, 254, 0.35);
}

.hero-main-title .gradient-orange {
  color: var(--salhy-orange);
  text-shadow: 0 0 30px var(--salhy-orange-glow);
}

.hero-lead-para {
  font-size: 1.2rem;
  color: var(--text-silver);
  line-height: 1.7;
  max-width: 620px;
}

.hero-chips-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-spec-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: var(--transition-fast);
}

.hero-spec-chip:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-primary-neon {
  background: linear-gradient(135deg, #0284c7 0%, #00f2fe 100%);
  color: #030712;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -5px var(--neon-cyan-glow);
  transition: var(--transition-smooth);
}

.btn-primary-neon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px -5px rgba(0, 242, 254, 0.7);
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: var(--transition-smooth);
}

.btn-secondary-dark:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* 3D Showcase Card on Hero */
.hero-glass-card-wrap {
  position: relative;
  z-index: 5;
}

.hero-3d-featured-card {
  background: rgba(6, 18, 38, 0.5);
  border: 1px solid rgba(0, 242, 254, 0.28);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-3d-featured-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   MEGA MEDICAL — HERO SHOWCASE SLIDER (Modern, Lightweight & High-Performance)
   ========================================================================== */
.hero-showcase-slider-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-slider-box {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(16, 34, 64, 0.90) 35%, rgba(10, 22, 44, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 0 35px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-slider-box:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 45px rgba(255, 255, 255, 0.25);
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 470px;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.98);
  display: flex;
  flex-direction: column;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  position: relative;
}

/* Media Frame (High-Res Realistic Studio Photography) */
.slide-media-frame {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #030712;
}

.slide-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.hero-slide-item.active .slide-media-img {
  transform: scale(1.05);
}

.slide-glass-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.15) 0%, rgba(3, 7, 18, 0.45) 60%, rgba(6, 18, 38, 0.98) 100%);
  pointer-events: none;
}

.slide-floating-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 10, 24, 0.88);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.slide-floating-tag.tag-orange {
  border-color: rgba(255, 119, 0, 0.45);
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.pulse-dot-orange {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--salhy-orange);
  box-shadow: 0 0 8px var(--salhy-orange);
}

/* Slide Info Body */
.slide-body-info {
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, rgba(16, 32, 60, 0.95) 0%, rgba(10, 22, 44, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  flex-grow: 1;
}

.slide-category-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.slide-cat-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.slide-cat-badge.cat-orange {
  color: var(--salhy-orange);
}

.slide-spec-code {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.slide-spec-code.code-orange {
  color: var(--salhy-orange);
  border-color: rgba(255, 119, 0, 0.3);
  background: rgba(255, 119, 0, 0.1);
}

.slide-headline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.25;
  margin: 0;
}

.slide-description {
  font-size: 0.88rem;
  color: #e2e8f0 !important;
  line-height: 1.55;
  margin: 0;
}

.slide-media-img.banner-contain-img {
  object-fit: contain;
  background: linear-gradient(135deg, #041228 0%, #071c3b 100%);
  padding: 6px;
}

.slide-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.slide-feat-badge {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.22);
  color: var(--neon-cyan);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.slide-action-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-slide-explore {
  background: linear-gradient(135deg, #0284c7 0%, #00f2fe 100%);
  color: #030712;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
  transition: var(--transition-fast);
}

.btn-slide-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.65);
}

.btn-slide-explore.btn-slide-orange {
  background: linear-gradient(135deg, #ff7700 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.4);
}

.btn-slide-explore.btn-slide-orange:hover {
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.7);
}

.slide-step-indicator {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

/* Slider Controls Footer */
.slider-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(14, 28, 54, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.slider-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.slider-arrow-btn:hover {
  background: #ffffff;
  color: #030712;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.slider-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  justify-content: center;
}

.slider-tab-dot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 12px;
  border-radius: 20px;
  color: #cbd5e1;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.slider-tab-dot:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.slider-tab-dot.active {
  background: rgba(255, 255, 255, 0.20);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.tab-dot-line {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Progress Line at bottom of box */
.slider-progress-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.slider-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0284c7, #00f2fe);
  box-shadow: 0 0 10px #00f2fe;
}

/* Bottom Stats Strip */
.slider-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.slider-metric-cell {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(16, 32, 60, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: var(--transition-fast);
}

.slider-metric-cell:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.18);
}

.slider-metric-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--neon-cyan);
  display: block;
  line-height: 1.1;
}

.slider-metric-label {
  font-size: 0.68rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 3px;
  display: block;
}

.telemetry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.telemetry-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.pulse-live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-ring 1.5s infinite;
}

.telemetry-chip-code {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--salhy-orange);
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  padding: 3px 10px;
  border-radius: 6px;
}

.telemetry-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.telemetry-metric-box {
  background: rgba(3, 10, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-box-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.metric-box-val {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.globe-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.globe-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-cyan);
}

.globe-live-indicator .pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-ring 1.5s infinite;
}

.globe-orbit-hint {
  color: var(--text-muted);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 12px;
}

.hero-3d-globe-viewport {
  width: 100%;
  height: 380px;
  position: relative;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.15) 0%, rgba(3, 7, 18, 0.95) 75%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  overflow: hidden;
  cursor: grab;
}

.hero-3d-globe-viewport:active {
  cursor: grabbing;
}

.hero-banner-thumb {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-banner-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-3d-featured-card:hover .hero-banner-thumb img {
  transform: scale(1.05);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.hero-mini-stat {
  background: rgba(5, 11, 23, 0.8);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.stat-counter-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
  display: block;
  line-height: 1.1;
}

.stat-counter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Floating interactive badges */
.hero-floating-badge {
  position: absolute;
  background: rgba(5, 11, 23, 0.92);
  border: 1px solid var(--border-neon);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 10;
  animation: floatFloating 6s ease-in-out infinite;
}

.hero-floating-badge.badge-corner-top {
  top: -24px;
  right: -24px;
  border-color: rgba(255, 119, 0, 0.4);
}

.hero-floating-badge.badge-corner-bottom {
  bottom: -24px;
  left: -24px;
  border-color: rgba(0, 242, 254, 0.4);
  animation-delay: -3s;
}

@keyframes floatFloating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.badge-round-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-round-orange {
  background: rgba(255, 119, 0, 0.15);
  color: var(--salhy-orange);
  border: 1px solid rgba(255, 119, 0, 0.35);
}

.badge-round-cyan {
  background: rgba(0, 242, 254, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.35);
}

/* ==========================================================================
   PRODUCTS CATALOGUE (DEDICATED PAGE & GRID)
   ========================================================================== */
.catalog-page-wrapper {
  padding: 60px 0 100px;
}

.catalog-toolbar-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.catalog-search-box {
  display: flex;
  align-items: center;
  background: rgba(10, 22, 44, 0.85);
  border: 1px solid var(--border-neon);
  border-radius: 40px;
  padding: 10px 24px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.catalog-search-box:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--neon-cyan-glow);
}

.search-input-field {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-pure);
  font-size: 1.05rem;
  width: 100%;
  padding: 8px 14px;
  font-family: inherit;
}

.search-input-field::placeholder {
  color: var(--text-dim);
}

.catalog-category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.category-tab-btn {
  background: rgba(10, 22, 44, 0.7);
  border: 1px solid var(--border-neon);
  color: var(--text-silver);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-tab-btn:hover {
  background: rgba(2, 132, 199, 0.25);
  color: var(--text-pure);
  border-color: var(--electric-blue-light);
  transform: translateY(-2px);
}

.category-tab-btn.active {
  background: linear-gradient(135deg, #0284c7 0%, #00f2fe 100%);
  color: #030712;
  border-color: transparent;
  box-shadow: 0 0 25px var(--neon-cyan-glow);
  font-weight: 800;
}

.tab-count-badge {
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
}

/* ==========================================================================
   PRODUCTS CATALOGUE: 3D TILT CARDS & SHOWCASE
   ========================================================================== */
.catalog-toolbar-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.catalog-search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff !important;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(11, 26, 48, 0.05);
}

.catalog-search-box svg {
  position: absolute;
  left: 18px;
  pointer-events: none;
  stroke: #0284c7 !important;
}

.search-input-field {
  width: 100%;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 14px;
  padding: 16px 50px 16px 54px;
  color: #0b1a30 !important;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.search-input-field::placeholder {
  color: #94a3b8 !important;
}

.search-input-field:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15), 0 8px 25px rgba(2, 132, 199, 0.08) !important;
  background: #ffffff !important;
}

.btn-clear-search {
  position: absolute;
  right: 18px;
  background: #e2e8f0 !important;
  border: none;
  color: #475569 !important;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-clear-search:hover {
  background: #dc2626 !important;
  color: #ffffff !important;
}

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

.results-summary-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.catalog-category-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.category-tab-btn {
  background: rgba(8, 20, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.category-tab-btn:hover {
  border-color: var(--neon-cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.category-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(2, 132, 199, 0.4) 100%);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.tab-count-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--neon-cyan);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 800;
}

.category-tab-btn.active .tab-count-badge {
  background: var(--neon-cyan);
  color: #030712;
}

/* 3D Tilt Product Grid */
.products-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-tilt-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 6px 20px rgba(11, 26, 48, 0.05);
}

.product-tilt-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15);
}

.product-image-stage {
  position: relative;
  width: 100%;
  height: 250px;
  background: radial-gradient(circle at center, #ffffff 40%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
}

.product-img-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-tag {
  max-width: 90%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(11, 26, 48, 0.12));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tilt-card:hover .product-image-tag {
  transform: scale(1.1) translateY(-4px);
}

.product-badge-code {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 10, 24, 0.9);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 242, 254, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.code-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.product-badge-cert {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.product-tilt-card:hover .product-hover-overlay {
  opacity: 1;
}

.btn-quick-inspect {
  background: rgba(0, 242, 254, 0.9);
  color: #030712;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.5);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.product-tilt-card:hover .btn-quick-inspect {
  transform: translateY(0);
}

/* Card Content Body */
.product-content-area {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
  background: #ffffff;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-tag-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.product-hs-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 2px 8px;
  border-radius: 4px;
}

.product-heading {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: #0b1a30;
  line-height: 1.35;
  margin: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.product-heading:hover {
  color: #0284c7;
}

.product-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.45;
}

.product-specs-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.product-packing-chip {
  background: rgba(255, 119, 0, 0.08);
  border: 1px solid rgba(255, 119, 0, 0.25);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #c2410c;
  font-weight: 600;
}

.product-footer-bar {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-view-specs {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0b1a30;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  transition: all 0.25s ease;
}

.btn-view-specs:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

.btn-add-container-cart {
  background: linear-gradient(135deg, #ff7700 0%, #ea580c 100%);
  border: none;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.35);
  transition: all 0.25s ease;
}

.btn-add-container-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.55);
}

.btn-add-container-cart.is-added {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.no-products-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: rgba(8, 20, 39, 0.6);
  border: 1px dashed var(--border-neon);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.no-products-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.no-products-found h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.no-products-found p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-reset-filters {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-blue) 100%);
  border: none;
  color: #030712;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  transition: var(--transition-fast);
}

.btn-reset-filters:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   ENHANCED PRODUCT MODAL STYLING
   ========================================================================== */
.modal-product-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: start;
}

.modal-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-primary-image-frame {
  position: relative;
  background: radial-gradient(circle at center, #ffffff 40%, #e2e8f0 100%);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  border: 1px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.modal-primary-img {
  max-width: 90%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.modal-code-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(3, 10, 24, 0.9);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

.modal-origin-pill {
  background: rgba(8, 20, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 10px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-details-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-tag-chip {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--salhy-orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.modal-certs-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-cert-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
}

.modal-title-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.modal-section-block {
  background: rgba(6, 13, 26, 0.7);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: 14px;
  padding: 18px 20px;
}

.modal-section-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}

.modal-specs-detailed {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-specs-detailed li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.spec-check-icon {
  color: var(--neon-cyan);
  font-weight: 900;
  margin-top: 1px;
}

.modal-export-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.matrix-cell {
  background: rgba(8, 20, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cell-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.cell-val {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.modal-actions-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-modal-add-fcl {
  flex: 1.2;
  background: linear-gradient(135deg, #ff7700 0%, #ea580c 100%);
  border: none;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
  transition: var(--transition-fast);
}

.btn-modal-add-fcl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.6);
}

.btn-modal-whatsapp {
  flex: 1;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-modal-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
}

/* Global Notification Toast */
.global-notification-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(8, 20, 39, 0.95);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.35);
  backdrop-filter: blur(16px);
  padding: 16px 22px;
  border-radius: 12px;
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-notification-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
}

.toast-link {
  color: var(--salhy-orange);
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 119, 0, 0.15);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 119, 0, 0.4);
  transition: var(--transition-fast);
}

.toast-link:hover {
  background: var(--salhy-orange);
  color: #ffffff;
}

@media (max-width: 860px) {
  .modal-product-layout {
    grid-template-columns: 1fr;
  }
  .modal-primary-image-frame {
    height: 260px;
  }
}

/* ==========================================================================
   FCL CALCULATOR: THREE.JS 3D CONTAINER VISUALIZER
   ========================================================================== */
.calc-page-section {
  padding: 50px 0 100px;
}

.calc-dual-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.calc-glass-box {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-deep);
}

/* 3D WebGL Canvas for the Container */
.container-3d-stage-wrap {
  width: 100%;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 22, 44, 0.9) 0%, rgba(3, 7, 18, 0.98) 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

#container-3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.canvas-controls-hint {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.72rem;
  color: #0284c7;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(11, 26, 48, 0.06);
}

/* Container Type Toggle */
.calc-spec-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.container-select-card {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 14px;
}

.container-select-card:hover {
  border-color: #0284c7;
  background: #f0f9ff;
}

.container-select-card.selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

/* Carton Row Item */
.calc-rows-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.carton-item-row {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: var(--transition-fast);
}

.carton-item-row:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}

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

.carton-thumb-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 4px;
  object-fit: contain;
}

.carton-name-text {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b1a30;
}

.carton-pack-text {
  font-size: 0.75rem;
  color: #475569;
}

.carton-stepper-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0b1a30;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.stepper-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

.stepper-input-box {
  width: 65px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0b1a30;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  outline: none;
}

.stepper-input-box:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

/* Container Analysis Right Bar */
.calc-summary-sticky {
  position: sticky;
  top: 95px;
}

.meter-capacity-track {
  width: 100%;
  height: 22px;
  background: #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid #cbd5e1;
}

.meter-capacity-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0284c7 0%, #00f2fe 70%, #ff7700 100%);
  border-radius: 12px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.calc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.stat-cell-box {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(11, 26, 48, 0.04);
}

.stat-cell-label {
  font-size: 0.74rem;
  color: #64748b !important;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-cell-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #0284c7 !important;
}

.btn-export-whatsapp-quote {
  width: 100%;
  background: linear-gradient(135deg, #ff7700 0%, #f97316 100%);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px var(--salhy-orange-glow);
  transition: var(--transition-smooth);
}

.btn-export-whatsapp-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(255, 119, 0, 0.7);
}

/* ==========================================================================
   ABOUT PAGE & EL SALHY GROUP HERITAGE
   ========================================================================== */
.heritage-timeline-section {
  padding: 80px 0;
}

.group-subsidiary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.subsidiary-neon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.subsidiary-neon-card:hover {
  border-color: var(--salhy-orange);
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep), 0 0 30px var(--salhy-orange-glow);
}

.subsidiary-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-pure);
  margin: 14px 0 8px;
}

.subsidiary-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   COMMERCIAL TERMS & EXPORT LOGISTICS PAGE
   ========================================================================== */
.terms-page-layout {
  padding: 60px 0 100px;
}

.terms-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.term-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.term-glass-card:hover {
  border-color: var(--border-neon-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.term-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.term-icon-bubble {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--neon-cyan);
}

.term-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
}

.term-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.term-card-list li {
  font-size: 0.92rem;
  color: var(--text-silver);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.term-card-list li span {
  color: var(--salhy-orange);
  font-weight: 900;
}

/* ==========================================================================
   CONTACT & RFQ FORM
   ========================================================================== */
.contact-page-layout {
  padding: 60px 0 100px;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
}

.contact-method-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-method-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  text-decoration: none;
}

.contact-method-val:hover {
  color: var(--neon-cyan);
}

.rfq-form-panel {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 8px 30px rgba(11, 26, 48, 0.06);
}

.form-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field-full {
  margin-bottom: 18px;
}

.input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b1a30;
  margin-bottom: 8px;
}

.form-field-input, .form-field-textarea {
  width: 100%;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #0b1a30 !important;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-field-input::placeholder, .form-field-textarea::placeholder {
  color: #94a3b8 !important;
}

.form-field-input:focus, .form-field-textarea:focus {
  border-color: #0284c7 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

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

.btn-submit-inquiry {
  width: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #00f2fe 100%);
  color: #030712;
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px var(--neon-cyan-glow);
  transition: var(--transition-smooth);
}

.btn-submit-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(0, 242, 254, 0.7);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.master-footer {
  background: #02050c;
  border-top: 1px solid var(--border-neon);
  padding: 70px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
}

.footer-bio-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--neon-cyan);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: var(--text-silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--neon-cyan);
  padding-left: 6px;
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   PRODUCT DETAIL MODAL
   ========================================================================== */
.modal-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-neon-strong);
  border-radius: var(--radius-xl);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-neon);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay-backdrop.active .modal-dialog-body {
  transform: scale(1);
}

.modal-close-trigger {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-pure);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-trigger:hover {
  background: var(--salhy-orange);
}

.modal-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.modal-photo-well {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-photo-well img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

/* ==========================================================================
   FLOATING SPEED DIAL DOCK
   ========================================================================== */
.floating-dock-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.dock-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

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

.btn-dock-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.65);
}

.btn-dock-phone {
  background: var(--electric-blue);
}

.btn-dock-phone:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 35px var(--neon-cyan-glow);
}

/* Global Container Utility */
.global-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .products-layout-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .group-subsidiary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .terms-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-3d-canvas-container {
    display: none; /* Hide 3D helix on smaller screens to prioritize performance */
  }
  .hero-chips-bar, .hero-buttons-row {
    justify-content: center;
  }
  .calc-dual-layout {
    grid-template-columns: 1fr;
  }
  .contact-dual-grid {
    grid-template-columns: 1fr;
  }
  .products-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .brand-main-logo {
    height: 64px;
    max-width: 210px;
  }
  .hero-main-title {
    font-size: 2.6rem;
  }
  .subpage-title {
    font-size: 2.2rem;
  }
  .products-layout-grid {
    grid-template-columns: 1fr;
  }
  .terms-cards-grid {
    grid-template-columns: 1fr;
  }
  .form-field-group {
    grid-template-columns: 1fr;
  }
  .modal-spec-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-badge {
    display: none;
  }
  .calc-spec-selectors {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MEGA MEDICAL — RADIANT CLINICAL CLEANROOM THEME (PREMIUM LIGHT & WHITE)
   Pure sterile medical atmosphere, luminous daylight background,
   high-contrast luxury navy typography, and glowing cyan & orange accents.
   ========================================================================== */

html, body {
  background-color: #f8fafc !important;
  background-image: 
    radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f6fb 45%, #e8f1f8 100%) !important;
  background-attachment: fixed !important;
  color: #1e293b !important;
}

#ambient-canvas {
  opacity: 0.12 !important;
  pointer-events: none !important;
}

/* Header Strip */
.top-header-strip {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.top-strip-link {
  color: #475569 !important;
}

.top-strip-link:hover {
  color: #0284c7 !important;
}

.badge-strip-emergency {
  background: rgba(255, 119, 0, 0.08) !important;
  border: 1px solid rgba(255, 119, 0, 0.25) !important;
  color: #ea580c !important;
}

/* Main Navbar */
.main-navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 4px 20px rgba(11, 26, 48, 0.05) !important;
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: #cbd5e1 !important;
  box-shadow: 0 10px 25px rgba(11, 26, 48, 0.08) !important;
}

.brand-main-logo {
  filter: drop-shadow(0 4px 10px rgba(11, 26, 48, 0.12)) !important;
}

.brand-divider {
  background: #cbd5e1 !important;
}

.nav-item-link {
  color: #1e293b !important;
}

.nav-item-link:hover, .nav-item-link.active {
  color: #0284c7 !important;
}

.nav-item-link::after {
  background: linear-gradient(90deg, #0284c7, #00f2fe) !important;
}

.btn-nav-calc {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35) !important;
}

.btn-nav-calc:hover {
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.5) !important;
  color: #ffffff !important;
}

.nav-mobile-toggle {
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

/* Hero Section */
.home-hero-section {
  background: 
    radial-gradient(circle at 80% 25%, rgba(2, 132, 199, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(255, 119, 0, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f0f6fc 100%) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.hero-main-title {
  color: #0b1a30 !important;
}

.hero-main-title .gradient-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

.hero-main-title .gradient-orange {
  color: #ea580c !important;
  text-shadow: none !important;
}

.hero-lead-para {
  color: #475569 !important;
}

.hero-spec-chip {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
  box-shadow: 0 4px 12px rgba(11, 26, 48, 0.04) !important;
}

.hero-spec-chip:hover {
  border-color: #0284c7 !important;
  background: #f0f9ff !important;
  color: #0284c7 !important;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15) !important;
}

.btn-primary-neon {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35) !important;
}

.btn-primary-neon:hover {
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary-dark {
  background: #ffffff !important;
  border: 2px solid #0284c7 !important;
  color: #0284c7 !important;
  box-shadow: 0 4px 14px rgba(11, 26, 48, 0.04) !important;
}

.btn-secondary-dark:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35) !important;
}

/* Hero Showcase Slider */
.hero-slider-box {
  background: #ffffff !important;
  border: 1px solid rgba(2, 132, 199, 0.25) !important;
  box-shadow: 0 20px 50px rgba(11, 26, 48, 0.08) !important;
}

.hero-slider-box:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 25px 60px rgba(2, 132, 199, 0.15) !important;
}

.slide-body-info {
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
}

.slide-headline {
  color: #0b1a30 !important;
}

.slide-description {
  color: #475569 !important;
}

.slide-spec-code {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #475569 !important;
}

.slide-feat-badge {
  background: #f0f9ff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
}

.slide-action-toolbar {
  border-top: 1px solid #e2e8f0 !important;
}

.slider-controls-footer {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
}

.slider-arrow-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

.slider-arrow-btn:hover {
  background: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.35) !important;
}

.slider-tab-dot {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #64748b !important;
}

.slider-tab-dot:hover {
  color: #0284c7 !important;
  border-color: #0284c7 !important;
  background: #f0f9ff !important;
}

.slider-tab-dot.active {
  background: #f0f9ff !important;
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.25) !important;
}

.slider-metric-cell {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.04) !important;
}

.slider-metric-cell:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12) !important;
}

.slider-metric-num {
  color: #0284c7 !important;
}

.slider-metric-label {
  color: #64748b !important;
}

/* Subpage Hero Banners */
.subpage-hero {
  background: radial-gradient(circle at 50% 20%, rgba(2, 132, 199, 0.09) 0%, #f8fafc 75%) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.subpage-title {
  color: #0b1a30 !important;
}

.subpage-subtitle {
  color: #475569 !important;
}

.badge-tag-cyan {
  background: #f0f9ff !important;
  border-color: #bae6fd !important;
  color: #0284c7 !important;
}

/* Products Catalogue & Grid */
.catalog-search-box {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.04) !important;
}

.search-input-field {
  color: #0b1a30 !important;
}

.search-input-field::placeholder {
  color: #94a3b8 !important;
}

.category-tab-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}

.category-tab-btn:hover {
  background: #f0f9ff !important;
  border-color: #0284c7 !important;
  color: #0284c7 !important;
}

.category-tab-btn.active {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.product-matrix-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05) !important;
}

.product-matrix-card:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 14px 35px rgba(2, 132, 199, 0.15) !important;
}

.product-title {
  color: #0b1a30 !important;
}

.product-spec-row {
  color: #475569 !important;
}

.product-card-badge {
  background: #f0f9ff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
}

/* 3D Container Calculator */
.calc-glass-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(11, 26, 48, 0.06) !important;
}

.calc-section-title {
  color: #0b1a30 !important;
}

.calc-type-radio {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

.calc-type-radio.selected {
  background: #f0f9ff !important;
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2) !important;
}

.calc-stat-cell {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.stat-cell-val {
  color: #0b1a30 !important;
}

.stat-cell-label {
  color: #64748b !important;
}

#container-3d-stage {
  background: linear-gradient(135deg, #f0f9ff 0%, #e2eef9 100%) !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 16px !important;
}

/* Stepper Controls */
.stepper-btn {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0b1a30 !important;
}

.stepper-btn:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
}

.stepper-val {
  color: #0b1a30 !important;
}

/* Subsidiaries & Heritage Cards */
.subsidiary-neon-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05) !important;
}

.subsidiary-neon-card:hover {
  border-color: #ea580c !important;
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.15) !important;
}

.subsidiary-name {
  color: #0b1a30 !important;
}

.subsidiary-desc {
  color: #475569 !important;
}

.timeline-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05) !important;
}

.timeline-year {
  color: #ea580c !important;
}

.timeline-title {
  color: #0b1a30 !important;
}

.timeline-desc {
  color: #475569 !important;
}

/* Terms & Export Page */
.term-glass-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05) !important;
}

.term-glass-card:hover {
  border-color: #0284c7 !important;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.15) !important;
}

.term-card-title {
  color: #0b1a30 !important;
}

.term-card-list li {
  color: #334155 !important;
}

/* Contact & RFQ Page */
.contact-info-panel, .contact-form-panel {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 25px rgba(11, 26, 48, 0.05) !important;
}

.form-field-input, .form-field-textarea, .form-input-field, .form-textarea-field {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0b1a30 !important;
  border-radius: var(--radius-sm) !important;
}

.form-field-input::placeholder, .form-field-textarea::placeholder {
  color: #94a3b8 !important;
}

.form-field-input:focus, .form-field-textarea:focus, .form-input-field:focus, .form-textarea-field:focus {
  background: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

.stat-cell-box {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: var(--radius-md) !important;
  padding: 16px 18px !important;
  box-shadow: 0 2px 8px rgba(11, 26, 48, 0.04) !important;
}

.stat-cell-label {
  color: #64748b !important;
  font-weight: 800 !important;
}

.stat-cell-val {
  color: #0284c7 !important;
  font-weight: 900 !important;
}

.canvas-controls-hint {
  color: #0284c7 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 6px rgba(11, 26, 48, 0.06) !important;
}

.contact-method-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.contact-method-title {
  color: #0b1a30 !important;
}

.contact-method-sub {
  color: #475569 !important;
}

/* Modal Dialog */
.modal-dialog-body {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
}

.modal-prod-title {
  color: #0b1a30 !important;
}

.modal-prod-desc {
  color: #475569 !important;
}

.modal-spec-badge {
  background: #f0f9ff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
}

.modal-photo-well {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.modal-close-trigger {
  background: #f1f5f9 !important;
  color: #334155 !important;
}

.modal-close-trigger:hover {
  background: #ea580c !important;
  color: #ffffff !important;
}

/* Anchor Luxury Footer (Deep Navy for solid professional grounding) */
.master-footer {
  background: #0b172a !important;
  border-top: 1px solid #1e293b !important;
}

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

.footer-bio-text {
  color: #94a3b8 !important;
}

.footer-nav-list a {
  color: #cbd5e1 !important;
}

.footer-nav-list a:hover {
  color: #38bdf8 !important;
}

.footer-legal-bar {
  color: #64748b !important;
  border-top-color: #1e293b !important;
}

/* Universal Typography High-Contrast Enforcement (Anti-Fading) */
h1, h2, h3, h4, h5, h6 {
  color: #0b1a30 !important;
}

p {
  color: #334155;
}

.text-muted {
  color: #475569 !important;
}

.text-silver {
  color: #1e293b !important;
}

.text-dim {
  color: #64748b !important;
}

body :not(.master-footer):not(.btn-primary-neon):not(.btn-nav-calc):not(.btn-slide-explore):not(.tag-orange):not(#nav-cart-badge):not(.badge-strip-emergency):not(.btn-slide-orange):not(.footer-heading):not(.footer-bio-text):not(.footer-nav-list):not(.footer-nav-list *):not(.product-badge-cert):not(.badge-tag-cyan):not(.btn-add-container-cart):not(.btn-banner-action-pdf):not(.btn-banner-action-pdf *):not(.btn-banner-action-wa):not(.btn-banner-action-wa *):not(.banner-overlay-origin)[style*="color: #fff"],
body :not(.master-footer):not(.btn-primary-neon):not(.btn-nav-calc):not(.btn-slide-explore):not(.tag-orange):not(#nav-cart-badge):not(.badge-strip-emergency):not(.btn-slide-orange):not(.footer-heading):not(.footer-bio-text):not(.footer-nav-list):not(.footer-nav-list *):not(.product-badge-cert):not(.badge-tag-cyan):not(.btn-add-container-cart):not(.btn-banner-action-pdf):not(.btn-banner-action-pdf *):not(.btn-banner-action-wa):not(.btn-banner-action-wa *):not(.banner-overlay-origin)[style*="color:#fff"],
body :not(.master-footer):not(.btn-primary-neon):not(.btn-nav-calc):not(.btn-slide-explore):not(.tag-orange):not(#nav-cart-badge):not(.badge-strip-emergency):not(.btn-slide-orange):not(.footer-heading):not(.footer-bio-text):not(.footer-nav-list):not(.footer-nav-list *):not(.product-badge-cert):not(.badge-tag-cyan):not(.btn-add-container-cart):not(.btn-banner-action-pdf):not(.btn-banner-action-pdf *):not(.btn-banner-action-wa):not(.btn-banner-action-wa *):not(.banner-overlay-origin)[style*="color: white"] {
  color: #0b1a30 !important;
}

/* ==========================================================================
   Corporate PDF Presentation Banner Showcase Section
   ========================================================================== */
.corporate-banner-showcase-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.banner-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.banner-section-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: #0b1a30 !important;
  margin: 14px 0 10px;
  line-height: 1.25;
}

.banner-section-subtitle {
  color: #475569 !important;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.corporate-banner-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 18px 45px rgba(2, 44, 94, 0.08), 0 4px 14px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corporate-banner-card:hover {
  box-shadow: 0 24px 60px rgba(0, 242, 254, 0.15), 0 8px 24px rgba(2, 44, 94, 0.1);
}

.corporate-banner-image-wrapper {
  position: relative;
  width: 100%;
  background: #031024;
  overflow: hidden;
}

.corporate-banner-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.corporate-banner-card:hover .corporate-banner-full-img {
  transform: scale(1.012);
}

.banner-glass-overlay-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-overlay-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-overlay-origin {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b1a30 !important;
}

.banner-overlay-cert {
  background: #e0f2fe;
  color: #0369a1 !important;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid #bae6fd;
}

.banner-overlay-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-banner-action-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #0b1a30 !important;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 26, 48, 0.2);
}

.btn-banner-action-pdf:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.btn-banner-action-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #10b981 !important;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-banner-action-wa:hover {
  background: #059669 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

.banner-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

.banner-pillar-card {
  background: #ffffff;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.25s ease;
}

.banner-pillar-card:hover {
  background: #f8fafc;
}

.pillar-icon-box {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-text-box h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1a30 !important;
  margin: 0 0 6px 0;
}

.pillar-text-box p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #64748b !important;
  margin: 0;
}

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

@media (max-width: 640px) {
  .banner-pillars-grid {
    grid-template-columns: 1fr;
  }
  .banner-glass-overlay-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .banner-overlay-actions {
    flex-direction: column;
  }
  .btn-banner-action-pdf, .btn-banner-action-wa {
    justify-content: center;
  }
}

/* ==========================================================================
   Footer El Salhy Group Link & Logo
   ========================================================================== */
.footer-salhy-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.footer-salhy-link:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--salhy-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 119, 0, 0.2);
}

.footer-salhy-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}

.footer-salhy-link:hover .footer-salhy-logo {
  transform: scale(1.06);
}

.footer-salhy-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-salhy-badge {
  font-size: 0.82rem;
  color: var(--salhy-orange) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-salhy-sub {
  font-size: 0.72rem;
  color: #94a3b8 !important;
  font-weight: 600;
}

/* ==========================================================================
   Signature MegaMedical Brand Typography (Matching Official Logo)
   ========================================================================== */
.brand-megamedical {
  display: inline-block;
  font-family: 'Outfit', var(--font-display), sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

.brand-megamedical .brand-mega {
  color: #0b1a30;
  font-weight: 900;
  transition: color var(--transition-fast);
}

.brand-megamedical .brand-medical {
  background: linear-gradient(180deg, #38bdf8 0%, #009dfc 45%, #026aa2 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 1px 2px rgba(2, 132, 199, 0.35));
  display: inline-block;
  font-weight: 900;
  padding-right: 1px;
}

/* On dark backgrounds (e.g. Master Footer, Dark Cards, Sliders) */
.master-footer .brand-megamedical .brand-mega,
.dark-card .brand-megamedical .brand-mega,
.slide-body-info .brand-megamedical .brand-mega,
.btn-primary-neon .brand-megamedical .brand-mega,
.btn-banner-action-pdf .brand-megamedical .brand-mega,
.btn-banner-action-wa .brand-megamedical .brand-mega,
[data-theme="dark"] .brand-megamedical .brand-mega {
  background: linear-gradient(180deg, #ffffff 20%, #e2e8f0 60%, #cbd5e1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #ffffff !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

/* ==========================================================================
   Container Simulator: Reset Button & Multi-Color Cargo Indicators
   ========================================================================== */
.btn-calc-reset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #e11d48;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-calc-reset:hover {
  background: #ffe4e6;
  border-color: #fda4af;
  color: #be123c;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.15);
}

.btn-reset-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: all var(--transition-fast);
}

.btn-reset-secondary:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
  transform: translateY(-1px);
}

.product-color-indicator {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  margin-right: 2px;
}

/* Authentic WhatsApp Branding in Top Header Strip */
.top-strip-wa {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 600 !important;
}

.top-strip-wa svg {
  width: 16px !important;
  height: 16px !important;
  fill: #25D366 !important;
  color: #25D366 !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 1px 2px rgba(37, 211, 102, 0.35));
}

.top-strip-wa:hover {
  color: #16a34a !important;
}

/* ==========================================================================
   Sister Companies Logo Presentation Cards
   ========================================================================== */
.subsidiary-neon-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 24px 20px !important;
  text-align: center !important;
}

.subsidiary-logo-box {
  width: 100%;
  height: 94px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(11, 26, 48, 0.04);
  transition: all var(--transition-fast);
}

.subsidiary-neon-card:hover .subsidiary-logo-box {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(11, 26, 48, 0.08);
  transform: translateY(-2px);
}

.subsidiary-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.subsidiary-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
  align-self: center;
}

.subsidiary-card-link:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}
