/* ─── BASEERA THEME — MAIN CSS ─── */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  --gold:        #c9a478;
  --gold-light:  #e0bc8a;
  --gold-dim:    #7a6040;
  --gold-bg:     #0c1828;
  --gold-border: #1e3048;
  --bg:          #050e18;
  --bg-1:        #081424;
  --bg-2:        #0b1a2e;
  --text:        #f0e8d5;
  --text-muted:  #d4cbbe;
  --text-dim:    #d4cbbe;
  --border:      #0f2035;
  --border-2:    #162840;
  --radius:      10px;
  --radius-lg:   14px;
  --max-w:       1100px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Tajawal', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 0; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }
::selection { background: var(--gold); color: var(--bg); }

/* ─── UTILITIES ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; font-size: 15px; font-weight: 700; font-family: 'Tajawal', sans-serif; transition: all 0.2s; cursor: pointer; padding: 13px 30px; border: none; }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 0.5px solid var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,0.07); transform: translateY(-1px); }
.btn-ghost { background: var(--gold-bg); color: var(--gold); border: 0.5px solid var(--gold-border); }
.btn-ghost:hover { background: rgba(201,168,76,0.12); }
.btn-sm { padding: 9px 20px; font-size: 18px; }
.btn-lg { padding: 17px 48px; font-size: 17px; }

/* ─── SECTION ─── */
.section { padding: 80px 0; border-bottom: 0.5px solid var(--border); }
.sec-tag { display: none; font-size: 16px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text); margin-bottom: 8px; }
.sec-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 44px; }
.sec-header-center { text-align: center; }

/* ─── CARD ─── */
.card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius); padding: 28px; transition: border-color 0.3s, transform 0.3s; }
.card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.card-featured { border-color: var(--gold) !important; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  height: 125px; display: flex; align-items: center;
  background: rgba(5,14,24,0.95);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(16px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-logo { display: flex; align-items: center; line-height: 1; }
.custom-logo {width: 200px;height: 125px;}
.site-logo img { height: 52px; width: auto; object-fit: contain; }
.site-logo-text { display: flex; flex-direction: column; }

.site-logo .logo-ar { font-size: 22px; font-weight: 800; color: var(--gold); }
.site-logo .logo-sub { font-size: 10px; color: var(--text-dim); letter-spacing: 1.5px; margin-top: 2px; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 16px; color: var(--text-muted);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.main-nav a::after { content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--text); }
.main-nav a:hover::after, .main-nav a.current-menu-item::after { width: 100%; }

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-wa-header {
  display: flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.1); color: #25d366;
  border: 1px solid rgba(37,211,102,0.25);
  padding: 8px 18px; border-radius: 7px; font-size: 14px; font-weight: 700;
  transition: background 0.2s, border-color 0.2s; font-family: 'Tajawal', sans-serif; cursor: pointer;
}
.btn-wa-header:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.4); }
.btn-wa-header svg { width: 18px; height: 18px; fill: #25d366; }

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle { display: none; background: none; border: 0.5px solid var(--border-2); border-radius: 6px; padding: 7px 10px; color: var(--text-muted); }
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 4px 0; border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════
   WA FLOAT + STICKY CTA
═══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 88px; left: 24px; z-index: 998;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: rgba(5,14,24,0.98); border-top: 0.5px solid var(--gold-border);
  padding: 14px 40px; display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(12px);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { font-size: 14px; color: var(--text-muted); }
.sticky-cta p strong { color: var(--text); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 60px;
  overflow: hidden; border-bottom: 0.5px solid var(--border);
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,164,120,0.07) 0%, transparent 65%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-bg); border: 0.5px solid var(--gold-border);
  color: var(--gold); font-size: 16px; padding: 6px 18px;
  border-radius: 20px; margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 800; line-height: 1.15; margin-bottom: 22px; animation: fadeUp 0.9s ease 0.1s both; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 560px; line-height: 1.9; margin-bottom: 40px; animation: fadeUp 0.9s ease 0.2s both; }
