/* ============================================================
   DIGITAL EGYPT — responsive.css
   Premium PC + Mobile upgrade
   ============================================================ */

/* ══ FADE-IN — toujours visible ══ */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition: none !important;
}

/* ══ VARIABLES OVERRIDE — BLANC & MARINE (Apple/AKQA) ══ */
:root {
  --radius:      14px;
  --radius-lg:   22px;
  --navy:        #0A1628;
  --navy-mid:    #132040;
  --navy-dark:   #050D1A;
  --navy-light:  #1A3055;
  --gold:        #B8960C;
  --gold-light:  #D4AF37;
  --gold-dark:   #8B6E08;
  --gold-pale:   #FFFBEB;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray:        #F1F5F9;
  --text:        #0F172A;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 12px rgba(10,22,40,0.07);
  --shadow-md:   0 8px 32px rgba(10,22,40,0.10);
  --shadow-lg:   0 24px 64px rgba(10,22,40,0.13);
}

/* ══ BODY — fond blanc pur ══ */
body {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

/* ══ PAGE HEADERS INTÉRIEURES — clair style Apple ══ */
.page-header {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 40%, #f1f5f9 100%) !important;
  border-bottom: 1px solid #e2e8f0;
  padding: 120px 0 72px !important;
}
.page-header h1 { color: #0F172A !important; }
.page-header p  { color: #64748B !important; }
.page-header .section-tag {
  background: rgba(10,22,40,0.06) !important;
  color: var(--navy) !important;
  border-color: rgba(10,22,40,0.12) !important;
}
.page-header .btn-outline-white {
  border-color: rgba(10,22,40,0.3) !important;
  color: var(--navy) !important;
}
.page-header .btn-outline-white:hover {
  background: rgba(10,22,40,0.06) !important;
}

/* ══ NAV — Premium fixe, 1 ligne garantie TOUTES PAGES ══ */
.nav {
  background: rgba(10,22,40,0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(212,175,55,0.15) !important;
  height: 64px !important;
  overflow: visible !important;
}
.nav-inner {
  height: 64px !important;
  gap: 4px !important;
  padding: 0 16px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}
/* Menu wrapper */
.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  flex: 1 !important;
  justify-content: center !important;
  min-width: 0 !important;
}
/* Dropdown wrapper — doit se comporter comme un <a> dans le flex */
.nav-dropdown {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  flex-shrink: 0 !important;
}
/* Tous les liens nav */
.nav-menu > a,
.nav-dropdown > a {
  color: rgba(255,255,255,0.80) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 6px 8px !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  overflow: visible !important;
  min-width: max-content !important;
  flex-shrink: 0 !important;
}
.nav-menu > a span,
.nav-dropdown > a span {
  white-space: nowrap !important;
  overflow: visible !important;
  display: inline !important;
}
.nav-menu > a:hover, .nav-menu > a.active,
.nav-dropdown > a:hover, .nav-dropdown > a.active {
  color: #D4AF37 !important;
  background: rgba(212,175,55,0.08) !important;
}
/* Logo — compact */
.nav-logo { flex-shrink: 0 !important; gap: 10px !important; }
.nav-logo-icon { width: 34px !important; height: 34px !important; }
.nav-logo-text span:first-child {
  font-size: 14px !important;
  letter-spacing: 1.5px !important;
}
.nav-logo-text span:last-child {
  font-size: 7.5px !important;
  letter-spacing: 2px !important;
}
/* Lang switcher — compact */
.lang-switcher { gap: 3px !important; flex-shrink: 0 !important; }
.lang-btn { padding: 3px 6px !important; font-size: 10px !important; }
/* CTA — premium */
.nav-cta { flex-shrink: 0 !important; gap: 8px !important; }
.nav-cta .btn-gold {
  font-size: 12px !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #E8C84A, #D4AF37) !important;
  box-shadow: 0 3px 14px rgba(212,175,55,0.4) !important;
  letter-spacing: 0.3px !important;
  transition: all 0.25s !important;
}
.nav-cta .btn-gold:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212,175,55,0.55) !important;
}
/* Cacher tel sur tous les écrans moyens */
@media(max-width:1200px) {
  .nav-cta a[href^="tel"] { display: none !important; }
}
@media(max-width:960px) {
  .nav-logo-text span:last-child { display: none !important; }
}

/* ══ LANG SWITCHER ══ */
.lang-btn {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.65) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.lang-btn.active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.lang-switcher { display: flex; gap: 4px; flex-shrink: 0; }

/* ══ SECTIONS — fond blanc propre ══ */
.section { background: #FFFFFF !important; }
.section-light { background: #F8FAFC !important; }
/* Sections sombres qui restent sombres */
.section-navy { background: #0A1628 !important; }
/* Sections avec inline style navy → blanc aussi */
.section[style*="background:var(--navy)"],
.section[style*="background: var(--navy)"] {
  background: #F8FAFC !important;
}
/* Texte dans sections devenues blanches */
.section[style*="background:var(--navy)"] h2,
.section[style*="background:var(--navy)"] p,
.section[style*="background:var(--navy)"] .stat-number,
.section[style*="background: var(--navy)"] h2,
.section[style*="background: var(--navy)"] p {
  color: #0F172A !important;
}

/* ══ CARDS — blanches avec ombre légère ══ */
.service-card, .pricing-card, .testimonial-card, .blog-card {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 2px 16px rgba(10,22,40,0.06) !important;
}
.service-card:hover, .pricing-card:hover, .testimonial-card:hover, .blog-card:hover {
  box-shadow: 0 12px 40px rgba(10,22,40,0.12) !important;
  border-color: rgba(184,150,12,0.3) !important;
}

/* ══ FOOTER & CTA — restent sombres (premium) ══ */
.footer { background: #050D1A !important; }
.cta-section { background: linear-gradient(135deg, #050D1A, #0A1628) !important; }

/* ══ SECTION-NAVY — restent sombres ══ */
.section-navy { background: var(--navy) !important; }

/* ══ TRUST BARS, BADGES ══ */
.section-tag {
  background: rgba(10,22,40,0.06) !important;
  color: var(--navy) !important;
  border-color: rgba(10,22,40,0.12) !important;
}
.section .section-tag { /* sur fond blanc */ }
.section-navy .section-tag, .page-header.dark .section-tag {
  background: rgba(212,175,55,0.12) !important;
  color: var(--gold) !important;
  border-color: rgba(212,175,55,0.25) !important;
}

/* ══ HEADINGS sur fond blanc ══ */
.section h2, .section h3 { color: #0F172A; }
.section p, .section-subtitle { color: #64748B; }

/* ══ URGENCY BAR ══ */
.urgency-bar { position: relative !important; margin-top: 0 !important; z-index: 100 !important; }
div[style*="linear-gradient(90deg,#B8960C"] { margin-top: 0 !important; }

/* ══════════════════════════════════════
   NAV — PREMIUM DESKTOP + MOBILE
   ══════════════════════════════════════ */

/* Top bar */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  padding: 8px 0;
  font-size: 12px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { color: rgba(255,255,255,0.5); }
.topbar-left span { margin-right: 20px; }
.topbar-left span em { color: var(--gold); font-style: normal; margin-right: 4px; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; font-size: 12px; }
.topbar-right a:hover { color: var(--gold); }

/* Nav logo — bigger text */
.nav-logo-text span:first-child {
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: 2.5px !important;
  background: linear-gradient(135deg, #fff 0%, #E8C84A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-text span:last-child {
  font-size: 10px !important;
  letter-spacing: 4px !important;
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* Desktop nav links — underline animation (taille compacte pour tenir sur 1 ligne) */
.nav-menu > a,
.nav-dropdown > a {
  position: relative;
  padding: 6px 9px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.8) !important;
  transition: color 0.25s !important;
  background: none !important;
  white-space: nowrap !important;
}
.nav-menu > a::after,
.nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-menu > a:hover, .nav-menu > a.active,
.nav-dropdown > a:hover, .nav-dropdown > a.active {
  color: var(--gold) !important;
}
.nav-menu > a:hover::after, .nav-menu > a.active::after,
.nav-dropdown > a:hover::after, .nav-dropdown > a.active::after {
  transform: scaleX(1);
}

/* Dropdown menu */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px !important;
  border-radius: 8px;
  font-size: 13px !important;
  color: rgba(255,255,255,0.8) !important;
  transition: all 0.2s !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(212,175,55,0.12) !important;
  color: var(--gold) !important;
}

/* Nav dropdown — premium design */
.nav-dropdown-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  min-width: 240px;
}
.nav-dropdown-menu a {
  display: grid !important;
  grid-template-columns: 32px 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  transition: all 0.2s !important;
}
.nav-dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-dropdown-menu a .dd-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.nav-dropdown-menu a .dd-text span {
  font-size: 11px;
  opacity: 0.6;
}

/* Mobile nav — full screen overlay */
.nav-mobile {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark) !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  padding: 80px 32px 32px !important;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
  z-index: 999 !important;
  display: flex !important;
}
.nav-mobile.open {
  transform: translateX(0);
}
.nav-mobile a {
  font-size: 22px !important;
  font-weight: 700;
  color: rgba(255,255,255,0.85) !important;
  padding: 14px 32px !important;
  border-radius: var(--radius);
  text-align: center;
  width: 100%;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.nav-mobile a:hover {
  background: rgba(212,175,55,0.12) !important;
  color: var(--gold) !important;
  border-color: rgba(212,175,55,0.2);
}
.nav-mobile .btn-gold {
  margin-top: 16px !important;
  font-size: 16px !important;
  padding: 16px 40px !important;
  border-radius: var(--radius) !important;
}

/* Burger becomes X */
.nav-burger {
  z-index: 1000;
  position: relative;
}

/* ══════════════════════════════════════
   HERO — PREMIUM PC
   ══════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* CSS Browser mockup */
.browser-mock {
  background: #1e2a3a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.15);
  position: relative;
}
.browser-bar {
  background: #0d1520;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28ca41; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}
.browser-content {
  padding: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

/* Phone mock */
.phone-mock {
  background: #0A1628;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 2px rgba(212,175,55,0.2);
  position: relative;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.phone-screen {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

/* ══════════════════════════════════════
   SECTIONS — PREMIUM UPGRADES
   ══════════════════════════════════════ */

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Gold tag */
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(212,175,55,0.25);
}
.page-header .section-tag {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border-color: rgba(212,175,55,0.3);
}

/* Premium service cards */
.service-card {
  border-radius: var(--radius-lg) !important;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-10px) !important; box-shadow: var(--shadow-lg) !important; }
.service-card:hover::before { transform: scaleX(1); }

/* Premium stats */
.stat {
  background: linear-gradient(135deg, rgba(212,175,55,0.07), rgba(212,175,55,0.02)) !important;
  border: 1px solid rgba(212,175,55,0.12) !important;
  border-radius: var(--radius-lg) !important;
  transition: all 0.3s !important;
}
.stat:hover {
  transform: scale(1.04);
  border-color: rgba(212,175,55,0.3) !important;
}
.stat-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium testimonials */
.testimonial-card {
  border-radius: var(--radius-lg) !important;
  position: relative;
  transition: all 0.3s !important;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 80px;
  line-height: 1;
  color: rgba(212,175,55,0.08);
  font-family: Georgia, serif;
  font-weight: 900;
}
.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Premium blog cards */
.blog-card {
  border-radius: var(--radius-lg) !important;
}

/* Premium pricing */
.pricing-card {
  border-radius: var(--radius-lg) !important;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Premium process steps */
.process-step {
  position: relative;
}
.process-number {
  font-size: 52px !important;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cairo', sans-serif;
  color: var(--gold);
  font-size: 26px !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #E8C84A) !important;
  color: #0A1628 !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4) !important;
}
.btn-gold:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(212,175,55,0.55) !important;
}
.btn-lg { padding: 16px 36px !important; font-size: 16px !important; border-radius: 12px !important; }
.btn-sm { padding: 9px 20px !important; font-size: 13px !important; }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: none !important;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Page header */
.page-header {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3055 100%) !important;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.07) 0%, transparent 60%);
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin-bottom: 18px;
}

/* Footer upgrade */
.footer {
  background: linear-gradient(180deg, #050D1A 0%, #0A1628 100%) !important;
  border-top: 1px solid rgba(212,175,55,0.1) !important;
}
.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
}
.footer-col h4 {
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 18px !important;
}
.footer-links a {
  font-size: 14px !important;
  color: rgba(255,255,255,0.55) !important;
  transition: all 0.2s !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover { color: var(--gold) !important; padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-copy { color: rgba(255,255,255,0.35) !important; font-size: 13px !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}

/* Social buttons */
.footer-social { gap: 10px !important; margin-top: 18px !important; }
.social-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  transition: all 0.25s !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
}

/* ══════════════════════════════════════
   MARQUEE — CLIENT LOGOS
   ══════════════════════════════════════ */
.marquee-section {
  background: rgba(212,175,55,0.04);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-right: 1px solid rgba(212,175,55,0.1);
  transition: color 0.2s;
}
.marquee-item:hover { color: rgba(255,255,255,0.7); }
.marquee-item .marquee-icon { font-size: 20px; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   MOBILE — COMPREHENSIVE
   ══════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hide topbar on mobile */
  .topbar { display: none; }

  /* Nav */
  .nav-inner { height: 62px !important; padding: 0 16px !important; }
  .nav-logo-text span:first-child { font-size: 16px !important; letter-spacing: 1.5px !important; }
  .nav-logo-text span:last-child { font-size: 9px !important; }
  .nav-menu { display: none !important; }
  .nav-burger { display: flex !important; }

  /* Hero */
  .hero-content { text-align: center !important; }
  .hero h1 { font-size: clamp(28px, 7vw, 42px) !important; }
  .hero-btns { flex-direction: column !important; align-items: center !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; max-width: 320px; }

  /* Page header */
  .page-header { padding: 80px 0 40px !important; }
  .page-header h1 { font-size: clamp(26px, 6vw, 40px) !important; }

  /* Grids → 1 col */
  .service-grid,
  .why-grid,
  .pricing-grid,
  .blog-grid,
  .portfolio-grid,
  .testimonials-grid,
  .process-grid { grid-template-columns: 1fr !important; }

  /* Keep 2-col for small cards */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column !important; text-align: center; gap: 8px !important; }

  /* Sections */
  .section { padding: 48px 0 !important; }
  .container { padding: 0 16px !important; }

  /* Pricing featured card — no transform */
  .pricing-card-featured { transform: none !important; }

  /* Buttons */
  .btn-lg { padding: 15px 28px !important; font-size: 15px !important; }

  /* Tables */
  .compare-table { font-size: 11px !important; }
  .compare-table th, .compare-table td { padding: 10px 8px !important; }

  /* Forms 2-col → 1-col */
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Section headers */
  .section-header h2 { font-size: clamp(22px, 5vw, 32px) !important; }
  .section-header p { font-size: 15px !important; }

  /* Blog article — sidebar below */
  div[style*="grid-template-columns:1fr 280px"] { grid-template-columns: 1fr !important; }

  /* Trust bar */
  .trust-bar { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  /* Hide big decorative elements */
  .hero::before, .hero::after { display: none; }
}

@media (max-width: 480px) {
  /* Very small screens */
  .nav-logo-text span:first-child { font-size: 14px !important; }
  .nav-logo-text span:last-child { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .page-header h1 { font-size: 24px !important; }
  .btn-lg { padding: 14px 22px !important; font-size: 14px !important; }

  /* Service landing 2-col → 1 */
  .service-includes { grid-template-columns: 1fr !important; }

  /* Process steps horizontal → vertical */
  .process-grid { gap: 20px !important; }
}

@media (min-width: 769px) {
  /* Desktop only — keep topbar */
  .topbar { display: block; }

  /* Desktop hero with 2 cols */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

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

  /* Featured card slightly taller */
  .pricing-card-featured { margin-top: -16px; margin-bottom: -16px; }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS (fade-in improved)
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   SELECTION + SCROLLBAR
   ══════════════════════════════════════ */
::selection { background: rgba(212,175,55,0.3); color: var(--navy); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── NAV POSITIONING — CLEAN FIX ── */
/* Topbar is STATIC (scrolls away naturally) */
.topbar { position: relative !important; z-index: 1; }

/* Urgency bar is STATIC too */
.urgency-bar { position: relative !important; z-index: 1; }

/* Nav is ALWAYS fixed at top:0 */
.nav { top: 0 !important; z-index: 1000 !important; }

/* Body padding = only the nav height */
body { padding-top: 70px !important; }

@media(max-width:768px) {
  body { padding-top: 62px !important; }
  .topbar { display: none !important; }
}

/* ══════════════════════════════════════
   LANGUAGE SWITCHER — PREMIUM
   ══════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
  color: rgba(255,255,255,0.45);
  font-family: 'Cairo', sans-serif;
}
.lang-btn:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active {
  background: linear-gradient(135deg, #D4AF37, #B8960C) !important;
  color: #0A1628 !important;
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

/* ══════════════════════════════════════
   ARABIC RTL OVERRIDES
   ══════════════════════════════════════ */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-menu { flex-direction: row-reverse; }
[dir="rtl"] .nav-logo { flex-direction: row-reverse; }
[dir="rtl"] .nav-logo-text { text-align: right; }
[dir="rtl"] .nav-logo-text span:first-child { letter-spacing: 0 !important; }
[dir="rtl"] .nav-dropdown-menu { left: auto; right: 0; }
[dir="rtl"] .topbar-inner { flex-direction: row-reverse; }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-links a { flex-direction: row-reverse; }
[dir="rtl"] .page-header { direction: rtl; }
[dir="rtl"] .hero-content { direction: rtl; text-align: right; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; }
[dir="rtl"] .process-step { direction: rtl; }
[dir="rtl"] .pricing-features li { flex-direction: row-reverse; }
[dir="rtl"] .btn { flex-direction: row-reverse; }
[dir="rtl"] .mobile-cta-bar { direction: rtl; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .nav-mobile { direction: rtl; }
[dir="rtl"] .service-card { direction: rtl; text-align: right; }
[dir="rtl"] .testimonial-card { direction: rtl; }
[dir="rtl"] .blog-card { direction: rtl; }
/* Arabic font boost */
[dir="rtl"] body, [dir="rtl"] * {
  font-family: 'Cairo', system-ui, sans-serif;
  letter-spacing: 0 !important;
}

/* ══════════════════════════════════════
   VISUAL OVERHAUL — PREMIUM v5
   ══════════════════════════════════════ */

/* ── GLOBAL TYPOGRAPHY ── */
body { font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: 'Cairo', sans-serif; }

/* ── NAV — GLASS EFFECT ── */
.nav {
  background: rgba(8,16,32,0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(212,175,55,0.15) !important;
  height: 70px;
}
.nav.scrolled {
  background: rgba(5,10,20,0.99) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5) !important;
}
.nav-logo-icon { filter: drop-shadow(0 0 8px rgba(212,175,55,0.3)); }

/* ── NAV DROPDOWN — PREMIUM ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none !important; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  background: rgba(8,16,32,0.98);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 10px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.08);
  backdrop-filter: blur(20px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
/* Arrow indicator */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: rgba(8,16,32,0.98);
  border-left: 1px solid rgba(212,175,55,0.2);
  border-top: 1px solid rgba(212,175,55,0.2);
  transform: rotate(45deg);
}
.nav-dropdown-menu a {
  display: grid !important;
  grid-template-columns: 40px 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 12px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.78) !important;
  transition: all 0.18s !important;
  margin-bottom: 2px;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(212,175,55,0.1) !important;
  color: var(--gold) !important;
  transform: translateX(4px) !important;
}
.nav-dropdown-menu a .dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.18s;
}
.nav-dropdown-menu a:hover .dd-icon {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.4);
}
.nav-dropdown-menu a .dd-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 1px;
}
.nav-dropdown-menu a .dd-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}
.nav-dropdown-menu a:hover .dd-text span { color: rgba(212,175,55,0.6); }

/* ── SERVICE CARDS — PREMIUM ── */
.service-card {
  background: white !important;
  border: 1px solid rgba(10,22,40,0.08) !important;
  border-radius: 18px !important;
  padding: 32px 28px !important;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,22,40,0.06) !important;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 18px 18px 0 0;
}
.service-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 32px 64px rgba(10,22,40,0.15) !important;
  border-color: rgba(212,175,55,0.2) !important;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.service-title { font-size: 20px !important; font-weight: 800 !important; color: var(--navy) !important; margin-bottom: 10px !important; }
.service-desc { color: var(--muted) !important; font-size: 14px !important; line-height: 1.75 !important; }

/* ── PRICING CARDS ── */
.pricing-card {
  border-radius: 20px !important;
  border: 1px solid rgba(10,22,40,0.1) !important;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08) !important;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}
.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(10,22,40,0.18) !important;
}
.pricing-card-featured {
  background: linear-gradient(160deg, #0A1628 0%, #132040 50%, #1a3055 100%) !important;
  border: 2px solid rgba(212,175,55,0.4) !important;
  box-shadow: 0 8px 40px rgba(10,22,40,0.4), 0 0 0 1px rgba(212,175,55,0.1) !important;
}

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  border-radius: 18px !important;
  border: 1px solid rgba(10,22,40,0.08) !important;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07) !important;
  transition: all 0.3s !important;
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(10,22,40,0.15) !important;
  border-color: rgba(212,175,55,0.2) !important;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 100px;
  line-height: 1;
  color: rgba(212,175,55,0.06);
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
}

/* ── BLOG CARDS ── */
.blog-card {
  border-radius: 18px !important;
  border: 1px solid rgba(10,22,40,0.08) !important;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07) !important;
  overflow: hidden;
  transition: all 0.3s !important;
}
.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(10,22,40,0.15) !important;
}
.blog-visual {
  height: 200px !important;
  transition: transform 0.4s !important;
}
.blog-card:hover .blog-visual { transform: scale(1.04); }

