/* ==========================================================================
   ASWAK EVENTS — WORLD-CLASS B2B EXHIBITION PLATFORM
   Design System: Vert Profond (Deep Botanical Emerald) & Gris Souris (Slate Neutrals)
   Ultra-High-End Corporate Standard (Desktop, Tablet & Mobile)
   ========================================================================== */

:root {
  /* Green Palette (Vert Profond, Forêt & Émeraude Vivante) */
  --green-950: #06160d;
  --green-900: #0a2114;
  --green-850: #0f2c1b;
  --green-800: #143823;
  --green-750: #1a462c;
  --green-700: #215637;
  --green-600: #2b7048;
  --green-500: #388e5c;
  --green-400: #4bb075;
  --green-300: #73ca96;
  --green-200: #a7e3bf;
  --green-100: #daf3e4;
  --green-50:  #f0faf4;

  /* Gris Souris & Slate Neutrals (Mouse Grey / High-End Neutrals) */
  --slate-950: #0b0f14;
  --slate-900: #121820;
  --slate-850: #1a222c;
  --slate-800: #242e3b;
  --slate-700: #354252;
  --slate-600: #4a5a6e;
  --slate-500: #64758b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-150: #edf2f7;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  /* Surface & Canvas System */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-dark: #0a2114;
  --bg-dark-card: #0f2c1b;

  /* Typography System */
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --text-inverse-muted: #94a3b8;

  /* Micro-Borders & Dividers */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-light: rgba(15, 23, 42, 0.12);
  --border-medium: rgba(15, 23, 42, 0.18);
  --border-green: rgba(20, 56, 35, 0.22);
  --border-green-glow: rgba(56, 142, 92, 0.35);
  --border-dark-subtle: rgba(255, 255, 255, 0.1);
  --border-dark-light: rgba(255, 255, 255, 0.18);

  /* Shadows (Multi-Tier Minimalist Luxury) */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 5px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 14px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 24px 50px rgba(10, 33, 20, 0.12), 0 6px 14px rgba(15, 23, 42, 0.04);
  --shadow-glow-green: 0 0 24px rgba(43, 112, 72, 0.25);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Font Families */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Cairo', 'Tajawal', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1220px;
  --header-height: 76px;
  --header-mobile-height: 64px;
}

/* ==========================================================================
   BASE & RESET WITH ZERO-OVERFLOW
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Keyframes */
@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(75, 176, 117, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(75, 176, 117, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(75, 176, 117, 0); }
}

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

@keyframes tickerSlideLuxury {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   1. 3D VERTICAL WORD MORPH (0px LAYOUT SHIFT ENGINE)
   ========================================================================== */
.word-morph-container {
  display: inline-block;
  vertical-align: bottom;
  height: 1.22em;
  overflow: hidden;
  position: relative;
  min-width: 260px;
}

.word-morph-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  pointer-events: none;
}

.word-morph-item.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.word-morph-item.is-prev {
  opacity: 0;
  transform: translateY(-100%);
  position: absolute;
}



/* Scroll Reveal Animations with Staggered Cascade */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Child Card Delays */
.events-grid .event-card:nth-child(1),
.benefits-grid .benefit-card:nth-child(1),
.speakers-grid .speaker-card:nth-child(1),
.destinations-grid .destination-card:nth-child(1),
.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}

.events-grid .event-card:nth-child(2),
.benefits-grid .benefit-card:nth-child(2),
.speakers-grid .speaker-card:nth-child(2),
.destinations-grid .destination-card:nth-child(2),
.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.12s;
}

.events-grid .event-card:nth-child(3),
.benefits-grid .benefit-card:nth-child(3),
.speakers-grid .speaker-card:nth-child(3),
.destinations-grid .destination-card:nth-child(3),
.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.19s;
}

.events-grid .event-card:nth-child(4),
.benefits-grid .benefit-card:nth-child(4),
.speakers-grid .speaker-card:nth-child(4),
.destinations-grid .destination-card:nth-child(4),
.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.26s;
}

.events-grid .event-card:nth-child(5),
.benefits-grid .benefit-card:nth-child(5),
.speakers-grid .speaker-card:nth-child(5),
.destinations-grid .destination-card:nth-child(5),
.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.33s;
}

/* Event Filter Tabs */
.event-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.filter-tab-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.filter-tab-btn:hover {
  color: var(--green-850);
  border-color: var(--green-300);
  background-color: var(--green-50);
  transform: translateY(-1px);
}