.hero-btns { display: flex; gap: 14px; justify-content: center; animation: fadeUp 0.9s ease 0.3s both; }
.hero-stats { display: flex; gap: 60px; margin-top: 70px; padding-top: 48px; border-top: 0.5px solid var(--border); animation: fadeUp 0.9s ease 0.45s both; }
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.stat-circle {
  position: relative;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.stat-circle svg {
  position: absolute; top: 0; left: 0;
  width: 110px; height: 110px;
  transform: rotate(-90deg);
  fill: none;
}
.stat-circle svg .track {
  fill: none;
  stroke: var(--border-2);
  stroke-width: 2;
}
.stat-circle svg .progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-circle svg .progress.animated {
  stroke-dashoffset: 0;
}
.stat-num { font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; position: relative; z-index: 1; }
.stat-lbl { font-size: 18px; font-weight: 600;color: var(--text-dim); margin-top: 0; }

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--gold-bg); border: 0.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 40px; height: 40px; fill: var(--gold); }
.why-card-header { display: flex; align-items: center; gap: 14px; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 0; }
.why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-top: 14px; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svc-card { display: flex; flex-direction: column; }
.svc-num { font-size: 11px; font-weight: 700; color: var(--border-2); letter-spacing: 1px; margin-bottom: 14px; }
.svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; flex: 1; }
.svc-link { margin-top: 20px; font-size: 13px; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.svc-link svg { width: 14px; height: 14px; fill: var(--gold); transition: transform 0.2s; }
.svc-card:hover .svc-link svg { transform: translateX(-4px); }

/* ═══════════════════════════════════════
   PACKAGES
═══════════════════════════════════════ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; transition: transform 0.3s; position: relative; }
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card.best { border: 1.5px solid var(--gold); }
.pkg-badge { position: absolute; top: -14px; right: 50%; transform: translateX(50%); background: var(--gold); color: var(--bg); font-size: 14px; font-weight: 800; padding: 4px 16px; border-radius: 12px; white-space: nowrap; }
.pkg-tier { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; }
.pkg-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.pkg-dur { font-size: 16px; font-weight: 500; color: var(--text-dim); margin-bottom: 24px; }
.pkg-sep { height: 0.5px; background: var(--border); margin-bottom: 20px; }
.pkg-feats { flex: 1; margin-bottom: 24px; }
.pkg-feats li { font-size: 15px; color: var(--text-muted); padding: 7px 0; display: flex; align-items: center; gap: 10px; border-bottom: 0.5px solid var(--border); }
.pkg-feats li:last-child { border-bottom: none; }
.pkg-feats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.btn-pkg {text-align: center; width: 100%; padding: 13px; border-radius: 7px; font-size: 18px; font-weight: 700; font-family: 'Tajawal', sans-serif; border: 0.5px solid var(--gold-border); background: var(--gold-bg); color: var(--gold); transition: background 0.2s; cursor: pointer; }
.btn-pkg:hover { background: rgba(201,168,76,0.12); }
.pkg-card.best .btn-pkg { background: var(--gold); color: var(--bg); border: none; }
.pkg-card.best .btn-pkg:hover { background: var(--gold-light); }
.pkg-note { text-align: center; font-size: 15px; color: var(--text-dim); margin-top: 24px; padding: 16px; border: 0.5px solid var(--border); border-radius: 7px; line-height: 1.7; }

.port-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; align-items: flex-start; gap: 40px; margin-top: 16px; transition: border-color 0.3s; }
.port-card:hover { border-color: var(--gold-border); }
.port-info { flex: 1; }
.port-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.port-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.port-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.port-feats li { font-size: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.port-feats li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.port-action { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 160px; }
.port-action p { font-size: 14px; color: var(--text-dim); text-align: center; }

/* ═══════════════════════════════════════
   ANALYSES (BLOG)
═══════════════════════════════════════ */
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.analysis-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.analysis-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.analysis-tag { display: inline-block; background: var(--gold-bg); border: 0.5px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; width: fit-content; }
.analysis-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.5; flex: 1; }
.analysis-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.analysis-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 0.5px solid var(--border); }
.analysis-date { font-size: 11px; color: var(--text-dim); }
.analysis-horizon { font-size: 11px; color: var(--gold); }

