/* ==========================================================================
   2M GROUP & TOTALENERGIES DESIGN SYSTEM
   ========================================================================== */

:root {
  --font-ar: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Brand Palette */
  --color-primary: #ED1C24;
  --color-primary-dark: #C41219;
  --color-primary-light: #FF4D53;
  --color-primary-glow: rgba(237, 28, 36, 0.25);
  
  --color-secondary: #0284C7;
  --color-secondary-dark: #0369A1;
  --color-accent-gold: #F59E0B;
  --color-accent-emerald: #10B981;
  
  /* Neutral Palette */
  --bg-dark: #0B1120;
  --bg-dark-surface: #1E293B;
  --bg-dark-card: rgba(30, 41, 59, 0.85);
  --bg-light: #F8FAFC;
  --bg-light-surface: #FFFFFF;
  --bg-light-card: rgba(255, 255, 255, 0.95);
  
  --text-dark: #0F172A;
  --text-dark-muted: #64748B;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: #E2E8F0;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px -2px rgba(0,0,0,0.08), 0 2px 6px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 25px var(--color-primary-glow);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Default offset for fixed preheader (~34px) + fixed site-header (~65px) = ~99px */
  /* JS in app.js will measure and override this with the exact value */
  padding-top: 99px;
}

[dir="rtl"] body {
  font-family: var(--font-ar);
}

[dir="ltr"] body {
  font-family: var(--font-en);
}

/* ==========================================================================
   NAVIGATION BAR (Clean White Theme)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  padding: 0.85rem 0;
}

.navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   TOTALENERGIES-STYLE MODERN HEADER SYSTEM
   ========================================================================== */

/* 1. TOP PRE-HEADER UTILITY STRIP */
.site-preheader {
  background: #090D16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  color: #94A3B8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .site-preheader,
body.light-theme .site-preheader {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  color: #64748B;
}

.preheader-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preheader-left, .preheader-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.preheader-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #F8FAFC;
  font-weight: 700;
  font-size: 0.8rem;
}

[data-theme="light"] .preheader-badge,
body.light-theme .preheader-badge {
  color: #0F172A;
}

.preheader-badge i {
  color: #ED1C24;
}

.preheader-link {
  color: #94A3B8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.preheader-link:hover {
  color: #ED1C24;
}

[data-theme="light"] .preheader-link,
body.light-theme .preheader-link {
  color: #64748B;
}

[data-theme="light"] .preheader-link:hover,
body.light-theme .preheader-link:hover {
  color: #ED1C24;
}