.filter-tab-btn.active {
  background-color: var(--green-800);
  color: #ffffff;
  border-color: var(--green-800);
  box-shadow: 0 3px 10px rgba(10, 33, 20, 0.2);
}

/* ==========================================================================
   3. INTERACTIVE STAND ESTIMATOR (EXHIBITOR PAGE & MODAL)
   ========================================================================== */
.stand-calc-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 3rem 0;
}

.calc-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.stand-size-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.size-pill-option {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: #ffffff;
}

.size-pill-option:hover {
  border-color: var(--green-400);
  background-color: var(--green-50);
}

.size-pill-option.selected {
  border-color: var(--green-700);
  background-color: var(--green-50);
  box-shadow: 0 0 0 2px var(--green-700);
}

.size-pill-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-950);
  display: block;
}

.size-pill-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
}

.stand-summary-box {
  background: linear-gradient(145deg, #07190f 0%, #0d2818 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  border: 1px solid var(--border-dark-light);
}

/* ==========================================================================
   4. LIGHTBOX MODAL FOR GALLERY
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 15, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-img-container {
  position: relative;
  max-width: 950px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
}

h1 { font-size: clamp(2.25rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* Section Common Structure */
.section {
  padding: 5.5rem 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-inverse);
}
.section-dark p {
  color: var(--text-inverse-muted);
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--green-800);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.95rem;
}

.section-dark .section-tag {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-dark-light);
}

.section-title {
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate-600);
}

/* ==========================================================================
   BUTTONS (VERT & GRIS SOURIS ELITE)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  box-sizing: border-box;
}

/* Primary Button: High-End Forest Green */
.btn-primary, .btn-gold {
  background: linear-gradient(180deg, var(--green-750) 0%, var(--green-850) 100%);
  color: #ffffff;
  border-color: var(--green-850);
  box-shadow: 0 2px 4px rgba(10, 33, 20, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover, .btn-gold:hover {
  background: linear-gradient(180deg, var(--green-700) 0%, var(--green-800) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 33, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Secondary Button: Mouse Grey / Slate Outline */
.btn-outline {
  background-color: #ffffff;
  border-color: var(--slate-300);
  color: var(--slate-800);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  border-color: var(--green-700);
  color: var(--green-800);
  background-color: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Outline White (On Dark Backdrops) */
.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn .icon-arrow-right {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .icon-arrow-right {
  transform: translateX(4px);
}

/* ==========================================================================
   SCROLL PROGRESS BAR & FLOATING BACK-TO-TOP
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400), #73ca96);
  z-index: 9999;
  width: 0%;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(56, 142, 92, 0.6);
}

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-950) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(10, 33, 20, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-850) 100%);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 32px rgba(10, 33, 20, 0.35);
}

/* ==========================================================================
   HEADER & FLOATING NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: var(--header-mobile-height);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 0.5rem;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-950);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

[dir="rtl"] .brand-logo {
  margin-right: 0;
  margin-left: 0.5rem;
}

.brand-logo-text {
  font-weight: 800;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--green-600);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 0.55vw, 0.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-size: clamp(0.76rem, 0.82vw, 0.86rem);
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 0.35rem clamp(0.25rem, 0.4vw, 0.55rem);
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-800);
  background-color: var(--slate-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.desktop-badges-btn {
  font-weight: 700;
  border-color: var(--green-300);
  color: var(--green-800);
  background-color: var(--green-50);
  padding: 0.42rem 0.8rem;
  font-size: 0.8rem;
}

.desktop-badges-btn:hover {
  background-color: var(--green-700);
  color: #ffffff;
}

.desktop-cta {
  padding: 0.42rem 1rem;
  font-size: 0.825rem;
  font-weight: 700;
}

/* Mouse Grey & Green Segmented Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background-color: var(--slate-150);
  padding: 3px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--slate-200);
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-600);
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background-color: #ffffff;
  color: var(--green-950);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.lang-btn:hover:not(.active) {
  color: var(--green-800);
}

.mobile-nav-item {
  display: none !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--slate-900);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   DYNAMIC HERO SECTION (ATMOSPHERE & SHOWCASE)
   ========================================================================== */
/* ==========================================================================
   ELITE HERO SECTION (PURE CSS BOTANICAL & LUXURY EMERALD MESH BACKGROUND)
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5.5rem;
  background: 
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(52, 211, 153, 0.22) 0%, transparent 65%),
    radial-gradient(circle 600px at 15% 35%, rgba(16, 185, 129, 0.14) 0%, transparent 70%),
    radial-gradient(circle 600px at 85% 65%, rgba(5, 150, 105, 0.16) 0%, transparent 70%),
    radial-gradient(circle 400px at 50% 100%, rgba(4, 120, 87, 0.20) 0%, transparent 60%),
    linear-gradient(150deg, #04140b 0%, #072213 35%, #0b2f1b 70%, #0f3d23 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Subtle architectural modern grid pattern mask */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  animation: floatAmbient 12s ease-in-out infinite alternate;
}

.glow-top {
  top: -80px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
}

.glow-bottom {
  bottom: -100px;
  left: 8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.08); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3.5rem;
  align-items: start;
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-200);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  background-color: var(--green-400);
  border-radius: 50%;
  animation: pulseLive 2s infinite;
}

.hero-title {
  margin-bottom: 1.35rem;
  line-height: 1.22;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  min-height: 2.5em;
}

.hero-title-main, .hero-title-sub {
  display: inline;
}

.hero-typewriter-box {
  display: inline;
  position: relative;
  white-space: nowrap;
}

.typing-text {
  color: var(--green-300);
  background: linear-gradient(135deg, #a7f3d0 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  transition: color 0.15s ease;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--green-400);
  vertical-align: -0.1em;
  margin-left: 3px;
  animation: blinkCursor 0.8s infinite;
}

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

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
}

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

/* Inscription and Mail Action Box (from djazair.aswak.bio) */
.hero-inscription-card {
  background: rgba(7, 25, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #a7f3d0;
  margin-bottom: 0.75rem;
}

.hero-card-doc a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.hero-card-doc a:hover {
  background-color: var(--green-600);
  border-color: var(--green-400);
  transform: translateY(-2px);
}

.hero-card-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn-shine:hover::after {
  left: 120%;
}

/* Metric Bar in Hero with Interactive Micro-Lifts */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-stats .stat-item {
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.hero-stats .stat-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 25px rgba(10, 33, 20, 0.08);
}

.stat-item-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-850);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.hero-stats .stat-item:hover .stat-item-number {
  color: var(--green-600);
}

.stat-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-500);
  line-height: 1.4;
}

/* Hero Showcase Frame */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 0.5rem;
}

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

