/* ═══════════════════════════════════════════════════
   City Mark Resort – Elementor Widgets v2
   CSS مكتوب من الصفر بـ BEM classes
   ═══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
/* NOTE: Nav + Footer CSS is injected BEFORE this block – see bottom of file */
:root {
  --cm-gold:    #b8973a;
  --cm-gold2:   #d4af50;
  --cm-dark:    #0d0d0d;
  --cm-card:    #161616;
  --cm-text:    #e8e0d0;
  --cm-muted:   #9a9080;
  --cm-border:  rgba(184,151,58,.22);
  --cm-radius:  14px;
  --cm-fnt:     'Cairo', sans-serif;
}

/* ── Resets & Base ──────────────────────────────── */
.cm-section-wrap { box-sizing: border-box; width: 100%; }
.cm-container    { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
*, *::before, *::after { box-sizing: border-box; }

/* ── Gradient Title ─────────────────────────────── */
.cm-gradient-title {
  background: linear-gradient(135deg, var(--cm-gold2) 0%, #fff 50%, var(--cm-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cm-gold-text { color: var(--cm-gold2); }

/* ── Buttons ────────────────────────────────────── */
.cm-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cm-gold2); color: #000;
  font-family: var(--cm-fnt); font-size: 15px; font-weight: 700;
  padding: 13px 30px; border-radius: 8px; border: none;
  text-decoration: none; transition: .25s ease; white-space: nowrap;
}
.cm-btn-primary:hover { background: var(--cm-gold); box-shadow: 0 4px 20px rgba(212,175,80,.35); }

.cm-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--cm-gold2);
  font-family: var(--cm-fnt); font-size: 15px; font-weight: 600;
  padding: 12px 28px; border-radius: 8px; border: 2px solid var(--cm-gold2);
  text-decoration: none; transition: .25s ease; white-space: nowrap;
}
.cm-btn-outline:hover { background: rgba(212,175,80,.1); }

.cm-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25d366; color: #fff;
  font-family: var(--cm-fnt); font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: 8px; border: none;
  text-decoration: none; transition: .25s ease; white-space: nowrap;
}
.cm-btn-whatsapp:hover { background: #1fbb59; }

/* ── Section Header ─────────────────────────────── */
.cm-sec-header { text-align: center; margin-bottom: 56px; }
.cm-sec-tag    { font-family: var(--cm-fnt); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--cm-gold2); margin-bottom: 14px; display: inline-block; border: 1px solid rgba(184,151,58,0.35); padding: 5px 14px; border-radius: 20px; }
.cm-sec-title  { font-family: var(--cm-fnt); font-size: clamp(26px,4vw,42px); font-weight: 700; color: var(--cm-text); margin: 0 0 16px; line-height: 1.25; }
.cm-sec-line   { width: 56px; height: 3px; background: linear-gradient(90deg,var(--cm-gold),var(--cm-gold2)); margin: 0 auto 20px; border-radius: 99px; }
.cm-sec-desc   { font-family: var(--cm-fnt); font-size: 16px; color: var(--cm-muted); max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.cm-hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background-size: cover; background-position: center;
  text-align: center; direction: rtl;
}
.cm-hero-overlay { position: absolute; inset: 0; background: #000; opacity: .6; pointer-events: none; }
.cm-hero-inner   { position: relative; z-index: 2; max-width: 860px; padding: 140px 20px 80px; }
.cm-hero-badge   { display: inline-block; border: 1px solid var(--cm-gold2); color: var(--cm-gold2); font-family: var(--cm-fnt); font-size: 12px; letter-spacing: .2em; padding: 6px 20px; border-radius: 99px; margin-bottom: 24px; }
.cm-hero h1      { font-family: var(--cm-fnt); font-size: clamp(40px,7vw,88px); font-weight: 900; margin: 0 0 10px; line-height: 1.1; }
.cm-hero-subtitle{ font-family: var(--cm-fnt); font-size: clamp(18px,3vw,26px); font-weight: 400; color: var(--cm-gold2); margin-bottom: 22px; }
.cm-hero-desc    { font-family: var(--cm-fnt); font-size: 16px; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 28px; line-height: 1.8; }
.cm-hero-location{ display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; font-family: var(--cm-fnt); font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 34px; }
.cm-hero-btns    { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════ */
.cm-stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  background: var(--cm-card);
}
.cm-stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px; text-align: center;
  border-left: 1px solid var(--cm-border);
}
.cm-stat-item:last-child { border-left: none; }
.cm-stat-icon { font-size: 22px; color: var(--cm-gold2); margin-bottom: 8px; line-height: 1; }
.cm-stat-icon i { font-size: inherit; color: inherit; }
.cm-stat-num  { font-family: var(--cm-fnt); font-size: 28px; font-weight: 900; color: var(--cm-gold2); }
.cm-stat-lbl  { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); margin-top: 4px; }

/* ════════════════════════════════════════════════
   HALLS PREVIEW GRID
════════════════════════════════════════════════ */
.cm-halls-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.cm-hall-preview-card  { display: flex; flex-direction: column; border-radius: var(--cm-radius); border: 1px solid var(--cm-border); background: var(--cm-card); overflow: hidden; text-decoration: none; color: inherit; transition: border-color .3s, transform .3s; }
.cm-hall-preview-card:hover { border-color: var(--cm-gold); transform: translateY(-4px); }
.cm-hall-thumb         { position: relative; height: 190px; overflow: hidden; }
.cm-hall-thumb img     { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.cm-hall-preview-card:hover .cm-hall-thumb img { transform: scale(1.05); }
.cm-hall-thumb-cap     { position: absolute; top: 12px; left: 12px; background: var(--cm-gold2); color: #000; font-family: var(--cm-fnt); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.cm-hall-preview-body  { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cm-hall-preview-name-ar{ font-family: var(--cm-fnt); font-size: 18px; font-weight: 700; color: var(--cm-gold2); }
.cm-hall-preview-name-en{ font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); margin-top: -4px; }
.cm-hall-preview-tagline{ font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-text); line-height: 1.6; }
.cm-hall-preview-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--cm-border); }
.cm-hall-preview-capacity{ font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); }
.cm-hall-preview-capacity strong{ color: var(--cm-gold2); }
.cm-hall-preview-link  { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-gold2); }

/* ════════════════════════════════════════════════
   BREADCRUMB + PAGE HERO
════════════════════════════════════════════════ */
.cm-breadcrumb { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--cm-card); border-bottom: 1px solid var(--cm-border); font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); direction: rtl; }
.cm-breadcrumb a { color: var(--cm-gold2); text-decoration: none; }
.cm-breadcrumb span { color: var(--cm-muted); }