/* ── SECTION STYLES ── */
.section { padding: 80px 0 !important; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(212,175,55,0.2);
}
.section-header h2,
.section-title {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px;
  margin-bottom: 18px !important;
}
.section-subtitle, .section-header p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: var(--muted) !important;
  max-width: 580px;
  margin: 0 auto;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 100px 0 70px !important;
  background: linear-gradient(140deg, #050D1A 0%, #0A1628 60%, #0f1e38 100%) !important;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 60px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px !important;
  color: rgba(255,255,255,0.65) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #E8C84A 50%, #D4AF37 100%) !important;
  background-size: 200% auto !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4) !important;
  color: #0A1628 !important;
  font-weight: 800 !important;
}
.btn-gold:hover {
  background-position: right center !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(212,175,55,0.55) !important;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.85) !important;
}
.btn-outline-white:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(212,175,55,0.08) !important;
  transform: translateY(-2px) !important;
}
.btn-lg { padding: 16px 36px !important; font-size: 16px !important; border-radius: 14px !important; }
.btn-sm { padding: 9px 20px !important; font-size: 13px !important; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #040a14 0%, #070f1e 100%) !important;
  border-top: 1px solid rgba(212,175,55,0.08) !important;
}
.footer-col h4 {
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}
.footer-links a {
  color: rgba(255,255,255,0.45) !important;
  font-size: 14px !important;
  padding: 3px 0;
  transition: all 0.2s !important;
}
.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 6px !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  margin-top: 48px !important;
  padding-top: 24px !important;
}
.footer-copy { color: rgba(255,255,255,0.3) !important; font-size: 13px !important; }