.hero-showcase-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: heroPosterFloat 5s ease-in-out infinite;
  will-change: transform;
}

.hero-main-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(10, 33, 20, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  padding: 0.5rem;
  position: relative;
  width: 100%;
}

.hero-main-frame img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: -18px;
  left: -15px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 5;
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.floating-badge-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
}

/* Quick Document & Mail Action Bar inside Hero */
.hero-quick-action-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.quick-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background-color: var(--slate-100);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--slate-800);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.quick-action-pill:hover {
  background-color: var(--green-50);
  border-color: var(--green-300);
  color: var(--green-850);
  transform: translateY(-2px);
}

.quick-action-pill svg {
  color: var(--green-600);
}

.quick-action-pill.mail-pill {
  background-color: #ffffff;
  border-color: var(--green-200);
  color: var(--green-800);
}

/* ==========================================================================
   2. THE 4 QUICK EVENT HIGHLIGHT BOXES (From djazair.aswak.bio)
   ========================================================================== */
.quick-boxes-section {
  padding: 2.25rem 0 3.5rem 0;
  background-color: #ffffff;
  position: relative;
  z-index: 5;
}

.quick-boxes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-box-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 33, 20, 0.08);
  border-color: var(--green-300);
}

.quick-box-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--green-150);
}

.quick-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  margin-bottom: 0.2rem;
}

.quick-box-val {
  font-size: 0.925rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
}

.badge-sub-role {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--green-700);
}

.quick-box-card.highlight-card {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border-color: var(--green-700);
  color: #ffffff;
  cursor: pointer;
}

.quick-box-card.highlight-card .quick-box-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--green-200);
}

.quick-box-card.highlight-card .quick-box-label {
  color: var(--green-200);
}

.quick-box-card.highlight-card .quick-box-val {
  color: #ffffff;
}

/* ==========================================================================
   3. TOUT SUR L’EXPOSITION / DJAZABIO PRESENTATION
   ========================================================================== */
.section-about-djazabio {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-djazabio-box {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-djazabio-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--slate-950);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-djazabio-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--slate-700);
  margin-bottom: 3rem;
}

.djazabio-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  text-align: left;
}

[dir="rtl"] .djazabio-pillars-grid {
  text-align: right;
}