/* Blog archive full page */
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.blog-card-img { height: 180px; background: var(--bg-2); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.blog-card-body h2 a { color: var(--text); transition: color 0.2s; }
.blog-card-body h2 a:hover { color: var(--gold); }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 0.5px solid var(--border); font-size: 12px; color: var(--text-dim); }
.read-more { color: var(--gold); font-size: 13px; }

/* Single post */
.single-post { max-width: 760px; margin: 0 auto; }
.post-header { margin-bottom: 40px; }
.post-header h1 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.post-meta { display: flex; gap: 20px; font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }
.post-content { font-size: 16px; color: var(--text-muted); line-height: 1.9; }
.post-content h2, .post-content h3 { color: var(--text); font-weight: 700; margin: 28px 0 12px; }
.post-content p { margin-bottom: 18px; }
.post-content blockquote { border-right: 3px solid var(--gold); padding: 12px 20px; background: var(--gold-bg); border-radius: 0 6px 6px 0; margin: 24px 0; font-style: italic; color: var(--text); }

/* ═══════════════════════════════════════
   HOW WE WORK
═══════════════════════════════════════ */
.how-steps { display: flex; gap: 0; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 36px; right: 10%; left: 10%; height: 0.5px; background: var(--border); }
.how-step { flex: 1; text-align: center; padding: 0 20px; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; border: 0.5px solid var(--gold-border); background: var(--gold-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 1; font-size: 20px; font-weight: 800; color: var(--gold); transition: background 0.3s, border-color 0.3s; }
.how-step:hover .step-circle { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.how-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-section { padding: 80px 24px; }
.cta-inner { max-width: var(--max-w); margin: 0 auto; background: var(--bg-1); border: 0.5px solid var(--gold-border); border-radius: var(--radius-lg); padding: 64px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 250px; background: radial-gradient(ellipse at 50% 0%, rgba(201,164,120,0.06) 0%, transparent 65%); pointer-events: none; }
.cta-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.cta-inner > p { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; margin-inline: auto; margin-bottom: 36px; }
.cta-note { font-size: 12px; color: var(--text-dim); margin-top: 18px; }

/* ═══════════════════════════════════════
   BOOKING PAGE
═══════════════════════════════════════ */
.booking-page { max-width: 800px; margin: 0 auto; }
.booking-intro { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; }
.booking-intro h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.booking-intro p { font-size: 16px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.booking-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.booking-benefits li { font-size: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.booking-benefits li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.booking-form { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 15px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--bg-2);
  border: 0.5px solid var(--border-2); border-radius: 7px;
  color: var(--text); font-family: 'Tajawal', sans-serif; font-size: 14px;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius); padding: 22px; transition: border-color 0.3s; }
.contact-card:hover { border-color: var(--gold-border); }
.contact-card-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--gold-bg); border: 0.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.contact-card-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-muted); }
.contact-form-wrap { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius-lg); padding: 36px; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { background: var(--bg-1); border: 0.5px solid var(--border-2); border-radius: var(--radius); padding: 24px; text-align: center; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: #030b14; border-top: 0.5px solid var(--border); padding: 56px 0 0; padding-bottom: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.footer-brand p { font-size: 15px; color: var(--text-dim); line-height: 1.9; max-width: 260px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 15px; color: var(--text-dim); cursor: pointer; transition: color 0.2s; }
.footer-col li:hover, .footer-col li a:hover { color: var(--gold); }
.footer-col a { color: var(--text-dim); font-size: 15px; }
.footer-bottom { border-top: 0.5px solid var(--border); padding: 24px 0; text-align: center; font-size: 13px; color: var(--text-dim); }
.footer-bottom p a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero { padding: 70px 0 50px; border-bottom: 0.5px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; right: 0; left: 0; background: rgba(13,13,15,0.98); padding: 20px; gap: 4px; border-bottom: 0.5px solid var(--border); backdrop-filter: blur(16px); z-index: 899; }
  .main-nav.open a { padding: 12px 16px; border-radius: 7px; }
  .main-nav.open a:hover { background: var(--bg-1); }
  .menu-toggle { display: block; }
  .hero-stats { gap: 30px; flex-wrap: wrap; justify-content: center; }
  .why-grid, .svc-grid, .pkg-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .analysis-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { flex-direction: column; gap: 24px; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .port-card { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .analysis-grid, .values-grid, .footer-grid, .booking-benefits, .port-feats { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }
}

/* ── FOOTER SOCIAL ICONS */
.footer-social { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.footer-social-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-muted); transition: color 0.2s; text-decoration: none; direction: rtl; }
.footer-social-item:hover { color: var(--gold); }
.footer-social-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gold-bg); border: 0.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s, background 0.2s; }
.footer-social-item:hover .footer-social-icon { border-color: var(--gold); background: rgba(201,164,120,0.1); }
.footer-social-icon svg { width: 16px; height: 16px; fill: var(--gold); }

