/* ==========================================================================
   INTELLIGENT COMMUNICATION — 2027 LUXURY GSAP DESIGN SYSTEM
   Design Philosophy: Modern Luxury, Kinetic Motion, Glassmorphism, RTL First
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette (Obsidian & Emerald/Cyan/Gold Luxury) */
  --bg-primary: #090a0f;
  --bg-secondary: #0f111a;
  --bg-card: rgba(21, 25, 38, 0.7);
  --bg-card-hover: rgba(30, 36, 56, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.07);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(16, 185, 129, 0.4);
  --border-gold: rgba(245, 158, 11, 0.4);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  /* Accents & Gradients */
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-coral: #f43f5e;

  --grad-primary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  --grad-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  --grad-text: linear-gradient(135deg, #ffffff 0%, #a7f3d0 50%, #38bdf8 100%);

  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --glow-emerald: 0 0 30px rgba(16, 185, 129, 0.35);
  --glow-gold: 0 0 30px rgba(245, 158, 11, 0.4);
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.35);

  /* Typography */
  --font-arabic: 'Cairo', 'Alexandria', 'Tajawal', system-ui, -apple-system, sans-serif;
  --font-heading: 'Alexandria', 'Cairo', sans-serif;
  --font-latin: 'Plus Jakarta Sans', 'Outfit', sans-serif;

  /* Layout & Dimensions */
  --container-max: 1320px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(0, 0, 0, 0.02);
  --bg-glass-strong: rgba(0, 0, 0, 0.05);

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(16, 185, 129, 0.5);
  --border-gold: rgba(245, 158, 11, 0.5);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
  --grad-text: linear-gradient(135deg, #0f172a 0%, #059669 60%, #0284c7 100%);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

ul {
  list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-emerald);
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 99;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --- Custom Magnetic Cursor --- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  transition: transform 0.1s ease;
}

.cursor-trail {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.custom-cursor.hovering .cursor-trail {
  width: 70px;
  height: 70px;
  top: -35px;
  left: -35px;
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
}
.custom-cursor.hovering .cursor-dot {
  opacity: 0;
}
.custom-cursor.hovering .cursor-text {
  opacity: 1;
}

@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* --- Top Announcement Bar --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #064e3b, #0f172a 50%, #064e3b);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 8px 1rem;
  font-size: 0.85rem;
  color: #e2e8f0;
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-emerald);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  animation: pulseGlow 2s infinite;
}