/* ── MOBILE RESPONSIVE ── */
@media(max-width:768px) {
  .section { padding: 52px 0 !important; }
  .nav-dropdown-menu { display: none !important; }
  .service-card:hover { transform: none !important; }
  .pricing-card:hover { transform: none !important; }
  .blog-card:hover { transform: none !important; }
  .testimonial-card:hover { transform: none !important; }
  .page-header { padding: 80px 0 48px !important; }
  .page-header h1 { font-size: clamp(26px,6vw,40px) !important; }
  .section-header h2, .section-title { font-size: clamp(22px,5vw,34px) !important; }
}

/* ── DROPDOWN OPEN STATE (click) ── */
.nav-dropdown.dd-open .nav-dropdown-menu {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) scale(1) !important;
}
.nav-dropdown > a[href]:focus { outline: none; }

/* ══════════════════════════════════════
   NAV CLICK FIX — PRIORITY
   ══════════════════════════════════════ */

/* Ensure nav is always on top and fully clickable */
.nav { 
  position: fixed !important;
  top: 0 !important;
  z-index: 10000 !important;
  pointer-events: all !important;
}
.nav * { pointer-events: all !important; }
.nav-inner {
  position: relative;
  z-index: 10001;
  pointer-events: all !important;
}

/* Nav menu links — ensure clickable */
.nav-menu { 
  position: relative; 
  z-index: 10002;
  display: flex !important;
  align-items: center;
}
.nav-menu a, .nav-menu > div { 
  position: relative;
  cursor: pointer !important;
  pointer-events: all !important;
  z-index: 10002;
}