.cm-page-hero         { position: relative; display: flex; align-items: flex-end; min-height: 52vh; background-size: cover; background-position: center; direction: rtl; }
.cm-page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.cm-page-hero-inner   { position: relative; z-index: 2; padding: 100px 40px 60px; max-width: 900px; }
.cm-page-hero-badge   { display: inline-block; border: 1px solid var(--cm-gold2); color: var(--cm-gold2); font-family: var(--cm-fnt); font-size: 12px; letter-spacing: .2em; padding: 5px 18px; border-radius: 99px; margin-bottom: 18px; }
.cm-page-hero h1      { font-family: var(--cm-fnt); font-size: clamp(28px,5vw,56px); font-weight: 900; margin: 0 0 10px; line-height: 1.2; }
.cm-page-hero-sub     { font-family: var(--cm-fnt); font-size: 18px; color: var(--cm-gold2); margin-bottom: 12px; }
.cm-page-hero-desc    { font-family: var(--cm-fnt); font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.75; }

/* ════════════════════════════════════════════════
   HALLS FULL GRID
════════════════════════════════════════════════ */
.cm-halls-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.cm-hall-full-card  { display: flex; flex-direction: column; border-radius: var(--cm-radius); border: 1px solid var(--cm-border); background: var(--cm-card); overflow: hidden; transition: border-color .3s, transform .3s; }
.cm-hall-full-card:hover { border-color: var(--cm-gold); transform: translateY(-4px); }
.cm-hall-full-thumb { position: relative; height: 230px; overflow: hidden; }
.cm-hall-full-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.cm-hall-full-card:hover .cm-hall-full-thumb img { transform: scale(1.05); }
.cm-hall-full-cap   { position: absolute; bottom: 12px; right: 12px; background: var(--cm-gold2); color: #000; font-family: var(--cm-fnt); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.cm-hall-full-body  { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cm-hall-full-name-ar { font-family: var(--cm-fnt); font-size: 20px; font-weight: 700; color: var(--cm-gold2); }
.cm-hall-full-name-en { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); margin-top: -6px; }
.cm-hall-full-tagline { font-family: var(--cm-fnt); font-size: 13px; color: rgba(255,255,255,.6); border-right: 3px solid var(--cm-gold); padding-right: 10px; line-height: 1.6; }
.cm-hall-full-desc    { font-family: var(--cm-fnt); font-size: 14px; color: var(--cm-text); line-height: 1.7; }
.cm-hall-full-meta    { display: flex; align-items: center; gap: 6px; font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); }
.cm-hall-full-meta-num{ color: var(--cm-gold2); font-weight: 700; font-size: 18px; }
.cm-hall-full-cta     { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--cm-border); }
.cm-hall-full-link,.cm-hall-full-book { display: inline-flex; align-items: center; gap: 6px; font-family: var(--cm-fnt); font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 8px; text-decoration: none; transition: .2s; }
.cm-hall-full-link { background: var(--cm-gold2); color: #000; }
.cm-hall-full-link:hover { background: var(--cm-gold); }
.cm-hall-full-book { background: transparent; border: 1px solid var(--cm-gold); color: var(--cm-gold2); }
.cm-hall-full-book:hover { background: rgba(184,151,58,.1); }

/* ════════════════════════════════════════════════
   COMPARE TABLE
════════════════════════════════════════════════ */
.cm-compare-wrap { overflow-x: auto; border-radius: var(--cm-radius); border: 1px solid var(--cm-border); }
.cm-compare-table { width: 100%; border-collapse: collapse; font-family: var(--cm-fnt); direction: rtl; background: var(--cm-card); }
.cm-compare-table th { background: rgba(184,151,58,.12); color: var(--cm-gold2); font-size: 13px; font-weight: 700; padding: 14px 18px; border-bottom: 1px solid var(--cm-border); text-align: right; }
.cm-compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--cm-border); font-size: 14px; color: var(--cm-text); text-align: right; }
.cm-compare-table tr:last-child td { border-bottom: none; }
.cm-compare-table .cap-cell { color: var(--cm-gold2); font-weight: 700; }
.cm-compare-table .hall-name-cell { display: flex; align-items: center; font-weight: 600; }
.cm-compare-table a { color: var(--cm-gold2) !important; text-decoration: none; }
.cm-compare-table a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════
   HALL INFO BOX
════════════════════════════════════════════════ */
.cm-hall-info-box   { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 28px; direction: rtl; }
.cm-hall-info-title { font-family: var(--cm-fnt); font-size: 16px; font-weight: 700; color: var(--cm-gold2); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--cm-border); }
.cm-hall-info-row   { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(184,151,58,.07); font-family: var(--cm-fnt); }
.cm-hall-info-row:last-of-type { border-bottom: none; }
.cm-info-key  { font-size: 13px; color: var(--cm-muted); }
.cm-info-val  { font-size: 14px; color: var(--cm-text); font-weight: 600; }
.cm-info-val.gold { color: var(--cm-gold2); }

/* ════════════════════════════════════════════════
   PRICE CARDS (HIGH TEA)
════════════════════════════════════════════════ */
.cm-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.cm-price-card { position: relative; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 28px; direction: rtl; transition: border-color .3s; display: flex; flex-direction: column; gap: 10px; }
.cm-price-card.featured { border-color: var(--cm-gold); box-shadow: 0 4px 30px rgba(184,151,58,.18); }
.cm-featured-badge { position: absolute; top: -12px; right: 20px; background: var(--cm-gold2); color: #000; font-family: var(--cm-fnt); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 99px; }
.cm-price-level  { font-family: var(--cm-fnt); font-size: 18px; font-weight: 700; color: var(--cm-gold2); }
.cm-price-amount { font-family: var(--cm-fnt); font-size: 40px; font-weight: 900; color: var(--cm-gold2); line-height: 1; }
.cm-price-unit   { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); margin-top: -6px; }
.cm-price-divider{ height: 1px; background: var(--cm-border); margin: 4px 0; }
.cm-price-items  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cm-price-items li{ position: relative; font-family: var(--cm-fnt); font-size: 14px; color: var(--cm-text); padding-right: 18px; }
.cm-price-items li::before{ content: '✦'; position: absolute; right: 0; color: var(--cm-gold2); font-size: 10px; top: 3px; }
.cm-price-note   { background: rgba(184,151,58,.07); border-right: 3px solid var(--cm-gold); padding: 10px 14px; border-radius: 0 6px 6px 0; font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); margin-top: 8px; }
.cm-service-note { text-align: center; padding: 16px; font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); background: rgba(184,151,58,.05); border-radius: var(--cm-radius); margin-top: 20px; }

/* ════════════════════════════════════════════════
   CAKE ROW
════════════════════════════════════════════════ */
.cm-cakes-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cm-cake-card { flex: 1; min-width: 150px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 12px; padding: 20px 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; direction: rtl; transition: border-color .3s; }
.cm-cake-card:hover { border-color: var(--cm-gold); }
.cm-cake-icon  { font-size: 32px; }
.cm-cake-icon i{ font-size: 32px; color: var(--cm-gold2); }
.cm-cake-name  { font-family: var(--cm-fnt); font-size: 15px; font-weight: 600; color: var(--cm-text); }
.cm-cake-price { font-family: var(--cm-fnt); font-size: 22px; font-weight: 900; color: var(--cm-gold2); }
.cm-cake-unit  { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); }