.announcement-link {
  color: var(--accent-gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announcement-link:hover {
  text-decoration: underline;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* --- Header / Navigation Bar --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(9, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(9, 10, 15, 0.95);
  box-shadow: var(--shadow-md);
  height: 72px;
}

[data-theme="light"] .site-header {
  background: rgba(248, 250, 252, 0.85);
}
[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Nav Menu */
.main-navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--accent-emerald);
  transition: width var(--transition-fast);
  border-radius: var(--radius-pill);
}

.nav-item:hover {
  color: var(--text-primary);
}

.nav-item:hover::after {
  width: 80%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Currency Selector */
.currency-selector {
  position: relative;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-emerald);
}

.arrow-icon {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.currency-selector.open .arrow-icon {
  transform: rotate(180deg);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 180px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.currency-selector.open .currency-dropdown {
  display: flex;
  animation: fadeInDown 0.2s ease;
}

.currency-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.currency-option:hover {
  background: var(--bg-glass-strong);
}

.currency-option.active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.checkmark {
  display: none;
  font-size: 0.75rem;
}
.currency-option.active .checkmark {
  display: block;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-emerald);
  transform: scale(1.05);
}

.sun-icon { display: none; color: var(--accent-gold); }
.moon-icon { display: block; color: var(--accent-cyan); }

[data-theme="light"] .sun-icon { display: block; }
[data-theme="light"] .moon-icon { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.drawer-close {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: block;
  transition: background var(--transition-fast);
}

.drawer-link:hover {
  background: var(--bg-glass-strong);
  color: var(--accent-emerald);
}

.drawer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: var(--grad-primary);
  color: #000;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55);
}

.btn-gold {
  background: var(--grad-gold);
  color: #000;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.65);
}

.btn-glass {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-emerald);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn:hover .btn-glow {
  left: 100%;
}

/* --- LUXURY CARDS & SURFACES --- */
.luxury-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* 3D Tilt Card Base */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Section Common Styles */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glow-text {
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.3;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-emerald);
  top: 10%;
  right: -100px;
}
.orb-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-cyan);
  bottom: 10%;
  left: -50px;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  top: 40%;
  left: 40%;
  opacity: 0.15;
}

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

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.pill-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .en-sub {
  display: block;
  font-family: var(--font-latin);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

.hero-quote-card {
  background: rgba(255, 255, 255, 0.03);
  border-right: 4px solid var(--accent-emerald);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.quote-icon {
  color: var(--accent-emerald);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.hero-quote-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.quote-en-sub {
  font-family: var(--font-latin);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-md);
}

.highlight-icon {
  color: var(--accent-emerald);
  font-size: 1.1rem;
}

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

.h-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.h-val {
  font-size: 0.85rem;
  font-weight: 700;
}

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

.play-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-emerald);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.avatar-group {
  display: flex;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

.trust-text .stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 3D Poster Visual Card */
.visual-3d-card {
  perspective: 1200px;
}

.card-glass-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.speaker-poster-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.speaker-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 10, 15, 0.95) 100%);
}

.poster-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.9);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-gold);
}

.poster-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
}