/* Dropdown — pure CSS hover (no JS needed) */
.nav-dropdown { position: relative !important; }
.nav-dropdown > a { 
  cursor: pointer !important;
  user-select: none;
}
.nav-dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 10100 !important;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  min-width: 260px;
  padding: 10px;
  background: rgba(6,12,24,0.98) !important;
  border: 1px solid rgba(212,175,55,0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(20px);
  display: block !important;
  margin-top: 8px;
}
/* Show on hover OR on .dd-open class */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.dd-open .nav-dropdown-menu {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) scale(1) !important;
}
.nav-dropdown-menu a {
  display: grid !important;
  grid-template-columns: 40px 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  pointer-events: all !important;
  text-decoration: none !important;
  transition: all 0.15s !important;
  margin-bottom: 2px;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(212,175,55,0.12) !important;
  color: var(--gold) !important;
  transform: translateX(3px) !important;
}
.nav-dropdown-menu .dd-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  pointer-events: none;
}
.nav-dropdown-menu .dd-text { pointer-events: none; }
.nav-dropdown-menu .dd-text strong { 
  display: block !important; 
  font-size: 13px !important; 
  font-weight: 700 !important; 
  color: inherit;
  margin-bottom: 1px;
}
.nav-dropdown-menu .dd-text span { 
  font-size: 11px !important; 
  color: rgba(255,255,255,0.4) !important; 
  display: block;
}
.nav-dropdown-menu a:hover .dd-text span { color: rgba(212,175,55,0.6) !important; }