.pillar-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}

.pillar-icon {
  font-size: 1.6rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  background-color: var(--slate-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-body {
  flex-grow: 1;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.3rem;
}

.pillar-text {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.about-djazabio-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   4. REAL COUNTERS STRIP (From djazair.aswak.bio)
   ========================================================================== */
.counters-strip-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(7, 25, 15, 0.88) 0%, rgba(14, 49, 31, 0.85) 100%),
              url('../images/counter-bg.jpg') center/cover no-repeat fixed;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.counters-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.counter-strip-card {
  padding: 1rem;
}

.counter-strip-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.counter-strip-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   5. CONNAISSANCES & INSPIRATION BANNER (From djazair.aswak.bio)
   ========================================================================== */
.inspiration-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, rgba(7, 25, 15, 0.90) 0%, rgba(14, 49, 31, 0.88) 100%),
              url('../images/conference-bg.jpg') center/cover no-repeat fixed;
  color: #ffffff;
  position: relative;
}

.inspiration-box {
  background: rgba(10, 33, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.inspiration-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 176, 117, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.inspiration-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-300);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.inspiration-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.35rem;
  line-height: 1.25;
}

.inspiration-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.inspiration-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.next-event-box {
  background: linear-gradient(145deg, #07190f 0%, #0d2818 50%, #153b24 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-dark-light);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.next-event-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(75, 176, 117, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.next-event-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.next-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-200);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.15rem;
}

.next-event-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
}

.next-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  max-width: 100%;
  box-sizing: border-box;
}

.meta-pill svg {
  color: var(--green-300);
  flex-shrink: 0;
}

.next-event-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 1.85rem;
}

.next-event-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* High-Precision Digital Countdown Clock */
.countdown-card {
  background: rgba(7, 25, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(16px);
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.countdown-card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--green-200);
  margin-bottom: 1.35rem;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.time-box {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 0.35rem;
  border-radius: var(--radius-md);
}

.time-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.time-lbl {
  font-size: 0.675rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ==========================================================================
   EVENTS SHOWCASE GRID (5 ALGERIAN SALONS)
   ========================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  width: 100%;
}

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

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.event-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--slate-900);
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card-media img {
  transform: scale(1.04);
}

.event-status-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.event-status-badge.confirmed {
  background-color: var(--green-800);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.event-status-badge.upcoming {
  background-color: rgba(18, 24, 32, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.event-city-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--slate-900);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.775rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.event-card-body {
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card-date {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.event-card-venue {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 0.85rem;
}

.event-card-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
  gap: 0.65rem;
}

/* ==========================================================================
   WHY PARTICIPATE (B2B VALUE PILLARS)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.benefit-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.benefit-title {
  font-size: 1.175rem;
  margin-bottom: 0.55rem;
  color: var(--text-main);
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   EXHIBITOR CALLOUT BANNER
   ========================================================================== */
.exhibitor-banner {
  background: linear-gradient(145deg, #07190f 0%, #0f2c1b 50%, #1a462c 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark-light);
  width: 100%;
  box-sizing: border-box;
}

.exhibitor-banner-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.exhibitor-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.exhibitor-banner-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.85rem;
}

.exhibitor-feature-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exhibitor-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.exhibitor-feature-item svg {
  color: var(--green-300);
  flex-shrink: 0;
}

/* ==========================================================================
   SPEAKERS & INSTITUTIONAL EXPERTS
   ========================================================================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.speaker-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.speaker-photo-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.speaker-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.speaker-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-850), var(--green-700));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-200);
}

.speaker-card-body {
  padding: 1.5rem 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.speaker-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.speaker-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.25rem;
}

.speaker-org {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}

.speaker-specialty-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--green-850);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.95rem;
  align-self: center;
}

.speaker-bio {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--slate-600);
  margin-top: auto;
}

/* ==========================================================================
   EDITORIAL ABOUT SECTION (ALGERIAN NATIONAL PRESENCE)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.15rem;
  color: var(--slate-600);
}

.about-highlights {
  list-style: none;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--slate-800);
}

.about-highlight-item svg {
  color: var(--green-700);
  flex-shrink: 0;
}

.about-image-composition {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  background-color: #ffffff;
  padding: 0.5rem;
  width: 100%;
  max-width: 460px;
}

.about-img-main img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-floating-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   EXHIBITORS ROSTER & PARTICIPANTS DIRECTORY (وين نحطوا المشتركين)
   ========================================================================== */
.exhibitors-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exhibitor-roster-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.exhibitor-roster-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.exhibitor-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.exhibitor-stand-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-800);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.exhibitor-tag-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  background-color: var(--slate-100);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.exhibitor-logo-box {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.85rem;
}

[dir="rtl"] .exhibitor-logo-box {
  justify-content: flex-start;
}

.exhibitor-logo-inner {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exhibitor-card-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}

.exhibitor-category {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.35rem;
}

.exhibitor-location {
  font-size: 0.825rem;
  color: var(--slate-500);
  margin-bottom: 0.85rem;
}

.exhibitor-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.exhibitor-card-actions {
  margin-top: auto;
}

/* ==========================================================================
   STAND OPTIONS & FORMULAS BY SURFACE AREA (خيارات المشاركة حسب المساحة)
   ========================================================================== */
.stand-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.stand-option-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.stand-option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-300);
}