/* 2. MAIN HEADER & NAVBAR */
.site-header {
  position: fixed;
  top: var(--preheader-height, 34px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-sticky,
.site-header.header-scrolled {
  background: rgba(9, 13, 22, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(237, 28, 36, 0.3);
}

[data-theme="light"] .site-header,
body.light-theme .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #E2E8F0;
}

[data-theme="light"] .site-header.is-sticky,
body.light-theme .site-header.is-sticky {
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(237, 28, 36, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

/* BRAND LOGO LOCKUP */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-main-logo {
  height: 52px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform 0.25s ease;
}

.brand-main-logo:hover {
  transform: scale(1.03);
}

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

[data-theme="light"] .brand-divider,
body.light-theme .brand-divider {
  background: #CBD5E1;
}

.brand-partner-badge {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-partner-badge .partner-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ED1C24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-partner-badge .partner-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

[data-theme="light"] .brand-partner-badge .partner-name,
body.light-theme .brand-partner-badge .partner-name {
  color: #0F172A;
}

/* PRIMARY NAVIGATION MENU */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
}

.nav-link-btn i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  color: #94A3B8;
}

.nav-link-btn:hover,
.nav-item.active .nav-link-btn,
.nav-item:hover .nav-link-btn {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-item:hover .nav-link-btn i.fa-chevron-down {
  transform: rotate(180deg);
  color: #ED1C24;
}

[data-theme="light"] .nav-link-btn,
body.light-theme .nav-link-btn {
  color: #334155;
}

[data-theme="light"] .nav-link-btn:hover,
body.light-theme .nav-link-btn:hover,
[data-theme="light"] .nav-item:hover .nav-link-btn,
body.light-theme .nav-item:hover .nav-link-btn {
  color: #ED1C24;
  background: #F1F5F9;
}

/* 3. MEGA DROPDOWNS */
.header-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #090D16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(237, 28, 36, 0.15);
  padding: 1.25rem;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1100;
}

[dir="ltr"] .header-dropdown {
  right: auto;
  left: 0;
}

.nav-item:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

[data-theme="light"] .header-dropdown,
body.light-theme .header-dropdown {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dropdown-item-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.25s ease;
}

.dropdown-item-card:hover {
  background: rgba(237, 28, 36, 0.12);
  border-color: rgba(237, 28, 36, 0.4);
  transform: translateY(-2px);
}

[data-theme="light"] .dropdown-item-card,
body.light-theme .dropdown-item-card {
  background: #F8FAFC;
  border-color: #F1F5F9;
}

[data-theme="light"] .dropdown-item-card:hover,
body.light-theme .dropdown-item-card:hover {
  background: #FEF2F2;
  border-color: #FECACA;
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(237, 28, 36, 0.15);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-info {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

[data-theme="light"] .dropdown-title,
body.light-theme .dropdown-title {
  color: #0F172A;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.4;
}

[data-theme="light"] .dropdown-desc,
body.light-theme .dropdown-desc {
  color: #64748B;
}

/* 4. HEADER ACTIONS (RIGHT SIDE) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.theme-toggle-btn:hover {
  background: rgba(237, 28, 36, 0.2);
  border-color: #ED1C24;
  color: #ED1C24;
  transform: rotate(20deg);
}

[data-theme="light"] .theme-toggle-btn,
body.light-theme .theme-toggle-btn {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #0F172A;
}

[data-theme="light"] .theme-toggle-btn:hover,
body.light-theme .theme-toggle-btn:hover {
  background: #E2E8F0;
  color: #ED1C24;
}

/* Language Switcher Pill */
.header-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.header-lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

[data-theme="light"] .header-lang-btn,
body.light-theme .header-lang-btn {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #0F172A;
}

[data-theme="light"] .header-lang-btn:hover,
body.light-theme .header-lang-btn:hover {
  background: #E2E8F0;
}

/* Header Quote CTA */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  background: linear-gradient(135deg, #FF3B30 0%, #ED1C24 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4);
  border: 1px solid #ED1C24;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.6);
  background: linear-gradient(135deg, #ED1C24 0%, #C4161D 100%);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.25s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

[data-theme="light"] .mobile-nav-toggle,
body.light-theme .mobile-nav-toggle {
  background: #F1F5F9;
  border-color: #E2E8F0;
}

[data-theme="light"] .mobile-nav-toggle span,
body.light-theme .mobile-nav-toggle span {
  background: #0F172A;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 5. MOBILE NAVIGATION DRAWER */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  background: #090D16;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

[dir="ltr"] .mobile-nav-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

[data-theme="light"] .mobile-nav-drawer,
body.light-theme .mobile-nav-drawer {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

[data-theme="light"] .mobile-drawer-header,
body.light-theme .mobile-drawer-header {
  border-color: #E2E8F0;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

[data-theme="light"] .mobile-drawer-close,
body.light-theme .mobile-drawer-close {
  background: #F1F5F9;
  color: #0F172A;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

[data-theme="light"] .mobile-menu-item,
body.light-theme .mobile-menu-item {
  border-color: #F1F5F9;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

[data-theme="light"] .mobile-menu-link,
body.light-theme .mobile-menu-link {
  color: #0F172A;
}

.mobile-submenu {
  display: none;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  list-style: none;
  margin: 0;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.mobile-submenu.is-expanded {
  display: flex;
}

.mobile-sublink {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0;
  display: block;
}

.mobile-sublink:hover {
  color: #ED1C24;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .primary-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .header-actions .header-lang-btn,
  .header-actions .theme-toggle-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-preheader {
    display: none;
  }
  .header-cta-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }
  .brand-partner-badge {
    display: none;
  }
  .brand-divider {
    display: none;
  }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  box-shadow: 0 6px 20px rgba(237, 28, 36, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(237, 28, 36, 0.15), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(2, 132, 199, 0.12), transparent 40%),
              linear-gradient(180deg, #0B1120 0%, #111827 100%);
  color: var(--text-light);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 28, 36, 0.12);
  border: 1px solid rgba(237, 28, 36, 0.3);
  color: #FF6B6B;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .highlight-red {
  color: var(--color-primary);
  background: linear-gradient(135deg, #FF6B6B, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item h4 span {
  color: var(--color-primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

[dir="rtl"] .floating-badge {
  left: auto;
  right: 20px;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(237, 28, 36, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-badge-text h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.floating-badge-text p {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin: 0;
}

/* ==========================================================================
   PARTNERSHIP TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: #070D18;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-label {
  color: var(--text-light-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCT CATALOGUE & FILTER
   ========================================================================== */
.filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-light-surface);
  border: 1px solid var(--border-light);
  color: var(--text-dark-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 28, 36, 0.3);
}

.product-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 17, 32, 0.85);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

[dir="rtl"] .product-badge {
  left: auto;
  right: 12px;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-specs {
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  border: 1px solid #E2E8F0;
}

.product-specs div {
  margin-bottom: 0.25rem;
}

.product-specs strong {
  color: var(--text-dark);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ==========================================================================
   SERVICES & SOLUTIONS
   ========================================================================== */
.services-section {
  background: #0B1120;
  color: var(--text-light);
}

.services-section .section-title {
  color: #FFFFFF;
}

.services-section .section-description {
  color: var(--text-light-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(237, 28, 36, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   OFFICIAL TOTALENERGIES CTA BANNER
   ========================================================================== */
.partner-banner {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(237, 28, 36, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.partner-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: var(--color-primary-glow);
  filter: blur(80px);
  border-radius: 50%;
}

.partner-banner-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partner-banner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.partner-banner p {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info-panel {
  background: #0B1120;
  color: #FFFFFF;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(237, 28, 36, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h6 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.contact-text p, .contact-text a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--color-primary);
}

.contact-form-panel {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
  outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #070D18;
  color: var(--text-light);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--color-primary);
  padding-inline-start: 4px;
}

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

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748B;
  transition: var(--transition);
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 1rem;
}

.modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 500px; margin-inline: auto; }
  .partner-banner-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EXPLICIT LTR (ENGLISH) TYPOGRAPHY & HEADER JUSTIFICATION
   ========================================================================== */
[dir="ltr"] {
  text-align: left;
}

[dir="ltr"] .hero-text {
  text-align: left;
}

[dir="ltr"] .hero-title {
  text-align: left;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

[dir="ltr"] .hero-description {
  text-align: left;
  line-height: 1.75;
  margin-right: auto;
  margin-left: 0;
}

[dir="ltr"] .hero-actions {
  justify-content: flex-start;
}

[dir="ltr"] .hero-stats {
  text-align: left;
}

[dir="ltr"] .stat-item {
  text-align: left;
}

[dir="ltr"] .nav-links {
  margin-inline-start: 1rem;
}

[dir="ltr"] .brand-wrapper {
  justify-content: flex-start;
}

[dir="ltr"] .nav-actions {
  margin-inline-start: auto;
  justify-content: flex-end;
}

[dir="ltr"] .product-content {
  text-align: left;
}

[dir="ltr"] .product-footer {
  justify-content: space-between;
}

[dir="ltr"] .service-card {
  text-align: left;
}

[dir="ltr"] .partner-banner-grid {
  text-align: left;
}

[dir="ltr"] .contact-info-panel {
  text-align: left;
}

[dir="ltr"] .contact-form-panel {
  text-align: left;
}

[dir="ltr"] .footer {
  text-align: left;
}

[dir="ltr"] .footer-brand {
  text-align: left;
}

[dir="ltr"] .footer-links {
  text-align: left;
}


/* ==========================================================================
   PERFECT ENGLISH (LTR) HEADER & TYPOGRAPHY SPACING
   ========================================================================== */
[dir="ltr"] body,
[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] h5,
[dir="ltr"] h6,
[dir="ltr"] p,
[dir="ltr"] span,
[dir="ltr"] a {
  text-align: left !important;
  word-spacing: normal !important;
}

[dir="ltr"] .hero-title,
[dir="ltr"] .rev-layer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  line-height: 1.3;
  letter-spacing: -0.02em;
  word-spacing: normal;
  text-align: left;
  margin-bottom: 1.25rem;
}

[dir="ltr"] .hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94A3B8;
  word-spacing: normal;
  text-align: left;
  margin-bottom: 2rem;
  max-width: 620px;
}

[dir="ltr"] .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

[dir="ltr"] .nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  word-spacing: normal;
  white-space: nowrap;
}

[dir="ltr"] .brand-badge {
  letter-spacing: 0.3px;
  word-spacing: normal;
}

[dir="ltr"] .hero-tag {
  letter-spacing: 0.5px;
  word-spacing: normal;
}

[dir="ltr"] .section-header {
  text-align: center !important;
}

[dir="ltr"] .section-header h2,
[dir="ltr"] .section-header p {
  text-align: center !important;
}


/* ==========================================================================
   SLIDER REVOLUTION - CORE ENGINE & LAYER STYLES
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: transparent;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.rev-slider-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 560px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}

/* Linear Timeline Progress Bar */
.rev-progress-bar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  z-index: 90;
}

.rev-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ED1C24, #FF5A5F);
  box-shadow: 0 0 10px rgba(237, 28, 36, 0.6);
  border-radius: 0 2px 2px 0;
  will-change: width;
}

/* Slide Wrapper & Stacking */
.rev-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 560px;
}

.rev-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
  z-index: 1;
  display: flex;
  align-items: center;
}

.rev-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 10;
}

/* Hero Content Grid Layout */
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
}

/* --------------------------------------------------------------------------
   SLIDER REVOLUTION LAYER ANIMATIONS (STAGGERED TIMELINE)
   -------------------------------------------------------------------------- */
.rev-slide .rev-layer {
  opacity: 0;
  will-change: transform, opacity;
}

/* Entrance Keyframes */
@keyframes revTagIn {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

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

@keyframes revVisualIn {
  from { opacity: 0; transform: scale(0.88) translateY(25px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes revBadgeIn {
  from { opacity: 0; transform: scale(0.8) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Staggered Trigger when Slide is Active */
.rev-slide.active .layer-tag {
  animation: revTagIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.rev-slide.active .layer-title {
  animation: revTitleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.rev-slide.active .layer-desc {
  animation: revDescIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.rev-slide.active .layer-btns {
  animation: revBtnsIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.rev-slide.active .layer-stats {
  animation: revStatsIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.rev-slide.active .layer-visual {
  animation: revVisualIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.rev-slide.active .layer-badge {
  animation: revBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Layer Typography & Elements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 28, 36, 0.08);
  color: #ED1C24;
  border: 1px solid rgba(237, 28, 36, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #0F172A !important;
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: #334155 !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 1.25rem;
}

.stat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 0.15rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: #475569 !important;
  font-weight: 700;
}

/* Product Showcase Canister & Badge */
.hero-visual-side {
  position: relative;
  text-align: center;
}

.product-showcase-visual {
  position: relative;
  display: inline-block;
}

.hero-product-img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.16));
  transition: transform 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.product-meta-badge {
  position: absolute;
  bottom: 15px;
  right: -10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  text-align: right;
}

.product-meta-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.product-meta-badge .badge-content h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 0.15rem;
}

.product-meta-badge .badge-content p {
  font-size: 0.78rem;
  color: #475569 !important;
  font-weight: 600;
}

/* Circular Slider Revolution Arrows */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
/* DARK LUXURY NAVIGATION ARROWS */
.rev-nav-arrow,
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 80;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.rev-nav-arrow:hover,
.rev-arrow:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border-color: #ED1C24;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.5);
}

.rev-prev, .rev-arrow-prev { right: 24px; left: auto; }
.rev-next, .rev-arrow-next { left: 24px; right: auto; }

[dir="ltr"] .rev-prev, [dir="ltr"] .rev-arrow-prev { left: 24px; right: auto; }
[dir="ltr"] .rev-next, [dir="ltr"] .rev-arrow-next { right: 24px; left: auto; }

/* DARK LUXURY PAGINATION BULLETS */
.rev-bullets {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 80;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.rev-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-bullet:hover {
  background: #ED1C24;
  transform: scale(1.2);
}

.rev-bullet.active {
  width: 26px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ED1C24, #FF6B6B);
  box-shadow: 0 0 12px rgba(237, 28, 36, 0.7);
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-description { margin: 0 auto 1.5rem; }
  .hero-cta-group { justify-content: center; }
  .hero-stats-grid { justify-content: center; }
  .hero-product-img { max-height: 320px; }
  .product-meta-badge { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
}

/* ==========================================================================
   HERO TYPOGRAPHY & CONTROLS (DARK NAVY THEME)
   ========================================================================== */
.hero-title {
  color: #0F172A !important;
}

[dir="ltr"] .hero-title,
[dir="rtl"] .hero-title {
  color: #0F172A !important;
}

.hero-description {
  color: #334155 !important;
}

[dir="ltr"] .hero-description,
[dir="rtl"] .hero-description {
  color: #334155 !important;
}

.stat-item h4 {
  color: #0F172A !important;
}

.stat-item p {
  color: #64748B !important;
}

.hero-tag {
  background: rgba(237, 28, 36, 0.08) !important;
  border-color: rgba(237, 28, 36, 0.2) !important;
  color: var(--color-primary) !important;
}

/* Floating Badge Light Theme with Dark Navy Text */
.floating-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1) !important;
}

.floating-badge-text h5 {
  color: #0F172A !important;
}

.floating-badge-text p {
  color: #64748B !important;
}

.floating-badge-icon {
  background: rgba(237, 28, 36, 0.1) !important;
  color: var(--color-primary) !important;
}

/* Slider Controls (Light Contrast) */
.rev-arrow {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

.rev-arrow:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 20px var(--color-primary-glow) !important;
}

.rev-bullet {
  background: rgba(15, 23, 42, 0.25) !important;
  border: 1px solid rgba(15, 23, 42, 0.4) !important;
}

.rev-bullet.active {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}


/* ==========================================================================
   SLIDER REVOLUTION - CORE ENGINE & LAYER STYLES
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: transparent;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.rev-slider-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 560px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}

/* Linear Timeline Progress Bar */
.rev-progress-bar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  z-index: 90;
}

.rev-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ED1C24, #FF5A5F);
  box-shadow: 0 0 10px rgba(237, 28, 36, 0.6);
  border-radius: 0 2px 2px 0;
  will-change: width;
}

/* Slide Wrapper & Stacking */
.rev-slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 560px;
}

.rev-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
  z-index: 1;
  display: flex;
  align-items: center;
}

.rev-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 10;
}

/* Hero Content Grid Layout */
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
}

/* --------------------------------------------------------------------------
   SLIDER REVOLUTION LAYER ANIMATIONS (STAGGERED TIMELINE)
   -------------------------------------------------------------------------- */
.rev-slide .rev-layer {
  opacity: 0;
  will-change: transform, opacity;
}

/* Entrance Keyframes */
@keyframes revTagIn {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

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

@keyframes revVisualIn {
  from { opacity: 0; transform: scale(0.88) translateY(25px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes revBadgeIn {
  from { opacity: 0; transform: scale(0.8) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Staggered Trigger when Slide is Active */
.rev-slide.active .layer-tag {
  animation: revTagIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.rev-slide.active .layer-title {
  animation: revTitleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.rev-slide.active .layer-desc {
  animation: revDescIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.rev-slide.active .layer-btns {
  animation: revBtnsIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.rev-slide.active .layer-stats {
  animation: revStatsIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.rev-slide.active .layer-visual {
  animation: revVisualIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.rev-slide.active .layer-badge {
  animation: revBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Layer Typography & Elements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 28, 36, 0.08);
  color: #ED1C24;
  border: 1px solid rgba(237, 28, 36, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #0F172A !important;
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: #334155 !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 1.25rem;
}

.stat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 0.15rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: #475569 !important;
  font-weight: 700;
}

/* Product Showcase Canister & Badge */
.hero-visual-side {
  position: relative;
  text-align: center;
}

.product-showcase-visual {
  position: relative;
  display: inline-block;
}

.hero-product-img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.16));
  transition: transform 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.product-meta-badge {
  position: absolute;
  bottom: 15px;
  right: -10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  text-align: right;
}

.product-meta-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.product-meta-badge .badge-content h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 0.15rem;
}

.product-meta-badge .badge-content p {
  font-size: 0.78rem;
  color: #475569 !important;
  font-weight: 600;
}

/* Circular Slider Revolution Arrows */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 80;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.rev-arrow:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border-color: #ED1C24;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(237, 28, 36, 0.35);
}

.rev-arrow-prev { right: 15px; }
.rev-arrow-next { left: 15px; }

/* Pagination Bullets */
.rev-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 80;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.rev-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-bullet:hover {
  background: #ED1C24;
}

.rev-bullet.active {
  width: 28px;
  border-radius: 6px;
  background: #ED1C24;
  box-shadow: 0 0 10px rgba(237, 28, 36, 0.5);
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-description { margin: 0 auto 1.5rem; }
  .hero-cta-group { justify-content: center; }
  .hero-stats-grid { justify-content: center; }
  .hero-product-img { max-height: 320px; }
  .product-meta-badge { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
}





/* .site-header is now position:fixed via the primary header rules above. Old sticky override removed. */

.header-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
}

.header-brand {
  display: flex !important;
  align-items: center !important;
}

.header-brand .brand-logo {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.header-nav {
  display: flex !important;
  align-items: center !important;
}

.header-nav .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-nav .nav-link {
  color: #0F172A !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
  padding: 0.45rem 0.75rem !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #ED1C24 !important;
  background: rgba(237, 28, 36, 0.06) !important;
}

.admin-nav-link {
  color: #0284C7 !important;
}

.admin-nav-link:hover {
  color: #0369A1 !important;
  background: rgba(2, 132, 199, 0.08) !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.lang-switch-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  text-decoration: none !important;
  color: #0F172A !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 8px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  transition: all 0.2s ease !important;
}

.lang-switch-btn:hover {
  background: #0F172A !important;
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .header-nav { display: none !important; }
}



/* ==========================================================================
   2M GROUP & TOTALENERGIES DUAL BRANDING HEADER
   ========================================================================== */
.header-brand {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.header-brand .logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  text-decoration: none !important;
}

.header-brand .brand-logo {
  height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.brand-divider {
  width: 1.5px !important;
  height: 30px !important;
  background: rgba(15, 23, 42, 0.15) !important;
  border-radius: 1px !important;
}

.brand-partner {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

.brand-partner-logo {
  height: 34px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.brand-partner-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.15 !important;
}

.brand-partner-title {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

.brand-partner-sub {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: #ED1C24 !important;
}

@media (max-width: 768px) {
  .brand-partner-text { display: none !important; }
}



/* ==========================================================================
   2M GROUP - COMPREHENSIVE PREMIUM FOOTER SYSTEM
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #0F172A 0%, #070B14 100%) !important;
  color: #94A3B8 !important;
  padding: 4.5rem 0 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  font-family: inherit !important;
}

.footer-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.35fr 0.85fr 1.05fr 1.2fr !important;
  gap: 3rem !important;
  margin-bottom: 3.5rem !important;
}

.footer-col {
  display: flex !important;
  flex-direction: column !important;
}

.footer-logo {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  margin-bottom: 1.25rem !important;
  filter: brightness(0) invert(1) !important;
}

.footer-about-text {
  color: #94A3B8 !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  margin-bottom: 1.5rem !important;
}

.footer-social-links {
  display: flex !important;
  gap: 0.75rem !important;
}

.social-icon-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.social-icon-btn:hover {
  background: #ED1C24 !important;
  border-color: #ED1C24 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 15px rgba(237, 28, 36, 0.35) !important;
}

.footer-col-title {
  color: #FFFFFF !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  padding-bottom: 0.65rem !important;
}

.footer-col-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 32px !important;
  height: 2.5px !important;
  background: #ED1C24 !important;
  border-radius: 2px !important;
}

[dir="ltr"] .footer-col-title::after {
  right: auto !important;
  left: 0 !important;
}

.footer-links-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-links-list li a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.2s ease !important;
}

.footer-links-list li a:hover {
  color: #FFFFFF !important;
  transform: translateX(-4px) !important;
}

[dir="ltr"] .footer-links-list li a:hover {
  transform: translateX(4px) !important;
}

.footer-links-list li a i {
  font-size: 0.75rem !important;
  color: #ED1C24 !important;
}

.contact-info-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem !important;
  font-size: 0.92rem !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
}

.contact-item i {
  color: #ED1C24 !important;
  font-size: 1.1rem !important;
  margin-top: 0.2rem !important;
  flex-shrink: 0 !important;
}

.contact-item a {
  color: #CBD5E1 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
}

.contact-item a:hover {
  color: #ED1C24 !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 1.75rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.copyright-text {
  font-size: 0.88rem !important;
  color: #64748B !important;
}

.copyright-text strong {
  color: #CBD5E1 !important;
}

.footer-cert-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(237, 28, 36, 0.1) !important;
  border: 1px solid rgba(237, 28, 36, 0.25) !important;
  color: #FF5A5F !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 9999px !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom-bar { flex-direction: column !important; text-align: center !important; }
}



/* ==========================================================================
   ROCK-SOLID SLIDER REVOLUTION ENGINE CSS
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: transparent;
  padding: 1.5rem 0 2.5rem;
  overflow: hidden;
}

.rev-slider-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 520px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* Progress bar */
.rev-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ED1C24, #FF5A5F);
  z-index: 100;
  width: 0%;
  transition: width 0.05s linear;
}

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

.rev-slide {
  display: none;
  width: 100%;
  height: 100%;
  padding: 2.5rem 3rem;
}

.rev-slide.active {
  display: block !important;
  animation: revSlideFade 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 28, 36, 0.08);
  color: #ED1C24;
  border: 1px solid rgba(237, 28, 36, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0F172A !important;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.05rem;
  color: #334155 !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 1.25rem;
}

.hero-stats .stat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 0.2rem;
}

.hero-stats .stat-item p {
  font-size: 0.82rem;
  color: #64748B !important;
  font-weight: 700;
}

.hero-card {
  position: relative;
  text-align: center;
  background: transparent;
  border-radius: 20px;
  padding: 1.5rem;
}

.hero-card img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hero-card img:hover {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: right;
}

.floating-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-badge-text h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 0.1rem;
}

.floating-badge-text p {
  font-size: 0.75rem;
  color: #64748B !important;
  font-weight: 600;
}

/* Nav Arrows */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 95;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rev-arrow:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border-color: #ED1C24;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(237, 28, 36, 0.35);
}

.rev-prev { right: 20px; }
.rev-next { left: 20px; }

[dir="ltr"] .rev-prev { right: auto; left: 20px; }
[dir="ltr"] .rev-next { left: auto; right: 20px; }

/* Bullets */
.rev-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 95;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.rev-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rev-bullet:hover {
  background: #ED1C24;
}

.rev-bullet.active {
  width: 28px;
  border-radius: 6px;
  background: #ED1C24;
  box-shadow: 0 0 8px rgba(237, 28, 36, 0.5);
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card img { max-height: 280px; }
  .floating-badge { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
gap: 0.5rem;
  background: rgba(237, 28, 36, 0.08);
  color: #ED1C24;
  border: 1px solid rgba(237, 28, 36, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0F172A !important;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.05rem;
  color: #334155 !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 1.25rem;
}

.hero-stats .stat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 0.2rem;
}

.hero-stats .stat-item p {
  font-size: 0.82rem;
  color: #64748B !important;
  font-weight: 700;
}

.hero-card {
  position: relative;
  text-align: center;
  background: transparent;
  border-radius: 20px;
  padding: 1.5rem;
}

.hero-card img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hero-card img:hover {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: right;
}

.floating-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-badge-text h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 0.1rem;
}

.floating-badge-text p {
  font-size: 0.75rem;
  color: #64748B !important;
  font-weight: 600;
}

/* Nav Arrows */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 95;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rev-arrow:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border-color: #ED1C24;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(237, 28, 36, 0.35);
}

.rev-prev { right: 20px; }
.rev-next { left: 20px; }

[dir="ltr"] .rev-prev { right: auto; left: 20px; }
[dir="ltr"] .rev-next { left: auto; right: 20px; }

/* Bullets */
.rev-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 95;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.rev-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rev-bullet:hover {
  background: #ED1C24;
}

.rev-bullet.active {
  width: 28px;
  border-radius: 6px;
  background: #ED1C24;
  box-shadow: 0 0 8px rgba(237, 28, 36, 0.5);
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card img { max-height: 280px; }
  .floating-badge { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
  .rev-prev { right: 10px; }
  .rev-next { left: 10px; }
}


/* ==========================================================================
   BASEMARK-STYLE TRANSPARENT HEADER & NAVIGATION SYSTEM
   ========================================================================== */
.main-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease !important;
  padding: 1.25rem 0 !important;
}

.main-header[data-blur="on"] {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.main-header.header-scrolled,
.main-header.is-sticky {
  background: rgba(9, 13, 22, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  padding: 0.85rem 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.main-header__layout {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 2.5rem !important;
}

.main-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 2rem !important;
}

/* Brand Logo */
.main-header__logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.main-header__logo a {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.main-header__logo img {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

.main-header__logo a:hover img {
  transform: scale(1.04) !important;
}

/* Centered Navigation Menu */
.main-header__nav {
  display: flex !important;
  align-items: center !important;
}

.main-header__nav .navbar-nav {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 1.75rem !important;
}

.main-header__nav .navbar-nav li {
  position: relative !important;
  list-style: none !important;
}

.main-header__nav .navbar-nav a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  padding: 0.4rem 0 !important;
  position: relative !important;
  transition: color 0.25s ease, opacity 0.25s ease !important;
  opacity: 0.85 !important;
}

.main-header__nav .navbar-nav a:hover,
.main-header__nav .navbar-nav .current-menu-item > a,
.main-header__nav .navbar-nav .active > a {
  opacity: 1 !important;
  color: #ED1C24 !important;
}

.main-header__nav .navbar-nav a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #ED1C24 !important;
  transform: scaleX(0) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.main-header__nav .navbar-nav a:hover::after,
.main-header__nav .navbar-nav .active > a::after {
  transform: scaleX(1) !important;
}

/* Header Widgets: Theme Switcher, Search, Mobile Trigger */
.main-header--widgets {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-shrink: 0 !important;
}

/* Theme Mode Toggle (Sun & Moon SVG) */
.ms_theme_mode {
  display: flex !important;
  align-items: center !important;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

.theme-toggle:hover {
  background: rgba(237, 28, 36, 0.2) !important;
  border-color: #ED1C24 !important;
  color: #ED1C24 !important;
  transform: scale(1.08) !important;
}

.theme-toggle input { display: none !important; }

.theme-toggle svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
}

/* Header Search Icon */
.header__search-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

.header__search-icon:hover {
  background: rgba(237, 28, 36, 0.2) !important;
  border-color: #ED1C24 !important;
  color: #ED1C24 !important;
  transform: scale(1.08) !important;
}

.header__search-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

/* Search Modal Window */
.header__search-modal {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(9, 13, 22, 0.96) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header__search-modal.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}

.header__search--close-btn {
  position: absolute !important;
  top: 30px !important;
  right: 35px !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

[dir="rtl"] .header__search--close-btn {
  right: auto !important;
  left: 35px !important;
}

.header__search--close-btn:hover {
  color: #ED1C24 !important;
  transform: rotate(90deg) !important;
}

.header__search--close-btn svg {
  width: 32px !important;
  height: 32px !important;
}

.header__search--inner {
  width: 100% !important;
  max-width: 680px !important;
  padding: 0 1.5rem !important;
}

.ms-search-widget {
  position: relative !important;
  width: 100% !important;
}

.ms-search-widget .search-field {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  padding: 1rem 3rem 1rem 0 !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}

[dir="rtl"] .ms-search-widget .search-field {
  padding: 1rem 0 1rem 3rem !important;
}

.ms-search-widget .search-field:focus {
  border-bottom-color: #ED1C24 !important;
}

.ms-search--btn {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
}

[dir="rtl"] .ms-search--btn {
  right: auto !important;
  left: 0 !important;
}

.ms-search--btn svg {
  width: 24px !important;
  height: 24px !important;
  fill: #FFFFFF !important;
}

.search-submit {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
}

/* Nav Trigger (Hamburger Mobile) */
.main-header__nav-trigger {
  display: none !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  align-items: center !important;
  gap: 0.6rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

.main-header__nav-trigger-icon {
  width: 26px !important;
  height: 2px !important;
  background: #FFFFFF !important;
  position: relative !important;
  display: inline-block !important;
  transition: background 0.3s ease !important;
}

.main-header__nav-trigger-icon::before,
.main-header__nav-trigger-icon::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: #FFFFFF !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.main-header__nav-trigger-icon::before { top: -7px !important; }
.main-header__nav-trigger-icon::after { bottom: -7px !important; }

.main-header__nav-trigger.is-active .main-header__nav-trigger-icon {
  background: transparent !important;
}

.main-header__nav-trigger.is-active .main-header__nav-trigger-icon::before {
  transform: translateY(7px) rotate(45deg) !important;
}

.main-header__nav-trigger.is-active .main-header__nav-trigger-icon::after {
  transform: translateY(-7px) rotate(-45deg) !important;
}

@media (max-width: 992px) {
  .main-header__nav-trigger { display: flex !important; }
  .main-header__nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    bottom: 0 !important;
    width: 320px !important;
    background: #090D16 !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    padding: 6rem 2rem 2rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 998 !important;
  }

  [dir="ltr"] .main-header__nav {
    right: auto !important;
    left: -100% !important;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .main-header__nav.is-open {
    right: 0 !important;
  }

  [dir="ltr"] .main-header__nav.is-open {
    left: 0 !important;
  }

  .main-header__nav .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   BASEMARK FULL-PAGE SLIDER (100VH IMMERSIVE PARALLAX)
   ========================================================================== */
.ms-slider_fs {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  background: #090D16 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ms-swiper-content,
.ms-slider {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.swiper-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  transition-property: transform !important;
  box-sizing: content-box !important;
}

.swiper-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease !important;
  z-index: 1 !important;
}

.swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
}

.slide-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

/* Background Image & Video */
.ms-slider--img,
.ms-slider--video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

.ms-slider--img img,
.ms-slider--video video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(0.85) contrast(1.1) !important;
  transform: scale(1.05) !important;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swiper-slide.swiper-slide-active .ms-slider--img img,
.swiper-slide.swiper-slide-active .ms-slider--video video {
  transform: scale(1) !important;
}

.ms-slider--img::after,
.ms-slider--video::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(270deg, rgba(9, 13, 22, 0.94) 0%, rgba(9, 13, 22, 0.72) 48%, rgba(9, 13, 22, 0.35) 100%) !important;
  z-index: 1 !important;
}

[dir="ltr"] .ms-slider--img::after,
[dir="ltr"] .ms-slider--video::after {
  background: linear-gradient(90deg, rgba(9, 13, 22, 0.94) 0%, rgba(9, 13, 22, 0.72) 48%, rgba(9, 13, 22, 0.35) 100%) !important;
}

/* Slide Content */
.ms-slider--cont {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 4.5rem !important;
  box-sizing: border-box !important;
}

.ms-cont__inner {
  max-width: 820px !important;
}

/* Basemark Typography */
.ms-sc--st {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ED1C24 !important;
  letter-spacing: 1px !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swiper-slide.swiper-slide-active .ms-sc--st {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.15s !important;
}

.ms-sc--t {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.5px !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

.swiper-slide.swiper-slide-active .ms-sc--t {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.3s !important;
}

.ms-sc--desc {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: #CBD5E1 !important;
  margin-bottom: 2.25rem !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swiper-slide.swiper-slide-active .ms-sc--desc {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.45s !important;
}

/* Basemark Signature Circle Button */
.btn-wrap {
  display: flex !important;
  align-items: center !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swiper-slide.swiper-slide-active .btn-wrap {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.6s !important;
}

.btn-circle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
}

.ms-btn--circle {
  position: relative !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
}

.circle {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.circle-outline {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  fill: none !important;
  stroke: rgba(255, 255, 255, 0.35) !important;
  stroke-width: 2px !important;
  transition: stroke 0.3s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.circle-fill {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  background: #ED1C24 !important;
  transform: scale(0) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.circle-icon {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  transition: transform 0.3s ease !important;
}

.circle-icon svg {
  width: 14px !important;
  height: 14px !important;
  fill: #FFFFFF !important;
}

[dir="rtl"] .circle-icon svg {
  transform: rotate(180deg) !important;
}

.btn-circle:hover .circle-fill {
  transform: scale(1) !important;
}

.btn-circle:hover .circle-outline {
  stroke: #ED1C24 !important;
  transform: scale(1.1) !important;
}

.btn-circle:hover .circle-icon {
  transform: translateX(4px) !important;
}

[dir="rtl"] .btn-circle:hover .circle-icon {
  transform: translateX(-4px) !important;
}

.ms-btn--label {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
}

.ms-btn__text {
  transition: color 0.3s ease !important;
}

.ms-btn__border {
  height: 2px !important;
  background: #FFFFFF !important;
  width: 0% !important;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
  margin-top: 4px !important;
}

.btn-circle:hover .ms-btn__border {
  width: 100% !important;
  background: #ED1C24 !important;
}

.btn-circle:hover .ms-btn__text {
  color: #ED1C24 !important;
}

/* Minimalist Arrow Navigation */
.ms-slider--nav {
  position: absolute !important;
  bottom: 45px !important;
  right: 4.5rem !important;
  z-index: 30 !important;
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
}

[dir="rtl"] .ms-slider--nav {
  right: auto !important;
  left: 4.5rem !important;
}

.ms-nav--prev,
.ms-nav--next {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ms-nav--prev:hover,
.ms-nav--next:hover {
  background: #ED1C24 !important;
  border-color: #ED1C24 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 0 20px rgba(237, 28, 36, 0.5) !important;
}

.ms-nav--prev svg,
.ms-nav--next svg {
  width: 20px !important;
  height: 14px !important;
  stroke: currentColor !important;
  stroke-width: 2px !important;
  fill: none !important;
}

.ms-nav--prev svg {
  transform: rotate(180deg) !important;
}

[dir="rtl"] .ms-nav--prev svg {
  transform: rotate(0deg) !important;
}

[dir="rtl"] .ms-nav--next svg {
  transform: rotate(180deg) !important;
}

/* Slider Progress & Counter */
.ms-slider--progress {
  position: absolute !important;
  bottom: 45px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30 !important;
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 1px !important;
}

.ms-slider--count {
  color: #ED1C24 !important;
  font-size: 1.15rem !important;
}

.ms-slider--count__total {
  color: rgba(255, 255, 255, 0.5) !important;
}

.ms-slider--pagination {
  width: 140px !important;
  height: 3px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}

.ms-slider--progress-bar-fill {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 25% !important;
  background: #ED1C24 !important;
  box-shadow: 0 0 10px rgba(237, 28, 36, 0.8) !important;
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1), width 0.5s ease !important;
}

[dir="rtl"] .ms-slider--progress-bar-fill {
  left: auto !important;
  right: 0 !important;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), width 0.5s ease !important;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .ms-sc--t {
    font-size: 2.5rem !important;
  }
  .ms-slider--cont {
    padding: 0 2.5rem !important;
  }
  .ms-slider--nav {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .ms-sc--t {
    font-size: 1.85rem !important;
  }
  .ms-sc--desc {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }
  .ms-slider--cont {
    padding: 0 1.5rem !important;
  }
  .ms-slider--progress {
    bottom: 25px !important;
  }
}

/* ==========================================================================
   REVOLUTION CINEMA PLAYER HERO (EXACT ADMIN STUDIO STYLING)
   ========================================================================== */
.hero-revolution-section {
  width: 100% !important;
  padding: 1.5rem 0 2rem 0 !important;
  background: #060911 !important;
  position: relative !important;
}

.hero-revolution-container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box !important;
}

.canvas-card {
  background: #090D16 !important;
  border: 1px solid rgba(237, 28, 36, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.canvas-card .card-header {
  background: rgba(0, 0, 0, 0.4) !important;
  padding: 0.85rem 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}

.canvas-card .card-title {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

.canvas-card .status-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 9999px !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10B981 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

/* REVOLUTION CINEMA VIEWPORT */
.canvas-rev-viewport {
  position: relative !important;
  min-height: 480px !important;
  height: 520px !important;
  background: radial-gradient(circle at 70% 30%, #1e293b 0%, #090d16 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  overflow: hidden !important;
  padding-bottom: 2rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.canvas-rev-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  opacity: 0.85 !important;
  pointer-events: none !important;
}

.canvas-rev-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.75) 45%, rgba(9, 13, 22, 0.4) 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

[dir="rtl"] .canvas-rev-overlay {
  background: linear-gradient(270deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.75) 45%, rgba(9, 13, 22, 0.4) 100%) !important;
}

.canvas-player-bar {
  position: absolute !important;
  top: 20px !important;
  right: 25px !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[dir="rtl"] .canvas-player-bar {
  right: auto !important;
  left: 25px !important;
}

.canvas-player-btn {
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  font-size: 0.85rem !important;
}

.canvas-player-btn:hover {
  background: rgba(237, 28, 36, 0.3) !important;
  color: #ED1C24 !important;
}

.canvas-rev-content {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  max-width: 900px !important;
  padding: 1.5rem 2.5rem 0.5rem 2.5rem !important;
  display: block !important;
  box-sizing: border-box !important;
  text-align: right !important;
}

[dir="ltr"] .canvas-rev-content {
  text-align: left !important;
}

.luxury-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: linear-gradient(135deg, rgba(237,28,36,0.25), rgba(2,132,199,0.25)) !important;
  border: 1px solid rgba(237,28,36,0.5) !important;
  color: #FFF !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 9999px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(237,28,36,0.2) !important;
  margin-bottom: 0.85rem !important;
}

.text-gradient-red {
  background: linear-gradient(135deg, #FF6B6B 0%, #ED1C24 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline !important;
}

.canvas-rev-title {
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.canvas-rev-desc {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: #CBD5E1 !important;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

.canvas-rev-ctas {
  display: flex !important;
  gap: 0.85rem !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
}

.canvas-rev-ctas .btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.canvas-rev-ctas .btn-primary {
  background: #ED1C24 !important;
  color: #FFFFFF !important;
  border: 1px solid #ED1C24 !important;
  box-shadow: 0 4px 15px rgba(237, 28, 36, 0.35) !important;
}

.canvas-rev-ctas .btn-primary:hover {
  background: #C4161D !important;
  transform: translateY(-2px) !important;
}

.canvas-rev-ctas .btn-outline {
  background: rgba(37, 211, 102, 0.1) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25D366 !important;
}

.canvas-rev-ctas .btn-outline:hover {
  background: rgba(37, 211, 102, 0.2) !important;
  transform: translateY(-2px) !important;
}

.canvas-rev-features {
  display: flex !important;
  gap: 0.6rem !important;
  flex-wrap: wrap !important;
  margin-top: 1rem !important;
}

.canvas-feat-item {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  padding: 0.4rem 0.85rem !important;
  border-radius: 6px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #F8FAFC !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.canvas-feat-item i {
  color: #ED1C24 !important;
}

.canvas-timeline-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  z-index: 10 !important;
  overflow: hidden !important;
}

.canvas-timeline-fill {
  height: 100% !important;
  background: #ED1C24 !important;
  width: 0% !important;
  box-shadow: 0 0 10px #ED1C24 !important;
  transition: width 0.05s linear !important;
}

@media (max-width: 768px) {
  .hero-revolution-section {
    padding: 0.5rem 0 1.5rem 0 !important;
  }
  .hero-revolution-container {
    padding: 0 0.75rem !important;
  }
  .canvas-card {
    border-radius: 12px !important;
  }
  .canvas-card .card-header {
    padding: 0.6rem 1rem !important;
  }
  .canvas-rev-viewport {
    min-height: 440px !important;
    height: auto !important;
    padding-bottom: 1.5rem !important;
  }
  .canvas-rev-content {
    padding: 1.5rem 1.25rem 0.5rem 1.25rem !important;
  }
  .canvas-rev-title {
    font-size: 1.25rem !important;
  }
  .canvas-player-bar {
    top: 15px !important;
    left: 15px !important;
  }
/* ==========================================================================
   TRUST STRIP & ACCREDITATIONS (CENTERED)
   ========================================================================== */
.trust-strip {
  width: 100% !important;
  padding: 1.5rem 0 2rem 0 !important;
  background: transparent !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.trust-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 1.25rem !important;
  text-align: center !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1rem 2rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="light"] .trust-wrapper,
body.light-theme .trust-wrapper {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.trust-label {
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  color: #ED1C24 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.trust-badges {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.trust-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #E2E8F0 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
}

.trust-item:hover {
  background: rgba(237, 28, 36, 0.15) !important;
  border-color: rgba(237, 28, 36, 0.4) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
}

.trust-item i {
  color: #10B981 !important;
  font-size: 0.95rem !important;
}

[data-theme="light"] .trust-item,
body.light-theme .trust-item {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  color: #334155 !important;
}

[data-theme="light"] .trust-item:hover,
body.light-theme .trust-item:hover {
  background: #FEF2F2 !important;
  border-color: #FECACA !important;
  color: #ED1C24 !important;
}

@media (max-width: 768px) {
  .trust-wrapper {
    flex-direction: column !important;
    padding: 1rem !important;
    gap: 0.75rem !important;
  }
  .trust-badges {
    gap: 0.5rem !important;
  }
  .trust-item {
    font-size: 0.78rem !important;
    padding: 0.35rem 0.75rem !important;
  }
}