/* Triangle arrow */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: rgba(6,12,24,0.98);
  border-left: 1px solid rgba(212,175,55,0.25);
  border-top: 1px solid rgba(212,175,55,0.25);
  transform: rotate(45deg);
  pointer-events: none;
}

/* CTA Button — ensure visible and clickable */
.nav-cta {
  position: relative;
  z-index: 10002;
  flex-shrink: 0;
}
.nav-cta .btn-gold {
  pointer-events: all !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10003;
}

/* Lang switcher — clickable */
.lang-switcher {
  position: relative;
  z-index: 10002;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  padding: 3px 6px;
}
.lang-btn {
  cursor: pointer !important;
  pointer-events: all !important;
  z-index: 10003;
  position: relative;
  font-size: 20px !important;
}

/* Mobile burger — always clickable */
.nav-burger {
  position: relative !important;
  z-index: 10002 !important;
  cursor: pointer !important;
  pointer-events: all !important;
}

/* Mobile menu — full screen, above everything */
.nav-mobile {
  z-index: 9999 !important;
}

/* Body padding to account for fixed nav */
body { padding-top: 70px !important; }
.topbar { 
  position: relative !important; 
  z-index: 1; 
}
.urgency-bar { 
  position: relative !important; 
  z-index: 1; 
}