.caption-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.caption-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Floating Widgets on Poster */
.floating-widget {
  position: absolute;
  background: rgba(15, 17, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floatWidget 4s ease-in-out infinite alternate;
}

.widget-1 {
  top: 15%;
  left: -20px;
}
.widget-2 {
  bottom: 30%;
  right: -20px;
  animation-delay: 1.5s;
}
.widget-3 {
  bottom: 10%;
  left: -15px;
  animation-delay: 2.5s;
}

@keyframes floatWidget {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.widget-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.widget-icon.gold { background: rgba(245, 158, 11, 0.2); color: var(--accent-gold); }
.widget-icon.cyan { background: rgba(6, 182, 212, 0.2); color: var(--accent-cyan); }
.widget-icon.emerald { background: rgba(16, 185, 129, 0.2); color: var(--accent-emerald); }

.widget-data {
  display: flex;
  flex-direction: column;
}
.w-val {
  font-size: 0.85rem;
  font-weight: 800;
}
.w-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Scroll Down Button */
.scroll-down-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.scroll-down-btn:hover {
  color: var(--accent-emerald);
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}
.mouse-icon .wheel {
  width: 4px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ==========================================================================
   ABOUT & WORKSHOP SUMMARY
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.card-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.card-icon-circle.purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.card-icon-circle.blue { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.card-icon-circle.emerald { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.card-en-note {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

/* Summary Box */
.workshop-summary-box {
  background: var(--bg-secondary);
}

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

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pill {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.s-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   SPEAKER SECTION (KAREEM ESMAIL)
   ========================================================================== */
.speaker-showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.speaker-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.speaker-portrait {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.speaker-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 17, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: var(--font-latin);
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.speaker-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.speaker-heading .en-heading {
  font-family: var(--font-latin);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.speaker-bio-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.speaker-bio-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.speaker-en-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}

.speaker-en-card .en-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.speaker-en-card p {
  font-family: var(--font-latin);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-latin);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent-emerald);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   OBJECTIVES & BENTO GRID
   ========================================================================== */
.master-objective-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2rem;
  margin: 1.5rem 0 3rem;
  text-align: center;
}

.obj-badge-pill {
  display: inline-block;
  background: var(--accent-emerald);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.obj-title-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.obj-en-text {
  font-family: var(--font-latin);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sub-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 2rem;
}

.sub-section-title .en-sub-title {
  font-family: var(--font-latin);
  font-size: 1rem;
  color: var(--text-muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.bento-number {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-latin);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.bento-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bento-en {
  font-family: var(--font-latin);
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.5rem;
}

/* ==========================================================================
   DEVELOPMENT MAP (خريطة التطوير)
   ========================================================================== */
.roadmap-wrapper {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 2rem 0;
}

.roadmap-progress-bar {
  position: absolute;
  top: 0;
  right: 28px;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.roadmap-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background: var(--grad-primary);
  box-shadow: var(--glow-emerald);
  transition: height 0.2s ease;
  border-radius: var(--radius-pill);
}

.roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.step-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: all var(--transition-normal);
}

.roadmap-step.active .step-marker {
  border-color: var(--accent-emerald);
  background: var(--accent-emerald);
  color: #000;
  box-shadow: var(--glow-emerald);
}

.step-marker .step-icon {
  display: none;
}

.step-content {
  flex-grow: 1;
  padding: 1.5rem;
}

.step-badge {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.step-en {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   EXPERIENCE SECTION (عش التجربة بكافة حواسك)
   ========================================================================== */
.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.experience-card {
  padding: 2rem;
}

.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.exp-icon.gold { background: rgba(245, 158, 11, 0.15); color: var(--accent-gold); }
.exp-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.exp-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.exp-icon.emerald { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }
.exp-icon.amber { background: rgba(217, 119, 6, 0.15); color: var(--accent-gold-light); }
.exp-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.exp-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.exp-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.exp-en {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.experience-callout {
  background: linear-gradient(135deg, rgba(9, 78, 59, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 2.5rem;
}

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

.callout-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-emerald);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.callout-text {
  flex-grow: 1;
}

.callout-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.callout-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.callout-en {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRICING & PACKAGES SECTION
   ========================================================================== */
.tabby-hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 183, 66, 0.1);
  border: 1px solid rgba(45, 183, 66, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.tabby-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 2.5rem 2rem;
}

.featured-pkg {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
  transform: scale(1.03);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent-emerald);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.vip-gold-pkg {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(21, 25, 38, 0.85) 100%);
  border-color: var(--border-gold);
}

.vip-crown-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--grad-gold);
  color: #000;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-gold);
}

.pkg-type-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}
.pkg-type-badge.onsite-badge { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }
.pkg-type-badge.vip-badge { background: rgba(245, 158, 11, 0.2); color: var(--accent-gold); }

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pkg-price-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.price-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.price-original .strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.discount-badge {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-coral);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.curr-symbol {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.curr-amount {
  font-family: var(--font-latin);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.curr-code {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gold-glow .curr-symbol,
.gold-glow .curr-amount {
  color: var(--accent-gold);
}

.tabby-installment {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border-subtle);
}

.tabby-tag {
  background: #3cfb9b;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pkg-features li i {
  color: var(--accent-emerald);
  font-size: 0.85rem;
  margin-top: 4px;
}

.vip-features-heading {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.vip-features li {
  color: var(--text-primary);
}

.vip-star {
  color: var(--accent-gold) !important;
}

/* ==========================================================================
   VENUE SECTION
   ========================================================================== */
.venue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.venue-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.venue-subtitle {
  font-family: var(--font-latin);
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.venue-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.venue-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.venue-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.venue-details-list li i {
  color: var(--accent-emerald);
  font-size: 1.1rem;
  margin-top: 4px;
}

.venue-details-list li div {
  display: flex;
  flex-direction: column;
}

.venue-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.venue-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.venue-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.venue-badge-float {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 17, 26, 0.9);
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   RELATED COURSES SECTION
   ========================================================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.related-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.related-card:hover .course-img {
  transform: scale(1.06);
}

.course-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 10, 15, 0.8);
  backdrop-filter: blur(8px);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.course-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.course-title {
  font-family: var(--font-latin);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-ar-title {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-header {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.contact-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.whatsapp-box .contact-box-icon { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.phone-box .contact-box-icon { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.email-box .contact-box-icon { background: rgba(245, 158, 11, 0.15); color: var(--accent-gold); }

.contact-box-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.contact-box-val {
  font-family: var(--font-latin);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-box-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff;
}

.f-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-about-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.payment-badges-wrap .pay-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-tag {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.pay-tag.tabby-badge {
  background: rgba(60, 251, 155, 0.15);
  color: #3cfb9b;
  border-color: rgba(60, 251, 155, 0.3);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links-list,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-emerald);
  transform: translateX(-4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-list li i {
  color: var(--accent-emerald);
  margin-top: 4px;
}

.footer-social-wrap {
  margin-top: 1.5rem;
}

.social-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--accent-emerald);
  color: #000;
  transform: translateY(-3px);
}

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

.footer-bottom-links {
  display: flex;
  gap: 8px;
}
.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.wa-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover .wa-icon-wrap {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
}

.wa-ping-ring {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  animation: pingAnimation 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

@keyframes pingAnimation {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.scroll-top-btn:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  transform: translateY(-3px);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  color: var(--accent-emerald);
  stroke-dasharray: 132;
  stroke-dashoffset: 132;
  transition: stroke-dashoffset 0.1s ease;
}

/* ==========================================================================
   MODALS (BOOKING & VIDEO)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-dialog {
  width: 100%;
  max-width: 620px;
  background: var(--bg-secondary);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-emerald);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Booking Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Package Radio Group */
.package-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pkg-radio-card {
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  padding: 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: all var(--transition-fast);
}

.pkg-radio-card input {
  position: absolute;
  opacity: 0;
}

.pkg-radio-content {
  display: flex;
  flex-direction: column;
}

.pkg-radio-content .r-title {
  font-size: 0.78rem;
  font-weight: 700;
}

.pkg-radio-content .r-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--accent-emerald);
}

.pkg-radio-card.active {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.12);
}

.pkg-radio-card.vip.active {
  border-color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
}
.pkg-radio-card.vip .r-price {
  color: var(--accent-gold);
}

/* Payment Methods Grid in Modal */
.payment-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-method-card {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  padding: 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pay-method-card input {
  margin-left: 12px;
}

.pay-method-content {
  display: flex;
  flex-direction: column;
}

.pay-method-content .pay-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.pay-method-content .pay-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pay-method-card.active {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}

/* Modal Summary Box */
.modal-summary-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.m-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.m-sum-row.total {
  font-size: 1.1rem;
  font-weight: 900;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 8px;
  margin-top: 8px;
  color: var(--accent-emerald);
}

/* Success View */
.booking-success-view {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-wrap {
  font-size: 4rem;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.booking-success-view h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.booking-success-view p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Modal */
.video-modal-dialog {
  width: 100%;
  max-width: 800px;
  padding: 1.5rem;
}

.video-modal-header {
  margin-bottom: 1rem;
}

.video-modal-header .v-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-modal-header .v-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-container-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}

.video-container-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

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

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

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  .main-navigation { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-title { font-size: 2.4rem; }
  .hero-quote-card { border-right: none; border-top: 4px solid var(--accent-emerald); border-radius: var(--radius-md); text-align: right; }
  .hero-highlights { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-bar { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr 1fr; }

  .speaker-showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .speaker-portrait { height: 420px; }

  .experience-cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .featured-pkg { transform: scale(1); }

  .venue-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .roadmap-progress-bar { display: none; }
  .roadmap-step { gap: 1rem; }
  .step-marker { width: 44px; height: 44px; font-size: 1rem; }

  .package-radio-group { grid-template-columns: 1fr; }
  .floating-whatsapp-btn { bottom: 20px; left: 20px; }
  .scroll-top-btn { bottom: 20px; right: 20px; }
}