.featured-stand-card {
  background: linear-gradient(145deg, #07190f 0%, #0d2818 50%, #153b24 100%);
  color: #ffffff;
  border-color: var(--green-700);
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(10, 33, 20, 0.25);
}

.featured-stand-card:hover {
  transform: scale(1.03) translateY(-5px);
}

.stand-popular-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 100%);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[dir="rtl"] .stand-popular-ribbon {
  right: auto;
  left: 20px;
}

.stand-option-header {
  margin-bottom: 1.5rem;
}

.stand-size-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-800);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.stand-option-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: inherit;
}

.stand-option-subtitle {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.featured-stand-card .stand-option-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.stand-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.stand-features-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slate-700);
}

.featured-stand-card .stand-features-list li {
  color: rgba(255, 255, 255, 0.95);
}

.stand-option-footer {
  margin-top: auto;
}

/* ==========================================================================
   GALLERY (MOMENTS FORTS)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  background-color: var(--slate-900);
  border: 1px solid var(--border-subtle);
}

.gallery-item.span-2 {
  grid-column: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 22, 13, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.925rem;
}

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

/* ==========================================================================
   DESTINATIONS / VENUES
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.destination-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.destination-city-name {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.destination-event-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.destination-venue-name {
  font-size: 0.875rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--green-600);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 0.85rem;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--slate-100);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--green-800);
  color: #ffffff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 350px;
  padding-bottom: 1.35rem;
}

.faq-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--slate-600);
}

/* ==========================================================================
   CONTACT SECTION & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.75rem;
  width: 100%;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-info-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-main);
}

.contact-form-panel {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-main);
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3.5px rgba(43, 112, 72, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

/* ==========================================================================
   FOOTER (CORPORATE GRIS SOURIS & VERT)
   ========================================================================== */
.site-footer {
  background-color: var(--slate-950);
  color: var(--slate-300);
  padding: 4.5rem 0 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate-400);
  margin-bottom: 1.35rem;
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--slate-300);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.7rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--green-400);
}

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

/* ==========================================================================
   EVENT DETAIL PAGE
   ========================================================================== */
.event-hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4.5rem;
  background: linear-gradient(145deg, #07190f 0%, #0f2c1b 50%, #1a462c 100%);
  color: #ffffff;
  position: relative;
}

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

.event-hero h1 {
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.event-hero-tagline {
  font-size: 1.2rem;
  color: var(--green-200);
  font-weight: 600;
  margin-bottom: 1.35rem;
}

.event-hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.event-hero-meta-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.event-hero-meta-item svg {
  color: var(--green-300);
  flex-shrink: 0;
}

.event-meta-label {
  font-size: 0.725rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

.event-meta-val {
  font-size: 0.925rem;
  font-weight: 700;
  color: #ffffff;
}

/* Timeline & Schedule */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  align-items: center;
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-800);
}