/* Desktop: no burger, show menu */
@media(min-width:769px) {
  .nav-burger { display: none !important; }
  .nav-menu { display: flex !important; }
  .nav-mobile { display: none !important; transform: translateX(100%); }
}

/* Mobile: show burger, hide menu */
@media(max-width:768px) {
  .nav-menu { display: none !important; }
  .nav-burger { display: flex !important; }
  .nav-inner { padding: 0 14px !important; }
  body { padding-top: 62px !important; }
}

/* ── NEW LOGO STYLING ── */
.nav-logo-icon rect { transition: opacity 0.3s; }
.nav-logo:hover .nav-logo-icon rect { opacity: 1 !important; }
.nav-logo-text span:first-child {
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
  text-fill-color: white !important;
}
.nav-logo:hover .nav-logo-text span:first-child {
  background: linear-gradient(135deg, #fff, #E8C84A) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ══════════════════════════════════════════════════════
   PREMIUM UPGRADE — PC & MOBILE
   ══════════════════════════════════════════════════════ */

/* ── NAV TEXT FIX — no wrap ever ── */
.nav-menu > a,
.nav-dropdown > a,
.nav-menu > a *,
.nav-dropdown > a * {
  white-space: nowrap !important;
  word-break: keep-all !important;
}

/* ── HERO — premium visible ── */
.hero {
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 100px 0 80px !important;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -1px !important;
  color: #fff !important;
  margin-bottom: 24px !important;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px) !important;
  color: rgba(255,255,255,0.75) !important;
  max-width: 540px !important;
  line-height: 1.7 !important;
  margin-bottom: 40px !important;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── BOUTONS PREMIUM ── */
.btn {
  border-radius: 10px !important;
  font-weight: 700 !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8960C) !important;
  color: #0A1628 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35) !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #E8C84A, #D4AF37) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(212,175,55,0.45) !important;
  color: #0A1628 !important;
}
.btn-outline-white {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.9) !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
  transform: translateY(-2px) !important;
}