/* ════════════════════════════════════════════════
   MINI EXTRAS
════════════════════════════════════════════════ */
.cm-mini-extras { display: flex; flex-wrap: wrap; gap: 12px; }
.cm-mini-extra  { flex: 1; min-width: 120px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; transition: border-color .3s; }
.cm-mini-extra:hover { border-color: var(--cm-gold); }
.cm-mini-extra-icon  { font-size: 24px; }
.cm-mini-extra-icon i{ color: var(--cm-gold2); }
.cm-mini-extra-name  { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-text); }
.cm-mini-extra-price { font-family: var(--cm-fnt); font-size: 18px; font-weight: 700; color: var(--cm-gold2); }
.cm-mini-extra-unit  { font-family: var(--cm-fnt); font-size: 11px; color: var(--cm-muted); }

/* ════════════════════════════════════════════════
   DINNER CARDS
════════════════════════════════════════════════ */
.cm-dinner-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.cm-dinner-card   { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); overflow: hidden; direction: rtl; transition: border-color .3s; display: flex; flex-direction: column; }
.cm-dinner-card.top { border-color: var(--cm-gold); box-shadow: 0 4px 28px rgba(184,151,58,.18); }
.cm-dinner-header { background: rgba(184,151,58,.10); padding: 18px 22px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--cm-border); }
.cm-dinner-level  { font-family: var(--cm-fnt); font-size: 17px; font-weight: 700; color: var(--cm-gold2); }
.cm-dinner-price  { font-family: var(--cm-fnt); font-size: 32px; font-weight: 900; color: var(--cm-gold2); text-align: left; line-height: 1; }
.cm-dinner-price-unit{ font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); }
.cm-dinner-body   { padding: 18px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cm-dinner-items  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cm-dinner-items li{ position: relative; font-family: var(--cm-fnt); font-size: 14px; color: var(--cm-text); padding-right: 18px; }
.cm-dinner-items li::before{ content: '✦'; position: absolute; right: 0; color: var(--cm-gold2); font-size: 10px; top: 3px; }
.cm-dinner-includes { background: rgba(184,151,58,.07); border-right: 3px solid var(--cm-gold); padding: 12px 16px; border-radius: 0 6px 6px 0; }
.cm-dinner-includes-title { font-family: var(--cm-fnt); font-size: 12px; font-weight: 700; color: var(--cm-gold2); margin-bottom: 6px; }
.cm-dinner-includes-list  { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════
   PROGRAM GRID
════════════════════════════════════════════════ */
.cm-program-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; }
.cm-program-item { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; direction: rtl; transition: border-color .3s, transform .25s; }
.cm-program-item:hover { border-color: var(--cm-gold); transform: translateY(-3px); }
.cm-program-icon i{ font-size: 26px; color: var(--cm-gold2); }
.cm-program-name  { font-family: var(--cm-fnt); font-size: 13px; font-weight: 600; color: var(--cm-text); line-height: 1.5; }

/* ════════════════════════════════════════════════
   EXTRAS TABLE
════════════════════════════════════════════════ */
.cm-extras-grid        { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.cm-extras-group       { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); overflow: hidden; direction: rtl; }
.cm-extras-group-header{ background: rgba(184,151,58,.10); padding: 13px 18px; font-family: var(--cm-fnt); font-size: 14px; font-weight: 700; color: var(--cm-gold2); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--cm-border); }
.cm-extras-group-header i{ color: var(--cm-gold2); font-size: 15px; }
.cm-extra-row  { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px; border-bottom: 1px solid rgba(184,151,58,.07); }
.cm-extra-row:last-child { border-bottom: none; }
.cm-extra-name { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-text); }
.cm-extra-price{ font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-gold2); white-space: nowrap; }

/* ════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
.cm-cta-banner { background: rgba(184,151,58,.10); border: 1px solid var(--cm-gold); border-radius: var(--cm-radius); padding: 40px; text-align: center; direction: rtl; }
.cm-cta-tag    { font-family: var(--cm-fnt); font-size: 12px; letter-spacing: .18em; color: var(--cm-gold2); margin-bottom: 12px; }
.cm-cta-banner h3 { font-family: var(--cm-fnt); font-size: 28px; font-weight: 700; color: var(--cm-text); margin: 0 0 12px; }
.cm-cta-banner p  { font-family: var(--cm-fnt); font-size: 15px; color: var(--cm-muted); margin-bottom: 28px; }
.cm-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ════════════════════════════════════════════════
   CONTACT INFO  (cm-ci-*)
════════════════════════════════════════════════ */
.cm-ci-wrap        { display: flex; flex-direction: column; gap: 16px; direction: rtl; }