.timeline-title {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--slate-900);
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--green-600);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 15, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.modal-header {
  padding: 1.35rem 1.65rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  color: var(--text-main);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.modal-body {
  padding: 1.65rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (DESKTOP, TABLET & MOBILE)
   ========================================================================== */
.site-header .container {
  max-width: 100%;
  padding-left: clamp(1rem, 2vw, 2.5rem);
  padding-right: clamp(1rem, 2vw, 2.5rem);
}

@media screen and (min-width: 1151px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media screen and (max-width: 1150px) {
  :root {
    --header-height: 66px;
    --header-mobile-height: 66px;
  }

  .site-header {
    height: var(--header-mobile-height);
  }

  .brand-logo {
    margin-right: 0.5rem;
    font-size: 1.15rem;
  }

  .desktop-cta, .desktop-badges-btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--slate-900);
  }

  .lang-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.75rem;
  }

  /* Clean Fullscreen Mobile Menu Drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-mobile-height) + 1.25rem) 1.5rem 2.5rem 1.5rem;
    gap: 0.85rem;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-sizing: border-box;
  }

  .nav-links.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-link {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    width: 100%;
    color: var(--slate-900);
    border-bottom: 1px solid var(--slate-150);
    padding: 0.75rem 0;
  }

  .mobile-nav-item {
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-media-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 0;
  }

  .about-grid, .next-event-grid, .contact-grid, .event-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding: 3.5rem 0;
  }

  /* Hero Mobile Refinement */
  .hero {
    padding-top: calc(var(--header-mobile-height) + 1.25rem);
    padding-bottom: 3.5rem;
  }

  .hero-live-pill {
    font-size: 0.725rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    white-space: normal;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    line-height: 1.25;
    min-height: auto;
    margin-bottom: 1rem;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-typewriter-box {
    display: inline;
    white-space: normal;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-inscription-card {
    padding: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .hero-card-title {
    font-size: 0.875rem;
  }

  .hero-card-doc a {
    font-size: 0.78rem;
    padding: 0.55rem 0.85rem;
  }

  .hero-showcase-container {
    max-width: 100%;
    animation: none;
  }

  .hero-main-frame img {
    max-height: 350px;
  }

  .hero-floating-badge {
    position: static !important;
    transform: none !important;
    margin-top: 0.85rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.85rem 1rem;
  }

  /* Quick Boxes Grid */
  .quick-boxes-section {
    padding: 1.5rem 0 2.5rem 0;
  }

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

  .quick-box-card {
    padding: 1rem 0.85rem;
    gap: 0.75rem;
  }

  .quick-box-icon {
    width: 36px;
    height: 36px;
  }

  .quick-box-label {
    font-size: 0.68rem;
  }

  .quick-box-val {
    font-size: 0.825rem;
  }

  /* About DJAZABIO Pillars */
  .section-about-djazabio {
    padding: 3.5rem 0;
  }

  .about-djazabio-box {
    padding: 2rem 1.15rem;
  }

  .about-djazabio-title {
    font-size: 1.35rem;
  }

  .about-djazabio-lead {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .djazabio-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
  }

  .pillar-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  }

  .pillar-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
  }

  .pillar-title {
    font-size: 0.95rem;
    font-weight: 800;
  }

  .pillar-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .about-djazabio-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-djazabio-actions .btn {
    width: 100%;
  }

  /* Counters Strip */
  .counters-strip-section {
    padding: 3rem 0;
  }

  .counters-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .counter-strip-number {
    font-size: 2.2rem;
  }

  .counter-strip-label {
    font-size: 0.75rem;
  }

  /* Next Event / SAFEX Section */
  .next-event-box {
    padding: 1.75rem 1.15rem;
  }

  .djazabio-bullets-list li {
    font-size: 0.9rem !important;
  }

  .next-event-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .next-event-actions .btn {
    width: 100%;
  }

  .countdown-timer {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }

  .time-val {
    font-size: 1.25rem;
  }

  .time-lbl {
    font-size: 0.65rem;
  }

  /* Conferences Inspiration Box */
  .inspiration-section {
    padding: 3.5rem 0;
  }

  .inspiration-box {
    padding: 2.5rem 1.25rem;
  }

  .inspiration-title {
    font-size: 1.45rem;
  }

  .inspiration-text {
    font-size: 0.95rem;
  }

  .inspiration-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .inspiration-actions .btn {
    width: 100%;
  }

  /* Speakers Grid */
  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .speaker-photo-wrap {
    height: 260px;
  }

  /* Exhibitors Roster & Stand Options */
  .exhibitors-roster-grid, .stand-options-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stand-popular-ribbon {
    position: static;
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  /* Stand Calculator */
  .stand-calculator-box {
    padding: 1.75rem 1.15rem;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Events Grid & Benefits Grid */
  .events-grid, .benefits-grid, .destinations-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  /* Contact Form Panel */
  .contact-form-panel {
    padding: 1.75rem 1.15rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media screen and (max-width: 575px) {
  .quick-boxes-grid {
    grid-template-columns: 1fr;
  }

  .counters-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .counter-strip-number {
    font-size: 1.95rem;
  }
}