/* ══════════════════════════════════════════
   IMAGE CARDS — خدمات وتحليلات
   الصورة فوق + النص تحت (مثل الريفرنس)
══════════════════════════════════════════ */
.img-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }

.img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color 0.4s, transform 0.3s;
  margin-left :12px;
}
.img-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.img-card.featured { border-color: var(--gold); }

/* ── Image top section */
.img-card-photo {
  position: relative; overflow: hidden;
  height: 220px; flex-shrink: 0;
  background: var(--bg-2);
}
.img-card-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-color: var(--bg-2);
  transition: transform 0.6s ease;
}
.img-card:hover .img-card-bg { transform: scale(1.05); }

/* Bottom fade on image */
.img-card-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--bg-1), transparent);
}

/* Icon badge — top right of image */
.img-card-icon {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(201,164,120,0.18);
  border: 1px solid rgba(201,164,120,0.45);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.img-card-icon svg { width: 20px; height: 20px; fill: var(--gold); }

/* Placeholder bg when no image */
.img-card-bg-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.img-card-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.img-card-bg-placeholder .img-card-icon { position: relative; top: auto; left: auto; width: 56px; height: 56px; }

/* ── Text bottom section */
.img-card-body {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column; flex: 1;
}
.img-card-tag {
  display: none;
  background: var(--gold-bg);
  border: 0.5px solid var(--gold-border);
  color: var(--gold); font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 4px;
  margin-bottom: 14px; width: fit-content;
}
.img-card-body h3 {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin-bottom: 10px; line-height: 1.35;
}
.img-card-body p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 20px; flex: 1;
}
.img-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--gold); font-weight: 700;
  transition: gap 0.2s; width: fit-content;
}
.img-card:hover .img-card-link { gap: 10px; }
.img-card-link svg { width: 14px; height: 14px; fill: var(--gold); }

/* overlay not needed in new design */
.img-card-overlay { display: none; }

/* Analysis cards — 3 cols */
.analysis-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.analysis-img-card { min-height: 360px; }

@media (max-width: 900px) {
  .img-card-grid { grid-template-columns: 1fr; }
  .analysis-img-grid { grid-template-columns: 1fr; gap: 4px; }
  .img-card-photo { height: 180px; }
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .img-card-body h3 { font-size: 17px; }
  .img-card-photo { height: 160px; }
}
@media (max-width: 560px) {
  .img-card-body h3 { font-size: 18px; }
}

/* ══════════════════════════════════════════
   LEGAL PAGE 
══════════════════════════════════════════ */
.legal-wrap { max-width: 780px; margin: 0 auto; }

/* Meta bar */
.legal-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
  padding: 12px 18px; margin-bottom: 36px;
  background: var(--bg-1); border: 0.5px solid var(--border-2);
  border-radius: 7px; width: fit-content;
}
.legal-meta-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--gold-bg); border: 0.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; }
.legal-meta-icon svg { width: 14px; height: 14px; fill: var(--gold); }

