/* ═══════════════════════════════════════
   AUPALV — Feuille de style principale
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:   #1a3a5c;
  --navy2:  #0f2540;
  --navy3:  #164a7a;
  --orange: #f7931e;
  --orange2:#e8820a;
  --orange-l:#fff4e8;
  --green:  #3aaa35;
  --red:    #c0392b;
  --blue:   #2980b9;
  --bg:     #f8f7f4;
  --white:  #ffffff;
  --border: #e2e8f0;
  --muted:  #64748b;
  --text:   #1a202c;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(26,58,92,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.text-orange { color: var(--orange); }
.centered { text-align: center; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes countUp { from{opacity:0} to{opacity:1} }

.animate-fade-up { animation: fadeUp .7s ease both; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy2);
  color: #93b4d4;
  font-size: 12px;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #93b4d4; margin-left: 14px; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-right { display: flex; align-items: center; gap: 2px; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(26,58,92,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(26,58,92,.12); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 500;
  transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: #f1f5f9; }
.nav-links a.active { color: var(--orange); background: var(--orange-l); }

.nav-dropdown { position: relative; }
.nav-drop-trigger {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .2s;
  user-select: none;
}
.nav-drop-trigger:hover { color: var(--navy); background: #f1f5f9; }
.arrow { font-size: 10px; transition: transform .2s; }
.nav-dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 8px;
  color: #374151;
  font-weight: 400;
  transition: .15s;
}
.dropdown-menu a:hover { background: var(--orange-l); color: var(--orange2); }

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

/* ── BUTTONS ── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 9px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 3px 12px rgba(247,147,30,.3); }
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,147,30,.35); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { font-size: 16px; padding: 13px 30px; }
.btn-block { width: 100%; justify-content: center; }
.btn-hero-primary { background: var(--orange); color: #fff; font-size: 15px; padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer; font-family: 'DM Sans',sans-serif; font-weight: 500; box-shadow: 0 4px 18px rgba(247,147,30,.35); transition: .2s; display:inline-block; }
.btn-hero-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-hero-ghost { background: rgba(255,255,255,.08); color: #e2e8f0; font-size: 15px; padding: 13px 28px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.2); cursor: pointer; font-family: 'DM Sans',sans-serif; font-weight: 500; transition: .2s; display:inline-block; }
.btn-hero-ghost:hover { background: rgba(255,255,255,.16); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; border: 1px solid rgba(247,147,30,.12); }
.shape-1 { width: 560px; height: 560px; right: -100px; top: -100px; }
.shape-2 { width: 400px; height: 400px; right: 30px; top: 30px; }
.shape-3 { width: 240px; height: 240px; right: 160px; top: 160px; background: rgba(247,147,30,.04); border: none; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-left { padding-bottom: 60px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247,147,30,.35);
  background: rgba(247,147,30,.1);
  color: #fbbf5a;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; flex-shrink: 0; }
.hero h1 { font-size: 50px; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.8px; margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: #93b4d4; line-height: 1.7; max-width: 500px; margin-bottom: 34px; font-weight: 300; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero live card */
.hero-right { align-self: flex-end; }
.live-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
}
.live-card-header {
  background: rgba(247,147,30,.12);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fbbf5a;
  font-weight: 500;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #10b981; animation: pulse 1.5s infinite; }
.live-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 18px 0; }
.live-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 14px; }
.live-num { font-family: 'Poppins',sans-serif; font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.live-num span { color: var(--orange); font-size: 18px; }
.live-lbl { font-size: 11px; color: #93b4d4; margin-top: 4px; }
.live-members-title { font-size: 11px; color: #64748b; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; padding: 16px 18px 8px; }
.live-members { padding: 0 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.live-member { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 9px; }
.member-ava { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0; }
.member-name { font-size: 12px; color: #e2e8f0; font-weight: 500; }
.member-city { font-size: 11px; color: #64748b; }
.member-tag { margin-left: auto; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.tag-active { background: rgba(16,185,129,.18); color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.tag-new { background: rgba(247,147,30,.18); color: #fbbf5a; border: 1px solid rgba(247,147,30,.2); }

/* Hero stats strip */
.hero-stats-strip {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  background: rgba(255,255,255,.03);
  padding: 0 40px;
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
}
.hs-item { text-align: center; padding: 22px 16px; border-right: 1px solid rgba(255,255,255,.08); }
.hs-item:last-child { border-right: none; }
.hs-num { font-family: 'Poppins',sans-serif; font-size: 28px; font-weight: 700; color: #fff; }
.hs-num em { color: var(--orange); font-style: normal; }
.hs-lbl { font-size: 12px; color: #64748b; margin-top: 3px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  font-family: 'DM Sans',sans-serif;
}
.section-header h2 { font-size: 36px; font-weight: 700; color: var(--navy); letter-spacing: -.4px; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 540px; }

.centered-cta { text-align: center; margin-top: 36px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.check-list { list-style: none; margin: 18px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: 14px; color: #374151; align-items: flex-start; }
.check-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 1px; display: block; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }

.about-img-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-logo-big { width: 180px; height: auto; margin: 0 auto 16px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.about-arabic { font-size: 13px; color: #93b4d4; margin-top: 8px; font-family: 'Tahoma',sans-serif; direction: rtl; }
.about-badge { position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: 12px; padding: 12px 18px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.ab-year { font-family: 'Poppins',sans-serif; font-size: 24px; font-weight: 700; color: var(--orange); line-height: 1; }
.ab-label { font-size: 11px; color: var(--muted); }

/* ── WHY CARDS ── */
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: all .25s;
  cursor: default;
}
.why-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(247,147,30,.1); transform: translateY(-3px); }
.wc-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; }
.icon-blue { background: #e8f0fb; }
.icon-orange { background: var(--orange-l); }
.icon-green { background: #e8f5e9; }
.icon-red { background: #fdecea; }
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CONVENTIONS ── */
.conv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.conv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .2s;
}
.conv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: .3s; transform-origin: left; }
.conv-card:hover::before { transform: scaleX(1); }
.conv-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.conv-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.conv-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.conv-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.conv-link { font-size: 13px; color: var(--orange); font-weight: 500; }
.conv-link:hover { text-decoration: underline; }

/* ── OBJECTIVES ── */
.obj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.obj-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: .2s; }
.obj-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.obj-num { font-family: 'Poppins',sans-serif; font-size: 44px; font-weight: 700; color: #f1f5f9; line-height: 1; margin-bottom: 8px; }
.obj-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.obj-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PARTNERS ── */
.partners-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.partner-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 26px;
  font-family: 'Poppins',sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: .2s;
  cursor: pointer;
}
.partner-pill:hover { color: var(--navy); border-color: var(--navy); box-shadow: 0 4px 14px rgba(26,58,92,.1); }
.partner-cta { text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.partner-cta p { font-size: 13px; color: var(--muted); margin-bottom: 10px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  padding: 64px 40px;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-band p { font-size: 15px; color: #93b4d4; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.ci-item { display: flex; gap: 14px; margin-bottom: 18px; }
.ci-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--orange-l); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.ci-val { font-size: 14px; font-weight: 500; color: var(--navy); line-height: 1.5; }
.map-placeholder { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; height: 140px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: #374151; margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  transition: .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,147,30,.1);
}
.form-group textarea { resize: none; }

.form-success { text-align: center; padding: 32px 20px; }
.success-icon { font-size: 48px; margin-bottom: 14px; display: block; }
.form-success h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; }

/* ── FOOTER ── */
.footer { background: var(--navy2); color: #cbd5e1; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-col h4 { font-family: 'Poppins',sans-serif; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 12px; color: #64748b; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #64748b; transition: .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-brand p { max-width: 240px; margin-bottom: 16px; }
.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.social-btn { font-size: 12px; background: rgba(255,255,255,.07); color: #93b4d4; padding: 6px 14px; border-radius: 6px; transition: .2s; }
.social-btn:hover { background: rgba(247,147,30,.2); color: var(--orange); }
.social-wa { background: rgba(37,211,102,.15); color: #4ade80; }
.social-wa:hover { background: rgba(37,211,102,.25); }
.footer-contact-block { margin-top: 16px; }
.footer-contact-block p { font-size: 12px; color: #64748b; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #3a4460; flex-wrap: wrap; gap: 8px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: #3a4460; transition: .2s; }
.footer-links a:hover { color: var(--orange); }

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 999;
  transition: .2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── PAGE INTÉRIEURE HEADER ── */
.page-hero { background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%); padding: 56px 0; color: #fff; }
.page-hero h1 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: #93b4d4; }
.breadcrumb { font-size: 13px; color: #64748b; margin-bottom: 12px; }
.breadcrumb a { color: #93b4d4; }
.breadcrumb a:hover { color: var(--orange); }

/* ── OFFRES PAGE ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { font-size: 13px; font-weight: 500; padding: 7px 18px; border-radius: 20px; border: 1px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; transition: .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.offer-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .25s; }
.offer-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.offer-card-img { height: 180px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.offer-card-body { padding: 20px; }
.offer-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.offer-date { font-size: 12px; color: var(--muted); }
.offer-badge-days { font-size: 11px; font-weight: 600; background: var(--orange-l); color: var(--orange2); padding: 3px 10px; border-radius: 6px; }
.offer-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.offer-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.offer-card-link { font-size: 13px; color: var(--orange); font-weight: 500; }

/* ── FAQ PAGE ── */
.faq-grid { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.faq-cats { position: sticky; top: 90px; }
.faq-cat-btn { display: block; width: 100%; text-align: left; padding: 10px 14px; border-radius: 8px; border: none; background: transparent; font-size: 14px; color: var(--muted); cursor: pointer; transition: .2s; font-family: 'DM Sans',sans-serif; font-weight: 500; margin-bottom: 4px; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--orange-l); color: var(--orange); }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 500; color: var(--navy); transition: .2s; }
.faq-question:hover { background: var(--bg); }
.faq-question.open { background: var(--orange-l); color: var(--orange2); }
.faq-chevron { font-size: 12px; transition: transform .3s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── REGISTER PAGE ── */
.stepper { display: flex; align-items: center; margin-bottom: 36px; }
.step-item { display: flex; align-items: center; flex: 1; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  background: #fff;
  transition: .3s;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-circle.active { border-color: var(--orange); background: var(--orange); color: #fff; }
.step-circle.done { border-color: var(--green); background: var(--green); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; }
.step-line.done { background: var(--green); }
.step-label { font-size: 11px; color: var(--muted); text-align: center; margin-top: 4px; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.step-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }

.step-content { display: none; }
.step-content.active { display: block; }
.step-actions { display: flex; gap: 12px; margin-top: 24px; }
.step-actions .btn { flex: 1; justify-content: center; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 32px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--orange); border-radius: 2px; transition: width .4s ease; }

/* ── DASHBOARD ── */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: var(--navy); color: #fff; display: flex; flex-direction: column; }
.sb-brand { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sb-logo { display: flex; align-items: center; gap: 10px; }
.sb-logo img { height: 42px; filter: brightness(0) invert(1); }
.sb-user { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.sb-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #fff; flex-shrink: 0; }
.sb-uname { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.sb-urole { font-size: 11px; color: #93b4d4; }
.sb-status { font-size: 10px; background: var(--green); color: #fff; padding: 2px 8px; border-radius: 4px; font-weight: 600; margin-left: auto; }
.sb-nav { padding: 14px 12px; flex: 1; }
.sb-section-title { font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 8px 8px 4px; font-weight: 600; }
.sb-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,.6); cursor: pointer; transition: .15s; margin-bottom: 2px; text-decoration: none; }
.sb-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sb-link.active { background: rgba(247,147,30,.2); color: #fff; border-left: 2px solid var(--orange); padding-left: 8px; }
.sb-link .sb-ico { font-size: 16px; width: 20px; text-align: center; }
.sb-badge { margin-left: auto; background: var(--orange); color: #fff; font-size: 10px; padding: 1px 7px; border-radius: 10px; font-weight: 600; }
.sb-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; color: rgba(255,255,255,.3); }

.dash-main { background: var(--bg); display: flex; flex-direction: column; }
.dash-topbar { background: #fff; border-bottom: 1px solid var(--border); padding: 0 28px; height: 58px; display: flex; align-items: center; justify-content: space-between; }
.dash-page-title { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); }
.dash-tb-right { display: flex; align-items: center; gap: 12px; }
.notif-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; position: relative; }
.notif-badge { position: absolute; top: 4px; right: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); border: 2px solid #fff; }
.dash-ava { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; }
.dash-content { padding: 28px; }

.metric-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.metric-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: .2s; }
.metric-card:hover { box-shadow: var(--shadow); }
.metric-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.metric-label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.metric-value { font-family: 'Poppins',sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.metric-value em { font-style: normal; color: var(--orange); font-size: 18px; }
.metric-change { font-size: 12px; margin-top: 6px; }
.metric-up { color: var(--green); }
.metric-down { color: var(--red); }

.dash-grid-2 { display: grid; grid-template-columns: 1fr 380px; gap: 20px; margin-bottom: 24px; }
.dash-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-card-header h3 { font-size: 15px; font-weight: 600; color: var(--navy); }
.dash-card-link { font-size: 12px; color: var(--orange); font-weight: 500; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th { text-align: left; padding: 8px 12px; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; border-bottom: 1px solid var(--border); }
tbody td { padding: 11px 12px; border-bottom: 1px solid #f1f5f9; color: var(--text); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #fafafa; }

.status-pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; }
.status-active { background: #d1fae5; color: #065f46; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-inactive { background: #fee2e2; color: #991b1b; }

.activity-list { display: flex; flex-direction: column; gap: 12px; }
.activity-item { display: flex; gap: 12px; align-items: flex-start; }
.act-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.act-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.act-time { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .metric-row { grid-template-columns: repeat(2,1fr); }
  .dash-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999; }
  .nav-actions.open { display: flex; padding: 0 20px 16px; background: #fff; gap: 10px; }
  .hero { padding: 56px 20px 0; }
  .hero h1 { font-size: 34px; }
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .conv-grid, .obj-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .conv-grid, .obj-grid, .offers-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .topbar { flex-direction: column; text-align: center; }
}