/* ── SECTION HEADINGS PREMIUM ── */
.section-header h2,
.section-title {
  font-size: clamp(28px, 4vw, 50px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
  line-height: 1.15 !important;
  color: #0F172A !important;
}
.section-navy .section-header h2,
.section-navy .section-title,
.cta-section h2 {
  color: #ffffff !important;
}
.section-subtitle, .section-header p {
  font-size: 17px !important;
  color: #64748B !important;
  line-height: 1.7 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* ── CARDS PREMIUM ── */
.service-card {
  padding: 32px !important;
  border-radius: 20px !important;
  border: 1px solid #E2E8F0 !important;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
  background: #fff !important;
}
.service-card:hover {
  border-color: rgba(212,175,55,0.4) !important;
  box-shadow: 0 20px 60px rgba(10,22,40,0.12) !important;
  transform: translateY(-8px) !important;
}
.testimonial-card {
  padding: 32px !important;
  border-radius: 20px !important;
  border: 1px solid #E2E8F0 !important;
  background: #fff !important;
}
.blog-card { border-radius: 20px !important; overflow: hidden !important; }
.blog-card:hover { transform: translateY(-6px) !important; }

/* ── PRICING PREMIUM ── */
.pricing-card {
  border-radius: 24px !important;
  border: 2px solid #E2E8F0 !important;
  transition: all 0.3s !important;
  background: #fff !important;
  overflow: visible !important;
}
.pricing-card.featured,
.pricing-card[style*="border-color:var(--gold)"],
.pricing-card[style*="border-color: var(--gold)"] {
  border-color: var(--gold) !important;
  box-shadow: 0 24px 64px rgba(212,175,55,0.2) !important;
  transform: scale(1.03) !important;
}
.pricing-card:hover { transform: translateY(-8px) !important; }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px) !important; }