/* Content typography */
.legal-content { font-size: 16px; color: var(--text-muted); line-height: 2; }
.legal-content h2 { font-size: 20px; font-weight: 800; color: var(--text); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 0.5px solid var(--border); }
.legal-content h3 { font-size: 17px; font-weight: 700; color: var(--gold); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 14px 0 20px 0; padding-right: 24px; }
.legal-content li { margin-bottom: 8px; padding-right: 6px; }
.legal-content ul li::marker { color: var(--gold); }
.legal-content ol li::marker { color: var(--gold); font-weight: 700; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--gold-light); }
.legal-content strong { color: var(--text); font-weight: 700; }
.legal-content em { color: var(--text); font-style: italic; }

/* Blockquote */
.legal-content blockquote {
  border-right: 3px solid var(--gold);
  padding: 14px 20px; margin: 24px 0;
  background: var(--gold-bg); border-radius: 0 8px 8px 0;
  color: var(--text); font-style: italic;
}

/* Warning/notice box */
.legal-content .notice-box {
  background: rgba(226, 75, 74, 0.08);
  border: 0.5px solid rgba(226, 75, 74, 0.25);
  border-radius: 8px; padding: 16px 20px; margin: 24px 0;
  color: var(--text-muted);
}

/* Separator */
.legal-content hr { border: none; border-top: 0.5px solid var(--border); margin: 32px 0; }

/* Footer */
.legal-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 48px; padding-top: 24px;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.legal-footer-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.legal-footer-right p { font-size: 13px; color: var(--text-dim); margin: 0; }

@media (max-width: 600px) {
  .legal-footer { flex-direction: column; align-items: flex-start; }
  .legal-content { font-size: 15px; }
  .legal-content h2 { font-size: 18px; }
}

/* ══════════════════════════════════════════
   SERVICES PAGE 
══════════════════════════════════════════ */
.svc-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-page-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-page-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.svc-page-card.svc-page-featured { border-color: var(--gold); }

/* Image top */
.svc-page-img {
  position: relative; overflow: hidden;
  height: 240px; flex-shrink: 0;
}
.svc-page-img--left { order: 0; }
.svc-page-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.svc-page-card:hover .svc-page-img img { transform: scale(1.04); }
.svc-page-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,24,0.5) 0%, transparent 60%);
}

/* Body below image */
.svc-page-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column;
  flex: 1;
}
.svc-page-body--full { flex: 1; }

/* Top tag */
.svc-page-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.svc-page-num {
  font-size: 18px; font-weight: 700;
  color: var(--gold-dim); letter-spacing: 1px;
}
.svc-page-tag {
  display: inline-block;
  background: var(--gold-bg); border: 0.5px solid var(--gold-border);
  color: var(--gold); font-size: 18px; font-weight: 700;
  padding: 3px 12px; border-radius: 4px;
}

/* Title */
.svc-page-title {
  display :none;    
  font-size: 11px;;
  font-weight: 800; color: var(--text);
  margin-bottom: 14px; line-height: 1.3;
}

/* Desc */
.svc-page-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 22px;
}

/* Features list */
.svc-page-feats {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.svc-page-feats li {
  font-size: 14px; color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.svc-page-feats li:last-child { border-bottom: none; }
.svc-page-feats li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* CTA button */
.svc-page-cta {
  width: fit-content;
  display: inline-flex; align-items: center; gap: 8px;
}
.svc-page-cta svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 860px) {
  .svc-page-grid { grid-template-columns: 1fr; }
  .svc-page-img { height: 200px; }
  .svc-page-body { padding: 22px 20px 26px; }
}
@media (max-width: 560px) {
  .svc-page-img { height: 180px; }
  .svc-page-title { font-size: 18px; }
}

/* ── Service card placeholder (no image) */
.svc-page-img--placeholder {
  background: var(--bg-2);
  position: relative; overflow: hidden;
}

/* ── Package dot indicator */
.pkg-tier { display: flex; align-items: center; gap: 10px; font-size: 20px; }
.pkg-dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
  transition: transform 0.3s;
  /* color comes from inline style — DO NOT override here */
}
.pkg-card:hover .pkg-dot { transform: scale(1.25); }