/* بطاقات المعلومات */
.cm-ci-stack       { display: flex; flex-direction: column; gap: 14px; }
.cm-ci-card        { display: flex; align-items: flex-start; gap: 16px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 22px; transition: border-color .3s; }
.cm-ci-card:hover  { border-color: var(--cm-gold); }
.cm-ci-icon        { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; background: linear-gradient(135deg, var(--cm-gold), var(--cm-gold2)); display: flex; align-items: center; justify-content: center; }
.cm-ci-icon i      { font-size: 18px; color: #000; line-height: 1; }
.cm-ci-icon svg    { width: 18px; height: 18px; fill: #000; flex-shrink: 0; }
.cm-ci-body        { flex: 1; }
.cm-ci-label       { font-family: var(--cm-fnt); font-size: 11px; color: var(--cm-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.cm-ci-value       { font-family: var(--cm-fnt); font-size: 15px; font-weight: 700; color: var(--cm-text); line-height: 1.55; }
.cm-ci-value a     { color: var(--cm-gold2) !important; text-decoration: none; }
.cm-ci-value a:hover { text-decoration: underline; }

/* صندوق السوشيال */
.cm-ci-social-box     { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 20px; }
.cm-ci-social-title   { font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-gold2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.cm-ci-social-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cm-ci-social-grid.social-cols-1 { grid-template-columns: 1fr; }
.cm-ci-social-card         { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 11px; text-decoration: none; font-family: var(--cm-fnt); font-weight: 700; transition: opacity .25s, transform .25s; }
.cm-ci-social-card:hover   { opacity: .88; transform: translateY(-2px); }
.cm-ci-social-card.fb      { background: #1877f2; color: #fff; }
.cm-ci-social-card.wa      { background: #25d366; color: #fff; }
.cm-ci-wa-full             { grid-column: 1 / -1; }
.cm-ci-social-icon     { font-size: 22px; flex-shrink: 0; }
.cm-ci-social-sub      { font-size: 11px; opacity: .8; }
.cm-ci-social-name     { font-size: 13px; }

/* قسم ناف القاعات */
.cm-ci-halls-section  { display: flex; flex-direction: column; gap: 16px; }
.cm-ci-halls-header   { text-align: center; }
.cm-halls-nav         { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.cm-hall-nav-card     { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 11px; text-decoration: none; color: var(--cm-text); transition: transform .3s, border-color .3s; }
.cm-hall-nav-card:hover { transform: translateY(-3px); border-color: var(--cm-gold); }
.cm-hall-nav-icon     { font-size: 24px; flex-shrink: 0; color: var(--cm-gold2); }
.cm-hall-nav-icon i   { font-size: 24px; color: var(--cm-gold2); }
.cm-hall-nav-name     { font-family: var(--cm-fnt); font-size: 15px; font-weight: 700; color: var(--cm-gold2); }
.cm-hall-nav-cap      { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); }

/* ════════════════════════════════════════════════
   CONTACT FORM  (cm-cf-*)
════════════════════════════════════════════════ */
.cm-cf-box         { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 32px; direction: rtl; }
.cm-cf-title       { font-family: var(--cm-fnt); font-size: 20px; font-weight: 900; color: var(--cm-gold2); margin-bottom: 6px; }
.cm-cf-sub         { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); margin-bottom: 26px; }
.cm-cf-row         { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cm-cf-group       { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.cm-cf-label       { font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-text); }
.cm-cf-req         { color: var(--cm-gold2); }
.cm-cf-input,
.cm-cf-select,
.cm-cf-textarea    { width: 100%; background: #1a1a1a; border: 1px solid var(--cm-border); border-radius: 8px; padding: 12px 14px; font-family: var(--cm-fnt); font-size: 14px; color: var(--cm-text); outline: none; transition: border-color .25s, box-shadow .25s; direction: rtl; appearance: none; }
.cm-cf-input:focus,
.cm-cf-select:focus,
.cm-cf-textarea:focus { border-color: var(--cm-gold); box-shadow: 0 0 0 3px rgba(184,151,58,.15); }
.cm-cf-select      { cursor: pointer; }
.cm-cf-textarea    { min-height: 120px; resize: vertical; }
.cm-cf-submit      { width: 100%; padding: 14px; background: var(--cm-gold2); color: #000; font-family: var(--cm-fnt); font-size: 15px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: background .25s; margin-top: 4px; }
.cm-cf-submit:hover { background: var(--cm-gold); }
.cm-cf-success     { margin-top: 16px; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); border-radius: 10px; padding: 16px; text-align: center; color: #25d366; font-family: var(--cm-fnt); font-weight: 700; font-size: 14px; }

/* Responsive */
@media (max-width: 600px) {
  .cm-cf-row         { grid-template-columns: 1fr; }
  .cm-ci-social-grid { grid-template-columns: 1fr; }
  .cm-ci-wa-full     { grid-column: 1; }
}


/* ════════════════════════════════════════════════
   HALL DETAIL PAGE  (cm-hd-*)
════════════════════════════════════════════════ */

/* Layout */
.cm-hd-wrap          { display: flex; gap: 32px; align-items: flex-start; direction: rtl; }
.cm-hd-main          { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 36px; }
.cm-hd-sidebar       { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }

/* Color helpers */
.cm-hd-gold          { color: var(--cm-gold2); }
.cm-hd-muted         { color: var(--cm-muted); }

/* Section headings */
.cm-hd-section-title { font-family: var(--cm-fnt); font-size: 22px; font-weight: 700; color: var(--cm-text); margin: 8px 0 0; }
.cm-hd-gold-line     { width: 48px; height: 3px; background: linear-gradient(90deg,var(--cm-gold),var(--cm-gold2)); border-radius: 99px; margin: 10px 0 22px; }

/* Gallery */
.cm-hd-gallery-wrap      { border-radius: var(--cm-radius); overflow: hidden; }
.cm-hd-gallery-main      { height: 380px; overflow: hidden; background: #1a1a1a; border-radius: var(--cm-radius) var(--cm-radius) 0 0; position: relative; }
.cm-hd-gallery-main img  { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
.cm-hd-gallery-main.cm-hd-gal-lb-trigger { cursor: pointer; }
.cm-hd-gal-zoom-icon     { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 48px; opacity: 0; transition: opacity .3s; pointer-events: none; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.cm-hd-gallery-main:hover .cm-hd-gal-zoom-icon { opacity: 1; }
.cm-hd-gallery-thumbs    { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; margin-top: 6px; }
.cm-hd-gallery-thumb     { height: 110px; overflow: hidden; cursor: pointer; border-radius: 6px; border: 2px solid transparent; transition: border-color .25s; }
.cm-hd-gallery-thumb.active { border-color: var(--cm-gold2); }
.cm-hd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s, opacity .3s; }
.cm-hd-gallery-thumb:hover img { transform: scale(1.08); opacity: .85; }

/* Video */
.cm-hd-video-section        { border-radius: var(--cm-radius); overflow: hidden; border: 1px solid var(--cm-border); }
.cm-hd-video-embed          { position: relative; padding-bottom: 56.25%; height: 0 !important; }
.cm-hd-video-embed iframe   { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.cm-hd-video-self           { background: #000; }
.cm-hd-video-player         { width: 100%; height: 100%; display: block; }
.cm-hd-video-placeholder    { height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; background: linear-gradient(135deg, #1a1810, #221e12); padding: 24px; }
.cm-hd-video-icon           { font-size: 64px; }
.cm-hd-video-placeholder h3 { font-family: var(--cm-fnt); font-size: 20px; font-weight: 700; color: var(--cm-text); margin: 0; }

/* About box */
.cm-hd-box           { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 26px; direction: rtl; }
.cm-hd-about-box .cm-hd-hall-name-ar { font-family: var(--cm-fnt); font-size: 20px; font-weight: 900; margin-bottom: 18px; }
.cm-hd-about-text p  { font-family: var(--cm-fnt); font-size: 15px; color: var(--cm-text); line-height: 1.9; margin: 0 0 14px; }
.cm-hd-about-text p:last-child { margin-bottom: 0; }

/* Features list */
.cm-hd-features-list  { display: flex; flex-direction: column; gap: 12px; }
.cm-hd-feature-item   { display: flex; align-items: center; gap: 14px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 10px; padding: 14px 16px; transition: border-color .25s; }
.cm-hd-feature-item:hover { border-color: var(--cm-gold); }
.cm-hd-feature-icon   { font-size: 20px; color: var(--cm-gold2); flex-shrink: 0; }
.cm-hd-feature-icon i { font-size: 20px; color: var(--cm-gold2); }
.cm-hd-feature-text   { font-family: var(--cm-fnt); font-size: 14px; font-weight: 600; color: var(--cm-text); line-height: 1.4; }

/* CTA Banner */
.cm-hd-cta-banner     { background: rgba(184,151,58,.12); border: 1px solid var(--cm-gold); border-radius: var(--cm-radius); padding: 32px; text-align: center; direction: rtl; }
.cm-hd-cta-tag        { font-family: var(--cm-fnt); font-size: 12px; letter-spacing: .18em; color: var(--cm-gold2); margin-bottom: 12px; }
.cm-hd-cta-banner h3  { font-family: var(--cm-fnt); font-size: 22px; font-weight: 700; color: var(--cm-text); margin: 0 0 10px; }
.cm-hd-cta-btns       { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Sidebar box */
.cm-hd-box-header     { font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-gold2); letter-spacing: .1em; text-transform: uppercase; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--cm-border); }

/* Specs rows */
.cm-hd-spec-row       { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(184,151,58,.07); font-family: var(--cm-fnt); }
.cm-hd-spec-row:last-of-type { border-bottom: none; }
.cm-hd-spec-key       { font-size: 13px; }
.cm-hd-spec-val       { font-size: 14px; font-weight: 600; color: var(--cm-text); text-align: left; max-width: 60%; }
.cm-hd-spec-val--big  { font-size: 20px; font-weight: 900; }

/* Pricing grid */
.cm-hd-pricing-section { padding: 4px 0; }
.cm-hd-pricing-label   { font-family: var(--cm-fnt); font-size: 12px; margin-bottom: 8px; }
.cm-hd-pricing-row     { display: flex; gap: 8px; }
.cm-hd-price-cell      { flex: 1; background: #1a1a1a; border-radius: 8px; padding: 10px 8px; text-align: center; }
.cm-hd-price-num       { font-family: var(--cm-fnt); font-size: 20px; font-weight: 900; }
.cm-hd-price-sub       { font-family: var(--cm-fnt); font-size: 10px; margin-top: 3px; }
.cm-hd-service-note    { font-family: var(--cm-fnt); font-size: 11px; text-align: center; margin-top: 12px; }

/* Booking buttons */
.cm-hd-booking-btns    { display: flex; flex-direction: column; gap: 10px; }
.cm-hd-full-btn        { width: 100%; justify-content: center; }

/* Other halls */
.cm-hd-other-halls        { display: flex; flex-direction: column; gap: 8px; }
.cm-hd-other-hall-link    { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--cm-border); border-radius: 9px; text-decoration: none; color: var(--cm-text); transition: border-color .25s; font-family: var(--cm-fnt); }
.cm-hd-other-hall-link:hover { border-color: var(--cm-gold); }
.cm-hd-other-icon      { font-size: 18px; flex-shrink: 0; }
.cm-hd-other-icon i    { font-size: 18px; }
.cm-hd-other-name      { font-size: 13px; font-weight: 600; flex: 1; }
.cm-hd-other-cap       { font-size: 11px; white-space: nowrap; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cm-halls-preview-grid { grid-template-columns: repeat(2,1fr); }
  .cm-halls-full-grid    { grid-template-columns: repeat(2,1fr); }
  .cm-dinner-grid        { grid-template-columns: repeat(2,1fr); }
  .cm-stats-bar          { grid-template-columns: repeat(2,1fr); }
  .cm-page-hero-inner    { padding: 80px 24px 40px; }
}
@media (max-width: 680px) {
  .cm-halls-preview-grid { grid-template-columns: 1fr; }
  .cm-halls-full-grid    { grid-template-columns: 1fr; }
  .cm-dinner-grid        { grid-template-columns: 1fr; }
  .cm-price-grid         { grid-template-columns: 1fr; }
  .cm-extras-grid        { grid-template-columns: 1fr; }
  .cm-stats-bar          { grid-template-columns: repeat(2,1fr); }
  .cm-hero-btns          { flex-direction: column; align-items: center; }
  .cm-cta-btns           { flex-direction: column; align-items: center; }
  .cm-form-row           { grid-template-columns: 1fr; }
  .cm-program-grid       { grid-template-columns: repeat(2,1fr); }
  .cm-social-cards       { flex-direction: column; }
  .cm-cakes-row          { flex-direction: column; }
}
@media (max-width: 480px) {
  .cm-hero h1            { font-size: 36px; }
  .cm-sec-title          { font-size: 22px; }
  .cm-page-hero h1       { font-size: 26px; }
  .cm-program-grid       { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   WHY US  (cm-wu-*)
════════════════════════════════════════════════ */
.cm-wu-wrap        { box-sizing: border-box; width: 100%; }
.cm-wu-header      { margin-bottom: 56px; }
.cm-wu-grid        { display: grid; gap: 22px; }
/* grid-template-columns set inline per columns setting */

/* بطاقات المميزات */
.cm-wu-card              { background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; direction: rtl; transition: border-color .3s, transform .3s; }
.cm-wu-card:hover        { border-color: var(--cm-gold); transform: translateY(-4px); }
.cm-wu-card.accent       { border-color: var(--cm-gold); box-shadow: 0 4px 28px rgba(184,151,58,.18); }
.cm-wu-card-icon-wrap    { width: 52px; height: 52px; border-radius: 12px; background: rgba(184,151,58,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cm-wu-card-icon i       { font-size: 26px; color: var(--cm-gold2); }
.cm-wu-card-title        { font-family: var(--cm-fnt); font-size: 16px; font-weight: 700; color: var(--cm-gold2); }
.cm-wu-card-desc         { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); line-height: 1.75; margin: 0; }

/* أرقام الإنجاز */
.cm-wu-numbers     { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; margin-top: 50px; background: var(--cm-card); border-radius: var(--cm-radius); border: 1px solid var(--cm-border); overflow: hidden; }
.cm-wu-num-item    { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 16px; text-align: center; border-left: 1px solid var(--cm-border); direction: rtl; }
.cm-wu-num-item:last-child { border-left: none; }
.cm-wu-num-icon    { font-size: 24px; color: var(--cm-gold2); margin-bottom: 8px; }
.cm-wu-num-icon i  { font-size: 24px; color: var(--cm-gold2); }
.cm-wu-num-value   { font-family: var(--cm-fnt); font-size: 30px; font-weight: 900; color: var(--cm-gold2); line-height: 1; }
.cm-wu-num-label   { font-family: var(--cm-fnt); font-size: 12px; color: var(--cm-muted); margin-top: 6px; }

/* CTA */
.cm-wu-cta         { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

@media (max-width: 900px) {
  .cm-wu-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cm-wu-numbers { grid-template-columns: repeat(2, 1fr); }
  .cm-wu-num-item:nth-child(2) { border-left: none; }
}
@media (max-width: 580px) {
  .cm-wu-grid { grid-template-columns: 1fr !important; }
  .cm-wu-cta  { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════
   LOCATION MAP  (cm-loc-*)
════════════════════════════════════════════════ */
.cm-loc-wrap       { box-sizing: border-box; width: 100%; }

/* Layout رئيسي */
.cm-loc-body       { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }

/* الخريطة */
.cm-loc-map-wrap   { display: flex; flex-direction: column; gap: 0; }
.cm-loc-map-box    { border-radius: var(--cm-radius) var(--cm-radius) 0 0; overflow: hidden; border: 1px solid var(--cm-border); border-bottom: none; }
.cm-loc-map-frame  { width: 100%; height: 380px; border: none; display: block; }
.cm-loc-map-placeholder { display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, #1a1810, #1e1c10); }
.cm-loc-maps-btn   { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--cm-gold2); color: #000; font-family: var(--cm-fnt); font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 0 0 var(--cm-radius) var(--cm-radius); transition: background .25s; }
.cm-loc-maps-btn:hover { background: var(--cm-gold); }

/* سايدبار المعلومات */
.cm-loc-sidebar    { display: flex; flex-direction: column; gap: 14px; }
.cm-loc-info-stack { display: flex; flex-direction: column; gap: 10px; }
.cm-loc-info-card  { display: flex; align-items: flex-start; gap: 14px; background: var(--cm-card); border: 1px solid var(--cm-border); border-radius: 11px; padding: 16px 18px; direction: rtl; transition: border-color .25s; }
.cm-loc-info-card:hover { border-color: var(--cm-gold); }
.cm-loc-info-icon  { width: 40px; height: 40px; border-radius: 10px; background: var(--cm-gold2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cm-loc-info-icon i{ font-size: 16px; color: #000; }
.cm-loc-info-label { font-family: var(--cm-fnt); font-size: 11px; color: var(--cm-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .08em; }
.cm-loc-info-value { font-family: var(--cm-fnt); font-size: 14px; color: var(--cm-text); font-weight: 600; line-height: 1.5; }
.cm-loc-info-link  { color: var(--cm-gold2) !important; text-decoration: none; }
.cm-loc-info-link:hover { text-decoration: underline; }

/* تعليمات الوصول */
.cm-loc-directions    { background: rgba(184,151,58,.07); border: 1px solid var(--cm-border); border-radius: var(--cm-radius); padding: 18px 20px; direction: rtl; }
.cm-loc-dir-title     { font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-gold2); margin-bottom: 14px; letter-spacing: .06em; }
.cm-loc-dir-row       { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(184,151,58,.08); }
.cm-loc-dir-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cm-loc-dir-from      { font-family: var(--cm-fnt); font-size: 11px; font-weight: 700; color: var(--cm-gold2); text-transform: uppercase; letter-spacing: .1em; }
.cm-loc-dir-text      { font-family: var(--cm-fnt); font-size: 13px; color: var(--cm-muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 860px) {
  .cm-loc-body { grid-template-columns: 1fr; }
  .cm-loc-map-frame { height: 300px; }
}

/* ════════════════════════════════════════════════
   NAV HEADER  (cm-nav-*)
════════════════════════════════════════════════ */
.cm-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 40px;
  background: rgba(13,13,13,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cm-border);
  font-family: var(--cm-fnt); direction: rtl;
  position: relative; z-index: 1000;
}
.cm-nav-logo          { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.cm-nav-logo-icon     { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--cm-gold), var(--cm-gold2)); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; color: #000; }
.cm-nav-logo-img      { height: 42px; width: auto; object-fit: contain; }
.cm-nav-logo-text     { font-size: 16px; font-weight: 700; color: var(--cm-gold2); line-height: 1.2; }
.cm-nav-logo-sub      { font-size: 11px; color: var(--cm-muted); font-weight: 400; }
.cm-nav-links         { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.cm-nav-links a       { display: block; color: var(--cm-text); text-decoration: none; font-size: 13.5px; font-weight: 600; padding: 8px 12px; border-radius: 8px; transition: background .2s, color .2s; white-space: nowrap; }
.cm-nav-links a:hover,
.cm-nav-links a.active { color: var(--cm-gold2); background: rgba(184,151,58,.10); }
.cm-nav-end           { display: flex; align-items: center; gap: 12px; }
.cm-nav-cta           { background: linear-gradient(135deg, var(--cm-gold), var(--cm-gold2)); color: #000; font-family: var(--cm-fnt); font-weight: 700; font-size: 13px; padding: 9px 20px; border-radius: 7px; text-decoration: none; white-space: nowrap; transition: opacity .25s; }
.cm-nav-cta:hover     { opacity: .85; }
.cm-nav-hamburger     { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--cm-gold2); line-height: 1; padding: 4px; }
@media (max-width: 768px) {
  .cm-nav             { padding: 0 18px; }
  .cm-nav-links       { display: none; }
  .cm-nav-hamburger   { display: block; }
  .cm-nav-links.cm-nav-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: rgba(13,13,13,.98); border-bottom: 1px solid var(--cm-border);
    padding: 10px 0; z-index: 999;
  }
  .cm-nav-links.cm-nav-open a { padding: 12px 24px; border-radius: 0; }
}
.cm-wa-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 1100;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.cm-wa-fab:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ════════════════════════════════════════════════
   FOOTER  (cm-footer-*)
════════════════════════════════════════════════ */
.cm-footer            { background: #111; border-top: 1px solid var(--cm-border); padding: 40px 40px 28px; font-family: var(--cm-fnt); direction: rtl; }
.cm-footer-grid       { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto 30px; }
.cm-footer-brand-name { font-size: 20px; font-weight: 900; color: var(--cm-gold2); margin-bottom: 10px; }
.cm-footer-brand-desc { font-size: 13px; color: var(--cm-muted); line-height: 1.8; margin: 0; }
.cm-footer-social     { display: flex; gap: 10px; margin-top: 16px; }
.cm-footer-social-link { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; color: var(--cm-text); background: var(--cm-card); border: 1px solid var(--cm-border); transition: border-color .25s, background .25s; }
.cm-footer-social-link:hover { border-color: var(--cm-gold); background: rgba(184,151,58,.10); }
.cm-footer-social-link i { font-size: 16px; color: var(--cm-text); }
.cm-footer-col-title  { font-family: var(--cm-fnt); font-size: 13px; font-weight: 700; color: var(--cm-text); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.cm-footer-col-links  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cm-footer-col-link   { font-family: var(--cm-fnt); color: var(--cm-muted); text-decoration: none; font-size: 13px; transition: color .25s; }
.cm-footer-col-link:hover { color: var(--cm-gold2); }
.cm-footer-copy       { text-align: center; font-family: var(--cm-fnt); font-size: 12px; color: rgba(154,144,128,.45); border-top: 1px solid var(--cm-border); padding-top: 20px; max-width: 1160px; margin: 0 auto; }
@media (max-width: 900px) { .cm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 600px) { .cm-footer { padding: 32px 18px 22px; } .cm-footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Hall Detail Responsive */
@media (max-width: 1024px) {
  .cm-hd-wrap      { flex-direction: column; }
  .cm-hd-sidebar   { width: 100%; position: static; }
  .cm-hd-pricing-row { flex-wrap: wrap; }
}
@media (max-width: 680px) {
  .cm-hd-gallery-main      { height: 240px; }
  .cm-hd-gallery-thumbs    { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); }
  .cm-hd-video-placeholder { height: 280px; }
  .cm-hd-cta-btns          { flex-direction: column; align-items: center; }
  .cm-hd-pricing-row       { flex-direction: column; }
}
@media (max-width: 400px) {
  .cm-hd-gallery-thumbs    { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
}

/* ═══════════════════════════════════════════════════
   HERO – Ghost Button + Scroll Arrow + Gradient vars
   ═══════════════════════════════════════════════════ */
.cm-btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}
.cm-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }

/* Gradient title via CSS vars */
.cm-hero .cm-gradient-title,
.cm-page-hero .cm-gradient-title {
  background: linear-gradient(135deg, var(--grad1, #f0d98c), var(--grad2, #b8973a));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll Arrow */
.cm-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}
.cm-hero-scroll-arrow {
  width: 28px;
  height: 28px;
  border-left: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(-45deg);
  animation: cm-bounce 1.6s infinite;
  margin: 0 auto;
}
@keyframes cm-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); opacity: 0.7; }
  50%       { transform: rotate(-45deg) translateY(8px); opacity: 1; }
}

/* cm-hero-inner flex layout */
.cm-hero-inner { display: flex; flex-direction: column; align-items: center; }
.cm-hero-inner[style*="text-align: right"]  { align-items: flex-end; }
.cm-hero-inner[style*="text-align: left"]   { align-items: flex-start; }
.cm-hero-inner[style*="text-align: center"] { align-items: center; }

/* ═══════════════════════════════════════════════════
   GALLERY WIDGET
   ═══════════════════════════════════════════════════ */
.cm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cm-gal-item          { cursor: pointer; overflow: hidden; border-radius: 10px; }
.cm-gal-img-wrap      { position: relative; height: 220px; overflow: hidden; border-radius: 10px; }
.cm-gal-img-wrap img  { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.cm-gal-item:hover .cm-gal-img-wrap img { transform: scale(1.08); }
.cm-gal-overlay       { position: absolute; inset: 0; background: rgba(0,0,0,.55); opacity: 0; transition: opacity .3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-radius: 10px; }
.cm-gal-item:hover .cm-gal-overlay { opacity: 1; }
.cm-gal-zoom          { font-size: 28px; color: #d4af50; line-height: 1; }
.cm-gal-caption       { color: #fff; font-size: 14px; font-family: 'Cairo', sans-serif; text-align: center; padding: 0 12px; }

/* Lightbox */
.cm-lightbox          { position: fixed; inset: 0; z-index: 99999; display: none; }
.cm-lightbox.cm-lb-open { display: flex; align-items: center; justify-content: center; }
.cm-lb-backdrop       { position: absolute; inset: 0; background: rgba(0,0,0,.92); cursor: pointer; }
.cm-lb-content        { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; }
.cm-lb-img            { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; display: block; }
.cm-lb-caption        { color: #d4af50; font-family: 'Cairo',sans-serif; font-size: 15px; margin-top: 12px; }
.cm-lb-close          { position: absolute; top: -16px; right: -16px; background: #b8973a; color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 18px; line-height: 36px; text-align: center; padding: 0; z-index: 2; }
.cm-lb-prev,
.cm-lb-next           { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(184,151,58,.7); color: #fff; border: none; border-radius: 50%; width: 46px; height: 46px; cursor: pointer; font-size: 24px; line-height: 46px; text-align: center; padding: 0; z-index: 2; }
.cm-lb-prev           { left: 20px; }
.cm-lb-next           { right: 20px; }

/* ═══════════════════════════════════════════════════
   HERO VIDEO BACKGROUND
   ═══════════════════════════════════════════════════ */
.cm-hero-video-bg     { overflow: hidden; }
.cm-hero-video-iframe,
.cm-hero-video-tag    { position: absolute; inset: 0; width: 100%; height: 100%; border: none; object-fit: cover; pointer-events: none; }
.cm-hero-video-iframe { transform: scale(1.15); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS WIDGET
   ═══════════════════════════════════════════════════ */
.cm-testi-wrap        { direction: rtl; }
.cm-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cm-testi-card        { background: #161616; border: 1px solid rgba(184,151,58,.22); border-radius: 14px; padding: 24px; position: relative; transition: border-color .3s, transform .3s; }
.cm-testi-card:hover  { border-color: #b8973a; transform: translateY(-4px); }
.cm-testi-quote       { font-size: 80px; line-height: .7; color: rgba(212,175,80,.15); font-family: Georgia,serif; position: absolute; top: 16px; right: 20px; user-select: none; }
.cm-testi-text        { color: #e8e0d0; font-size: 14px; line-height: 1.75; margin-bottom: 16px; position: relative; z-index: 1; font-family: 'Cairo',sans-serif; }
.cm-testi-stars       { color: #d4af50; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.cm-testi-author      { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(184,151,58,.15); padding-top: 14px; }
.cm-testi-avatar      { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #b8973a; flex-shrink: 0; }
.cm-testi-avatar-placeholder { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,#d4af50,#b8973a); display: flex; align-items: center; justify-content: center; color: #000; font-weight: 700; font-size: 20px; flex-shrink: 0; font-family: 'Cairo',sans-serif; }
.cm-testi-name        { color: #d4af50; font-weight: 700; font-size: 15px; font-family: 'Cairo',sans-serif; }
.cm-testi-role        { color: #9a9080; font-size: 12px; font-family: 'Cairo',sans-serif; }
.cm-testi-date        { color: rgba(154,144,128,.6); font-size: 11px; font-family: 'Cairo',sans-serif; }
@media (max-width: 900px) { .cm-testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cm-testimonials-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION WIDGET
   ═══════════════════════════════════════════════════ */
.cm-faq-wrap          { direction: rtl; max-width: 800px; margin: 0 auto; }
.cm-faq-item          { background: #161616; border: 1px solid rgba(184,151,58,.22); border-radius: 10px; margin-bottom: 10px; overflow: hidden; transition: border-color .3s; }
.cm-faq-item.cm-faq-open { border-color: #b8973a; }
.cm-faq-q-wrap        { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; gap: 12px; user-select: none; }
.cm-faq-q-wrap:hover .cm-faq-q { color: #d4af50; }
.cm-faq-q             { color: #e8e0d0; font-size: 15px; font-weight: 600; font-family: 'Cairo',sans-serif; flex: 1; transition: color .25s; }
.cm-faq-item.cm-faq-open .cm-faq-q { color: #d4af50; }
.cm-faq-icon          { color: #d4af50; font-size: 22px; font-weight: 300; line-height: 1; width: 24px; text-align: center; flex-shrink: 0; }
.cm-faq-a-wrap        { padding: 16px 20px 20px; background: rgba(184,151,58,.04); border-top: 1px solid rgba(184,151,58,.1); }
.cm-faq-a             { color: #9a9080; font-size: 14px; line-height: 1.8; margin: 0; font-family: 'Cairo',sans-serif; }

/* ═══════════════════════════════════════════════════
   COUNTDOWN WIDGET
   ═══════════════════════════════════════════════════ */
.cm-countdown-wrap    { text-align: center; direction: rtl; padding: 48px 20px; }
.cm-cd-title          { color: #d4af50; font-size: 18px; font-weight: 700; font-family: 'Cairo',sans-serif; margin-bottom: 8px; letter-spacing: .05em; }
.cm-cd-subtitle       { color: #9a9080; font-size: 14px; font-family: 'Cairo',sans-serif; margin-bottom: 32px; }
.cm-cd-boxes          { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.cm-cd-box            { background: #161616; border: 1px solid rgba(184,151,58,.25); border-radius: 12px; padding: 20px 24px; min-width: 80px; }
.cm-cd-num            { color: #d4af50; font-size: 52px; font-weight: 900; font-family: 'Cairo',sans-serif; line-height: 1; display: block; }
.cm-cd-lbl            { color: #9a9080; font-size: 12px; font-family: 'Cairo',sans-serif; margin-top: 6px; display: block; }
.cm-cd-sep            { color: #d4af50; font-size: 36px; font-weight: 700; line-height: 1; align-self: flex-start; margin-top: 16px; }
.cm-cd-cta            { display: inline-block; margin-top: 0; }
.cm-cd-expired        { color: #b8973a; font-size: 22px; font-weight: 700; font-family: 'Cairo',sans-serif; padding: 24px; border: 2px solid #b8973a; border-radius: 12px; display: inline-block; }
@media (max-width: 500px) {
  .cm-cd-num          { font-size: 38px; }
  .cm-cd-box          { padding: 14px 16px; min-width: 64px; }
  .cm-cd-sep          { font-size: 26px; margin-top: 12px; }
}

/* ═══════════════════════════════════════════════════
   FEATURED PACKAGE CARD
   ═══════════════════════════════════════════════════ */
.cm-fp-card           { background: #161616; border: 2px solid rgba(184,151,58,.4); border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; direction: rtl; transition: transform .3s, box-shadow .3s; }
.cm-fp-card::before   { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg,#d4af50,#b8973a); }
.cm-fp-card:hover     { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.cm-fp-badge          { position: absolute; top: 16px; left: 16px; background: #d4af50; color: #000; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; font-family: 'Cairo',sans-serif; }
.cm-fp-header         { text-align: center; margin-bottom: 20px; }
.cm-fp-icon           { font-size: 40px; display: block; margin-bottom: 8px; }
.cm-fp-name           { color: #e8e0d0; font-size: 22px; font-weight: 700; font-family: 'Cairo',sans-serif; }
.cm-fp-sub            { color: #9a9080; font-size: 13px; font-family: 'Cairo',sans-serif; margin-top: 4px; }
.cm-fp-price-block    { text-align: center; margin: 16px 0; }
.cm-fp-old-price      { color: rgba(154,144,128,.5); font-size: 16px; text-decoration: line-through; font-family: 'Cairo',sans-serif; margin-bottom: 4px; }
.cm-fp-price-row      { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.cm-fp-price-num      { color: #d4af50; font-size: 48px; font-weight: 900; font-family: 'Cairo',sans-serif; line-height: 1; }
.cm-fp-price-unit     { color: #9a9080; font-size: 14px; font-family: 'Cairo',sans-serif; }
.cm-fp-price-note     { color: rgba(154,144,128,.7); font-size: 12px; font-family: 'Cairo',sans-serif; margin-top: 4px; }
.cm-fp-divider        { height: 1px; background: linear-gradient(90deg,transparent,rgba(184,151,58,.3),transparent); margin: 20px 0; }
.cm-fp-desc           { color: #9a9080; font-size: 13px; line-height: 1.7; font-family: 'Cairo',sans-serif; margin-bottom: 18px; text-align: center; }
.cm-fp-features       { list-style: none; margin: 0 0 24px; padding: 0; }
.cm-fp-feat           { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; font-family: 'Cairo',sans-serif; border-bottom: 1px solid rgba(255,255,255,.04); }
.cm-fp-feat:last-child{ border-bottom: none; }
.cm-fp-feat.included  { color: #e8e0d0; }
.cm-fp-feat.excluded  { color: rgba(154,144,128,.5); }
.cm-fp-feat-icon      { width: 20px; text-align: center; font-size: 14px; flex-shrink: 0; }
.cm-fp-feat-icon.inc  { color: #25d366; }
.cm-fp-feat-icon.exc  { color: rgba(154,144,128,.4); }
.cm-fp-cta-wrap       { display: flex; flex-direction: column; gap: 12px; }
/* داخل Featured Package Card فقط – بعرض كامل */
.cm-fp-cta-wrap .cm-btn-whatsapp { display: block; width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════
   PACKAGE TABS WIDGET
   ═══════════════════════════════════════════════════ */
.cm-pkg-tabs-wrap     { direction: rtl; overflow: hidden; }

/* ── Tab Nav ── */
.cm-pkg-tabs-nav      { background: #0d0d0d; border-bottom: 1px solid rgba(184,151,58,0.18); position: sticky; top: 0; z-index: 10; }
.cm-pkg-tabs-nav-inner{ display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cm-pkg-tabs-nav-inner::-webkit-scrollbar { display: none; }
.cm-pkg-tab-btn       { flex-shrink: 0; background: transparent; border: none; border-bottom: 3px solid transparent; padding: 20px 28px; color: #9a9080; font-size: 15px; font-weight: 600; font-family: 'Cairo',sans-serif; cursor: pointer; transition: color .25s, border-color .25s, background .25s; white-space: nowrap; }
.cm-pkg-tab-btn:hover { color: #d4af50; }
.cm-pkg-tab-btn.active{ color: #d4af50; border-bottom-color: #d4af50; background: rgba(212,175,80,0.06); }

/* ── Tab Content ── */
.cm-pkg-tabs-content  { background: #111111; }
.cm-pkg-tab-panel     { display: none; padding: 60px 40px; max-width: 1200px; margin: 0 auto; }
.cm-pkg-tab-panel.active { display: block; animation: cm-tab-fade .3s ease; }

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

/* ── Sub-sections (تورتة، مشروبات) inside هاي تي ── */
.cm-pkg-sub-section   { margin-top: 56px; }
.cm-pkg-sub-title     { color: #d4af50; font-size: 18px; font-weight: 700; font-family: 'Cairo',sans-serif; margin: 0 0 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(184,151,58,0.2); }

/* ── Extras Grid ── */
.cm-extras-grid       { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.cm-extras-group      { background: #161616; border: 1px solid rgba(184,151,58,0.22); border-radius: 14px; overflow: hidden; transition: border-color .25s; }
.cm-extras-group:hover{ border-color: #b8973a; }
.cm-extras-group-header{ display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: rgba(184,151,58,0.06); border-bottom: 1px solid rgba(184,151,58,0.12); }
.cm-extras-group-icon { width: 36px; text-align: center; }
.cm-extras-group-icon i{ color: #d4af50; font-size: 20px; }
.cm-extras-group-title{ color: #d4af50; font-size: 16px; font-weight: 700; font-family: 'Cairo',sans-serif; }
.cm-extras-group-body { padding: 12px 0; }
.cm-extras-row        { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); font-family: 'Cairo',sans-serif; }
.cm-extras-row:last-child{ border-bottom: none; }
.cm-extras-row-name   { color: #e8e0d0; font-size: 14px; }
.cm-extras-row-price  { color: #d4af50; font-size: 14px; font-weight: 700; white-space: nowrap; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .cm-pkg-tab-btn     { padding: 16px 18px; font-size: 14px; }
  .cm-pkg-tab-panel   { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .cm-pkg-tab-btn     { padding: 14px 14px; font-size: 13px; }
  .cm-pkg-tab-panel   { padding: 30px 16px; }
  .cm-extras-grid     { grid-template-columns: 1fr; }
}