/* ── PAGE HEADER PAGES INTÉRIEURES ── */
.page-header {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f8fafc 100%) !important;
  padding: 110px 0 70px !important;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 60px) !important;
  font-weight: 900 !important;
  color: #0F172A !important;
  letter-spacing: -1px !important;
  line-height: 1.15 !important;
}
.page-header p {
  font-size: 18px !important;
  color: #64748B !important;
  max-width: 580px !important;
  margin: 16px auto 0 !important;
}

/* ── BOUTON FLOTTANT WHATSAPP ── */
.whatsapp-float {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 58px !important;
  height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5) !important;
  z-index: 9000 !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
  font-size: 28px !important;
}
.whatsapp-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 10px 40px rgba(37,211,102,0.65) !important;
}
.whatsapp-float::after {
  content: 'Écrivez-nous';
  position: absolute;
  right: 68px;
  background: #0A1628;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover::after { opacity: 1; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed !important;
  bottom: 100px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(10,22,40,0.85) !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--gold) !important;
  font-size: 18px !important;
  cursor: pointer !important;
  z-index: 8999 !important;
  transition: all 0.3s !important;
  opacity: 0;
}
.back-to-top.visible { opacity: 1 !important; }
.back-to-top:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-3px) !important;
}

/* ══════════════════════════════
   MOBILE PREMIUM — max 768px
   ══════════════════════════════ */
@media(max-width: 768px) {

  /* Hero mobile */
  .hero {
    min-height: 100svh !important;
    padding: 90px 0 60px !important;
    text-align: center !important;
  }
  .hero h1 { font-size: clamp(30px, 8vw, 44px) !important; }
  .hero p { font-size: 15px !important; margin-left: auto !important; margin-right: auto !important; }
  .hero-actions { justify-content: center !important; }
  .hero .btn-gold { width: 100% !important; justify-content: center !important; padding: 16px !important; font-size: 16px !important; }

  /* Sections mobile */
  .section { padding: 56px 0 !important; }
  .section-header { margin-bottom: 36px !important; }
  .section-header h2 { font-size: clamp(24px, 7vw, 36px) !important; }
  .container { padding: 0 18px !important; }

  /* Grids → 1 colonne */
  .services-grid,
  .pricing-grid,
  .blog-grid,
  .process-grid,
  .stats-grid,
  [class*="-grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .testimonials-slider, .testimonials-grid { flex-direction: column !important; }

  /* Cards mobile */
  .service-card { padding: 24px !important; }
  .pricing-card { padding: 28px 24px !important; }
  .pricing-card.featured { transform: none !important; }
  .service-card:hover, .pricing-card:hover,
  .blog-card:hover, .testimonial-card:hover { transform: none !important; }

  /* Boutons mobile */
  .btn-gold { padding: 14px 24px !important; font-size: 15px !important; }
  .btn { min-height: 48px !important; }

  /* Page header mobile */
  .page-header { padding: 90px 18px 52px !important; }
  .page-header h1 { font-size: clamp(26px, 7vw, 38px) !important; }
  .page-header p { font-size: 15px !important; }

  /* WhatsApp mobile */
  .whatsapp-float { bottom: 20px !important; right: 20px !important; width: 54px !important; height: 54px !important; font-size: 26px !important; }
  .whatsapp-float::after { display: none !important; }

  /* Back to top mobile */
  .back-to-top { bottom: 86px !important; right: 20px !important; }

  /* Urgency bar mobile */
  .urgency-bar, div[style*="linear-gradient(90deg,#B8960C"] {
    font-size: 12px !important;
    padding: 10px 12px !important;
    text-align: center !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
}

/* ══════════════════════════════
   TABLET — 769px → 1024px
   ══════════════════════════════ */
@media(min-width: 769px) and (max-width: 1024px) {
  .hero h1 { font-size: clamp(32px, 4.5vw, 52px) !important; }
  [class*="-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .nav-logo-text span:last-child { font-size: 7px !important; letter-spacing: 1.5px !important; }
}

/* ══════════════════════════════
   GRAND ÉCRAN — 1400px+
   ══════════════════════════════ */
@media(min-width: 1400px) {
  .container { max-width: 1320px !important; }
  .hero h1 { font-size: 80px !important; }
  .section-header h2 { font-size: 54px !important; }
}
