/* ============================================
   Adonis Hub — Homepage (modern redesign)
   Scoped to body.home-page
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body.home-page {
  --home-bg: #0c0c0e;
  --home-surface: #141416;
  --home-elevated: #1c1c1f;
  --home-border: rgba(255, 255, 255, 0.08);
  --home-gold: #ffbd59;
  --home-gold-soft: rgba(255, 189, 89, 0.12);
  --home-text: #f4f4f5;
  --home-muted: #a1a1aa;
  --home-radius: 16px;
  --home-radius-lg: 24px;
  --home-max: 1200px;
  background: var(--home-bg) !important;
}

body.home-page,
body.home-page .home-main {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif !important;
}

html[lang="en"] body.home-page .home-hero__title,
html[lang="en"] body.home-page .home-section__title {
  font-family: 'Cinzel', serif !important;
}

/* ---- Hero ---- */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--ticker-h) + 48px) 24px 80px;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.75) 45%, rgba(12, 12, 14, 0.88) 100%),
    url('../images/69a331fd41d3aa572fd5363a_128-14.jpg') center / cover no-repeat;
  z-index: 0;
}

.home-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 189, 89, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 189, 89, 0.08), transparent 45%);
  pointer-events: none;
}

.home-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  z-index: 1;
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--home-max);
  margin: 0 auto;
  width: 100%;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--home-gold-soft);
  border: 1px solid rgba(255, 189, 89, 0.35);
  color: var(--home-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.home-hero__badge i {
  font-size: 0.85rem;
}

.home-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--home-text);
  margin: 0 0 20px;
  max-width: 14ch;
  letter-spacing: -0.02em;
}

.home-hero__title .highlight {
  color: var(--home-gold);
  display: block;
}

html[lang="ar"] .home-hero__title {
  max-width: none;
  line-height: 1.25;
}

.home-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--home-muted);
  max-width: 520px;
  margin: 0 0 36px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.home-btn--primary {
  background: var(--home-gold);
  color: #0c0c0e;
  box-shadow: 0 4px 24px rgba(255, 189, 89, 0.35);
}

.home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 189, 89, 0.45);
  background: #e6aa50;
}

.home-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--home-text);
  border: 1px solid var(--home-border);
}

.home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 189, 89, 0.3);
  color: var(--home-gold);
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--home-border);
}

.home-hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--home-gold);
  line-height: 1.2;
}

html[lang="en"] .home-hero__stat strong {
  font-family: 'Cinzel', serif;
}

.home-hero__stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

html[lang="ar"] .home-hero__stat span {
  letter-spacing: 0;
  font-size: 0.95rem;
}

body.home-page .home-hero .home-hero__stat .login-en,
body.home-page .home-hero .home-hero__stat .login-ar {
  color: rgba(255, 255, 255, 0.88) !important;
  opacity: 1 !important;
}

.home-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--home-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: homeBounce 2s ease-in-out infinite;
}

.home-hero__scroll i {
  color: var(--home-gold);
}

@keyframes homeBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero text colors override global login-en */
body.home-page .home-hero .login-en,
body.home-page .home-hero .login-ar {
  color: inherit !important;
}

/* ---- Trust bar ---- */
.home-trust {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  padding: 20px 24px;
}

.home-trust__inner {
  max-width: var(--home-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
}

.home-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--home-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.home-trust__item i {
  color: var(--home-gold);
  font-size: 1rem;
}

/* ---- Features ---- */
.home-features {
  padding: 72px 24px;
  max-width: var(--home-max);
  margin: 0 auto;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-feature {
  padding: 28px 24px;
  background: var(--home-elevated);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-feature:hover {
  border-color: rgba(255, 189, 89, 0.25);
  transform: translateY(-3px);
}

.home-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--home-gold-soft);
  color: var(--home-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.home-feature h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 8px;
}

html[lang="en"] .home-feature h3 {
  font-family: 'Cinzel', serif !important;
}

.home-feature p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--home-muted);
}

body.home-page .home-features .login-en,
body.home-page .home-features .login-ar {
  color: inherit !important;
}

/* ---- Sections ---- */
.home-section {
  padding: 64px 24px 80px;
}

.home-section--alt {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.home-section__head {
  max-width: var(--home-max);
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

html[lang="ar"] .home-section__head {
  flex-direction: row-reverse;
}

.home-section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 8px;
}

.home-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--home-text);
  margin: 0;
  line-height: 1.2;
}

.home-section__sub {
  margin: 8px 0 0;
  color: var(--home-muted);
  font-size: 1rem;
  max-width: 480px;
}

.home-section__link {
  color: var(--home-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.home-section__link:hover {
  gap: 12px;
}

html[lang="ar"] .home-section__link i {
  transform: scaleX(-1);
}

html[lang="ar"] .home-hero__actions {
  flex-direction: row-reverse;
}

html[lang="ar"] .home-hero__stats {
  flex-direction: row-reverse;
}

body.home-page .home-section .login-en,
body.home-page .home-section .login-ar {
  color: inherit !important;
}

.home-section__sub .login-en,
.home-section__sub .login-ar {
  color: var(--home-muted) !important;
}

/* ---- Trip grids ---- */
.trips-grid {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  list-style: none;
  padding: 0;
}

.trips-grid--featured {
  grid-template-columns: repeat(2, 1fr);
}

.trips-grid--recent {
  grid-template-columns: repeat(3, 1fr);
}

/* Hide webflow row floats on home */
body.home-page .trips-grid .w-col,
body.home-page .trips-grid [class*="w-col-"] {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

/* ---- Trip cards ---- */
.trip-card {
  background: var(--home-elevated);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 189, 89, 0.2);
}

.trip-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.trip-card--featured .trip-card__link {
  flex-direction: row;
}

.trip-card__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.trip-card--featured .trip-card__media {
  width: 48%;
  min-height: 280px;
}

.trip-card:not(.trip-card--featured) .trip-card__media {
  aspect-ratio: 16 / 10;
}

.trip-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.trip-card--featured .trip-card__img {
  min-height: 100%;
  position: absolute;
  inset: 0;
}

.trip-card:hover .trip-card__img {
  transform: scale(1.06);
}

.trip-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  max-width: calc(100% - 28px);
  backdrop-filter: blur(8px);
  z-index: 1;
}

html[lang="ar"] .trip-card__badge {
  left: auto;
  right: 14px;
}

.trip-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trip-card--featured .trip-card__body {
  width: 52%;
  justify-content: center;
}

.trip-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--home-text);
  margin: 0 0 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html[lang="en"] .trip-card__title {
  font-family: 'Cinzel', serif !important;
}

.trip-card__desc {
  font-size: 0.88rem;
  color: var(--home-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trip-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--home-border);
}

html[lang="ar"] .trip-card__meta {
  flex-direction: row-reverse;
}

.trip-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 189, 89, 0.4);
}

.trip-card__author {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--home-text);
}

.trip-card__date {
  display: block;
  font-size: 0.75rem;
  color: var(--home-muted);
}

.trip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

html[lang="ar"] .trip-card__footer {
  flex-direction: row-reverse;
}

.trip-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--home-gold);
}

.trip-card__btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--home-gold);
  color: #0c0c0e;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trip-card__btn:hover {
  background: #e6aa50;
  transform: scale(1.03);
}

.empty-programs {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  background: var(--home-elevated);
  border-radius: var(--home-radius-lg);
  border: 1px dashed var(--home-border);
  color: var(--home-muted);
}

.empty-programs i {
  font-size: 2.5rem;
  color: var(--home-gold);
  margin-bottom: 16px;
  display: block;
}

/* ---- CTA strip ---- */
.home-cta {
  margin: 0 24px 80px;
  max-width: calc(var(--home-max) - 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 48px 40px;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(135deg, rgba(255, 189, 89, 0.18) 0%, rgba(255, 189, 89, 0.04) 100%);
  border: 1px solid rgba(255, 189, 89, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 189, 89, 0.1), transparent 50%);
  pointer-events: none;
}

.home-cta__inner {
  position: relative;
  z-index: 1;
}

.home-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--home-text);
  margin: 0 0 12px;
}

html[lang="en"] .home-cta h2 {
  font-family: 'Cinzel', serif !important;
}

.home-cta p {
  color: var(--home-muted);
  margin: 0 0 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .home-cta .login-en,
body.home-page .home-cta .login-ar {
  color: inherit !important;
}

body.home-page .home-cta p .login-en,
body.home-page .home-cta p .login-ar {
  color: var(--home-muted) !important;
}

/* Footer on home — keep dark cohesive */
body.home-page #site-footer {
  border-top: 1px solid var(--home-border);
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .trips-grid--featured {
    grid-template-columns: 1fr;
  }

  .trip-card--featured .trip-card__link {
    flex-direction: column;
  }

  .trip-card--featured .trip-card__media,
  .trip-card--featured .trip-card__body {
    width: 100%;
  }

  .trip-card--featured .trip-card__media {
    min-height: 220px;
  }

  .trips-grid--recent {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
    padding: 90px 20px 72px;
  }

  .home-hero__scroll {
    display: none;
  }

  .home-hero__stats {
    gap: 20px;
  }

  .trips-grid--recent {
    grid-template-columns: 1fr;
  }

  .home-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  html[lang="ar"] .home-section__head {
    align-items: flex-end;
  }

  .home-cta {
    padding: 36px 24px;
    margin-bottom: 48px;
  }
}

/* ─────────────────────────────────────────────────────────
   SMART RTL / LTR FIXES
   Rule: Text content follows language. Layout elements that
   contain numbers, prices, icons, or are purely visual
   should NEVER flip — they always read left-to-right.
   ───────────────────────────────────────────────────────── */

/* Prices always LTR — "$99" never becomes "99$" */
.trip-card__price,
.program-price,
.mp-card__price {
  direction: ltr !important;
  unicode-bidi: plaintext;
}

/* Card footer layout never reverses — price left, button right */
html[lang="ar"] .trip-card__footer {
  flex-direction: row !important;
}

/* Badge (top-left overlay) stays at logical start */
.trip-card__badge {
  direction: ltr; /* icon always precedes text inside badge */
}

/* Section "View all" link arrow — always points right (LTR) */
html[lang="ar"] .home-section__link {
  flex-direction: row !important;
}
html[lang="ar"] .home-section__link i {
  transform: none !important; /* stop the scaleX(-1) flip */
}

/* Hero stats numbers never flip (numbers are inherently LTR) */
.home-hero__stat strong {
  direction: ltr;
  unicode-bidi: plaintext;
}

/* hero actions — keep natural LTR flow (primary btn then ghost) */
html[lang="ar"] .home-hero__actions {
  flex-direction: row !important;
}

/* hero stats bar — items read left-to-right even in AR */
html[lang="ar"] .home-hero__stats {
  flex-direction: row !important;
}

/* Trust bar items — icons always before text regardless of lang */
.home-trust__item {
  direction: ltr;
}
/* But text inside trust items follows the page language */
html[lang="ar"] .home-trust__item {
  direction: rtl;
}
html[lang="ar"] .home-trust__item i {
  order: -1; /* keep icon on the reading-start side */
}

/* Trip card meta (author row) — avatar always before name */
html[lang="ar"] .trip-card__meta {
  flex-direction: row !important;
}

/* Homepage category sections loaded by home-products.js */
.hp-section .home-section__head { max-width: var(--home-max); margin: 0 auto 32px; }
.hp-grid { max-width: var(--home-max); margin: 0 auto; }

/* ============================================================
   MERGED: custom-style-1 — Fonts, language dropdown, hero, footer
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'Cenzil';
  src: local('Cinzel'), url('https://fonts.gstatic.com/s/cinzel/v23/8vIJ7ww63mVu7gt79mT7.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

.button.w-button { background-color: #ffbd59 !important; color: #000000 !important; }
.button.w-button:hover { background-color: #e6aa50 !important; }
.submit-btn { color: #000000 !important; }
.login-en, .login-ar { color: inherit; }
.modal-content .login-en, .modal-content .login-ar,
.main-section .login-en, .main-section .login-ar { color: inherit !important; }
.nav-link.w-nav-link:hover { color: #ffbd59 !important; }

html[lang="en"], html[lang="en"] body { font-family: 'Cinzel', serif !important; }
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4,
html[lang="en"] h5, html[lang="en"] h6, html[lang="en"] p, html[lang="en"] a,
html[lang="en"] div, html[lang="en"] span, html[lang="en"] label,
html[lang="en"] input, html[lang="en"] button { font-family: 'Cinzel', serif; }

html[lang="ar"], html[lang="ar"] body { font-family: 'Cairo', sans-serif !important; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] h5, html[lang="ar"] h6, html[lang="ar"] p, html[lang="ar"] a,
html[lang="ar"] div, html[lang="ar"] span, html[lang="ar"] label,
html[lang="ar"] input, html[lang="ar"] button { font-family: 'Cairo', sans-serif; }

[class^="w-icon-"], [class*=" w-icon-"] { font-family: webflow-icons !important; }
.w-webflow-badge { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

body.home-page .main-section,
body.home-page #posts {
  background: transparent !important;
  padding: 0 !important;
}

@media screen and (max-width: 768px) { .hero-heading { font-size: 38px !important; line-height: 44px !important; letter-spacing: 1px !important; } .hero-subheading { font-size: 15px !important; line-height: 24px !important; } }
@media screen and (max-width: 600px) { .hero-heading { font-size: 30px !important; line-height: 38px !important; letter-spacing: 0.5px !important; } .hero-subheading { font-size: 14px !important; line-height: 22px !important; } }
@media screen and (max-width: 480px) { .hero-heading { font-size: 25px !important; line-height: 34px !important; letter-spacing: 0px !important; } .hero-subheading { font-size: 13px !important; line-height: 21px !important; margin-bottom: 22px !important; } }
@media screen and (max-width: 360px) { .hero-heading { font-size: 21px !important; line-height: 30px !important; } .hero-subheading { font-size: 12px !important; line-height: 19px !important; } }

#site-footer { background: #000; border-top: 1px solid rgba(255,189,89,0.15); padding: 36px 20px 28px; }
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.site-footer-inner > div:first-child { display: flex; flex-direction: column; align-items: center; }
.footer-social { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-logo-link img { height: 36px; width: auto; object-fit: contain; display: block; margin: 0 auto; opacity: 0.85; transition: opacity 0.2s; }
.footer-logo-link:hover img { opacity: 1; }
.footer-tagline { margin: 8px 0 0; font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.footer-social a[data-contact="whatsapp"]:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.45); color: #25d366; }
.footer-social a[data-contact="telegram"]:hover { background: rgba(34,158,217,0.18); border-color: rgba(34,158,217,0.45); color: #229ed9; }
.footer-social a[data-contact="facebook"]:hover { background: rgba(24,119,242,0.18); border-color: rgba(24,119,242,0.45); color: #1877f2; }
.footer-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.footer-nav-link { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; font-family: inherit; font-weight: 500; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 4px; transition: color 0.2s; }
.footer-nav-link:hover { color: #ffbd59; }
.footer-nav-link:not(:last-child)::after { content: '·'; margin-left: 6px; color: rgba(255,255,255,0.2); pointer-events: none; }
html[lang="ar"] .footer-nav-link:not(:last-child)::after { margin-left: 0; margin-right: 6px; }
.footer-copy { margin: 0; font-size: 0.75rem; color: rgba(255,255,255,0.3); font-family: inherit; line-height: 1.5; }
@media (max-width: 640px) {
  #site-footer { padding: 28px 16px 22px; }
  .site-footer-inner { gap: 16px; }
  .footer-social a { width: 48px; height: 48px; font-size: 1.25rem; }
  .footer-nav-link { font-size: 0.78rem; padding: 3px 7px; }
  .footer-copy { font-size: 0.7rem; }
}

/* ============================================================
   MERGED: custom-style-2 — Toast notifications
   ============================================================ */
#toast-container { position: fixed; top: calc(var(--header-h, 64px) + var(--ticker-h, 38px) + 12px); right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
html[lang="ar"] #toast-container { right: auto; left: 20px; }
.toast { min-width: 280px; max-width: 360px; padding: 16px 20px 16px 16px; border-radius: 12px; display: flex; align-items: flex-start; gap: 13px; box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12); pointer-events: all; animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; font-family: inherit; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.toast::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 12px 0 0 12px; }
html[lang="ar"] .toast::before { left: auto; right: 0; border-radius: 0 12px 12px 0; }
.toast.toast-success { background: rgba(15,25,20,0.95); color: #d1fae5; }
.toast.toast-success::before { background: #10b981; }
.toast.toast-error { background: rgba(25,10,12,0.95); color: #fee2e2; }
.toast.toast-error::before { background: #ef4444; }
.toast.toast-info { background: rgba(10,18,30,0.95); color: #dbeafe; }
.toast.toast-info::before { background: #ffbd59; }
.toast.toast-warning { background: rgba(25,20,5,0.95); color: #fef3c7; }
.toast.toast-warning::before { background: #f59e0b; }
.toast-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; width: 20px; text-align: center; line-height: 1; }
.toast-body { flex: 1; }
.toast-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; line-height: 1.3; }
.toast-msg { font-size: 0.85rem; opacity: 0.85; line-height: 1.4; }
.toast-close { background: none; border: none; cursor: pointer; color: inherit; opacity: 0.5; font-size: 1.1rem; padding: 0; flex-shrink: 0; transition: opacity 0.2s; align-self: flex-start; }
.toast-close:hover { opacity: 1; }
.toast-progress { position: absolute; bottom: 0; left: 4px; right: 0; height: 3px; background: rgba(255,255,255,0.15); border-radius: 0 0 12px 0; }
.toast-progress-bar { height: 100%; border-radius: inherit; transition: width linear; }
.toast.toast-success .toast-progress-bar { background: #10b981; }
.toast.toast-error .toast-progress-bar { background: #ef4444; }
.toast.toast-info .toast-progress-bar { background: #ffbd59; }
.toast.toast-warning .toast-progress-bar { background: #f59e0b; }
.toast.toast-hide { animation: toastOut 0.35s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(50px) scale(0.92); } to { opacity: 1; transform: translateX(0) scale(1); } }
html[lang="ar"] .toast { animation-name: toastInAr; }
@keyframes toastInAr { from { opacity: 0; transform: translateX(-50px) scale(0.92); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.88); } }

/* ============================================================
   MERGED: custom-style-3 — Site loader splash
   ============================================================ */
#site-loader { position: fixed; inset: 0; background: #000; z-index: 999999; overflow: hidden; transition: opacity 0.65s ease; }
#site-loader.hide { opacity: 0; pointer-events: none; }
#site-loader .loader-brand { position: fixed; inset: 0; margin: 0; padding: 0; pointer-events: none; }
#site-loader .site-intro-media { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); margin: 0; padding: 0; width: auto; height: auto; max-width: min(92vw, 560px); max-height: min(88vh, 560px); object-fit: contain; object-position: center center; }
#site-intro-video.site-intro-media { display: none; }
#site-intro-fallback.site-intro-fallback { display: block; }
#site-loader.is-video #site-intro-video { display: block; }
#site-loader.is-video #site-intro-fallback { display: none; }

/* ============================================================
   MERGED: custom-style-5 — Login/auth modal
   ============================================================ */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99999; display: none; justify-content: center; align-items: center; backdrop-filter: blur(4px); }
.modal-overlay.active { display: flex; }
.modal-content { background: #fff; width: 90%; max-width: 400px; border-radius: 12px; padding: 30px; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.2); text-align: center; font-family: inherit; color: #1e293b !important; }
.modal-content * { color: inherit; }
.modal-close { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; cursor: pointer; color: #64748b !important; }
.modal-title { font-size: 1.5rem; margin-bottom: 20px; color: #1e293b !important; font-weight: bold; }
.auth-btn { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #e2e8f0; margin-bottom: 10px; cursor: pointer; font-weight: bold; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.2s; background: white; color: #333 !important; }
.auth-btn:hover { background: #f8fafc; }
.auth-btn.google { border-color: #dd4b39; color: #dd4b39 !important; }
.auth-btn.facebook { border-color: #3b5998; color: #3b5998 !important; }
.divider { display: flex; align-items: center; text-align: center; margin: 15px 0; color: #64748b !important; font-size: 0.9rem; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #e2e8f0; }
.divider:not(:empty)::before { margin-right: .25em; }
.divider:not(:empty)::after { margin-left: .25em; }
.auth-input { width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 10px; font-size: 1rem; outline: none; box-sizing: border-box; color: #1e293b !important; background: #fff !important; }
.auth-input::placeholder { color: #94a3b8 !important; }
.auth-input:focus { border-color: #ffbd59; }
.submit-btn { width: 100%; padding: 12px; background: #ffbd59; color: white; border: none; border-radius: 8px; font-weight: bold; font-size: 1rem; cursor: pointer; }
.submit-btn:hover { background: #e6aa50; }
.toggle-auth { color: #ffbd59; cursor: pointer; font-size: 0.9rem; margin-top: 15px; display: inline-block; }
.auth-account-type { display: flex; gap: 8px; margin-bottom: 16px; }
.auth-type-btn { flex: 1; padding: 10px 8px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fff; color: #64748b; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; }
.auth-type-btn.is-active { border-color: #ffbd59; background: #fff8eb; color: #b45309; }
.auth-guide-signup { text-align: center; margin-top: 4px; }
.auth-guide-text { font-size: 0.9rem; line-height: 1.6; color: #475569; margin: 0 0 16px; }
.auth-guide-btn { display: flex; align-items: center; justify-content: center; text-decoration: none; box-sizing: border-box; }
.auth-error { color: #ef4444; font-size: 0.85rem; margin-bottom: 10px; display: none; }
.auth-terms-consent { text-align: start; margin-bottom: 12px; }
.auth-terms-label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 0.82rem; line-height: 1.5; color: #475569 !important; }
.auth-terms-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: #ffbd59; }
.auth-terms-text a { color: #ffbd59 !important; text-decoration: underline; }
html[lang="ar"] .modal-close { right: auto; left: 15px; }
html[lang="ar"] .login-en { display: none; }
html[lang="en"] .login-ar { display: none; }
html[lang="ar"] .modal-content, html[lang="ar"] .modal-content * { font-family: 'Cairo', sans-serif !important; }

/* ============================================================
   MERGED: custom-style-6 — Bookings modal bilingual
   ============================================================ */
html[lang="ar"] #bookings-modal .login-en { display: none !important; }
html[lang="ar"] #bookings-modal .login-ar { display: inline !important; }
html[lang="ar"] #bookings-list { direction: rtl; }

/* ============================================================
   MERGED: custom-style-7 — Booking profile modal
   ============================================================ */
#booking-profile-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 99000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
#booking-profile-modal.active { display: flex; }
.bp-modal-box { background: #111; border-radius: 20px; padding: 36px 32px 28px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.6); border: 1px solid rgba(255,189,89,0.2); position: relative; animation: bpIn 0.4s cubic-bezier(0.34,1.56,0.64,1); color: #fff !important; }
@keyframes bpIn { from { opacity: 0; transform: translateY(30px) scale(0.95) } to { opacity: 1; transform: none } }
.bp-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #aaa; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
html[lang="ar"] .bp-close { right: auto; left: 16px; }
.bp-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.bp-header { text-align: center; margin-bottom: 26px; }
.bp-header .bp-icon { width: 64px; height: 64px; background: linear-gradient(135deg,rgba(255,189,89,0.15),rgba(255,189,89,0.05)); border: 1px solid rgba(255,189,89,0.25); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.6rem; color: #ffbd59; }
.bp-header h2 { margin: 0 0 6px; font-size: 1.35rem; color: #fff; font-family: inherit; }
.bp-header p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: inherit; }
#booking-profile-modal .bp-field { margin-bottom: 18px; }
#booking-profile-modal .bp-field label { display: block !important; margin-bottom: 7px !important; font-size: 0.85rem !important; font-weight: 600 !important; color: rgba(255,255,255,0.85) !important; font-family: inherit !important; }
#booking-profile-modal .bp-field label span.req { color: #ffbd59 !important; margin-left: 3px; }
html[lang="ar"] #booking-profile-modal .bp-field label span.req { margin-left: 0; margin-right: 3px; }
#booking-profile-modal .bp-field input, #booking-profile-modal .bp-field select, #booking-profile-modal .bp-field textarea { width: 100% !important; padding: 12px 14px; background: rgba(255,255,255,0.08) !important; border: 1.5px solid rgba(255,255,255,0.15) !important; border-radius: 10px !important; color: #fff !important; font-size: 0.95rem !important; font-family: inherit !important; transition: border-color 0.2s, background 0.2s !important; outline: none !important; box-sizing: border-box !important; height: auto !important; margin-bottom: 0 !important; }
#booking-profile-modal .bp-field input::placeholder, #booking-profile-modal .bp-field textarea::placeholder { color: rgba(255,255,255,0.35) !important; }
#booking-profile-modal .bp-field input:focus, #booking-profile-modal .bp-field select:focus, #booking-profile-modal .bp-field textarea:focus { border-color: #ffbd59 !important; background: rgba(255,189,89,0.08) !important; box-shadow: 0 0 0 3px rgba(255,189,89,0.12) !important; }
#booking-profile-modal .bp-field select { cursor: pointer !important; -webkit-appearance: none !important; appearance: none !important; }
#booking-profile-modal .bp-field select option { background: #1a1a1a !important; color: #fff !important; }
#booking-profile-modal .bp-field textarea { resize: none !important; min-height: 70px !important; }
#booking-profile-modal .bp-payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
#booking-profile-modal .bp-pay-option { border: 2px solid rgba(255,255,255,0.15) !important; border-radius: 10px; padding: 12px 10px; cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s; background: rgba(255,255,255,0.05) !important; }
#booking-profile-modal .bp-pay-option:hover { border-color: rgba(255,189,89,0.5) !important; background: rgba(255,189,89,0.08) !important; }
#booking-profile-modal .bp-pay-option.selected { border-color: #ffbd59 !important; background: rgba(255,189,89,0.14) !important; }
#booking-profile-modal .bp-pay-option.bp-pay-disabled { opacity: 0.45 !important; cursor: not-allowed !important; pointer-events: none; position: relative; filter: grayscale(60%); }
.bp-stripe-note { margin: 12px 0 0; padding: 10px 12px; border-radius: 8px; background: rgba(255,189,89,0.1); border: 1px solid rgba(255,189,89,0.25); font-size: 0.82rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
.pay-coming-soon { display: inline-block; margin-top: 6px; background: linear-gradient(135deg,#f59e0b,#d97706); color: #000 !important; font-size: 0.68rem !important; font-weight: 800 !important; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; font-family: inherit !important; animation: pulseBadge 2s ease-in-out infinite; }
@keyframes pulseBadge { 0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); } 50% { box-shadow: 0 0 0 5px rgba(245,158,11,0); } }
#booking-profile-modal .bp-pay-option .pay-icon { font-size: 1.4rem; display: flex !important; align-items: center; justify-content: center; color: #ffbd59 !important; width: 40px; height: 40px; background: rgba(255,189,89,0.12) !important; border-radius: 10px; margin: 0 auto 8px; }
#booking-profile-modal .bp-pay-option .pay-icon i { font-size: 1.2rem; color: #ffbd59 !important; }
#booking-profile-modal .bp-pay-option .pay-label { font-size: 0.82rem !important; color: #ffffff !important; font-family: inherit !important; font-weight: 700 !important; line-height: 1.3 !important; display: block !important; }
#booking-profile-modal .bp-pay-option .pay-sub { font-size: 0.72rem !important; color: rgba(255,255,255,0.6) !important; font-family: inherit !important; margin-top: 3px; line-height: 1.3 !important; display: block !important; }
#bp-submit-btn { width: 100%; padding: 14px; background: linear-gradient(135deg,#ffbd59,#e6aa50); color: #000; border: none; border-radius: 12px; font-size: 1rem; font-weight: 800; cursor: pointer; font-family: inherit; margin-top: 8px; box-shadow: 0 4px 20px rgba(255,189,89,0.35); transition: transform 0.15s, box-shadow 0.15s; letter-spacing: 0.5px; }
#bp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(255,189,89,0.5); }
#bp-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
html[lang="ar"] .bp-modal-box { direction: rtl; text-align: right; }
html[lang="ar"] .bp-payment-grid { direction: rtl; }

/* ============================================================
   MERGED: custom-style-8 — Booking modal intl-tel-input
   ============================================================ */
#booking-profile-modal .iti { width: 100%; }
#booking-profile-modal .iti__tel-input { width: 100% !important; padding: 12px 14px 12px 100px !important; background: rgba(255,255,255,0.08) !important; border: 1.5px solid rgba(255,255,255,0.15) !important; border-radius: 10px !important; color: #fff !important; font-size: 0.95rem !important; font-family: inherit !important; outline: none !important; box-sizing: border-box !important; transition: border-color 0.2s, background 0.2s !important; }
#booking-profile-modal .iti__tel-input:focus { border-color: #ffbd59 !important; background: rgba(255,189,89,0.08) !important; box-shadow: 0 0 0 3px rgba(255,189,89,0.12) !important; }
#booking-profile-modal .iti__flag-container { left: 0; }
#booking-profile-modal .iti__selected-flag { background: rgba(255,255,255,0.06) !important; border-radius: 10px 0 0 10px; border-right: 1px solid rgba(255,255,255,0.12); padding: 0 10px; }
#booking-profile-modal .iti__selected-flag:hover, #booking-profile-modal .iti__selected-flag:focus { background: rgba(255,189,89,0.12) !important; }
#booking-profile-modal .iti__selected-dial-code { color: #ccc; font-size: 0.85rem; }
#booking-profile-modal .iti__dropdown-content { background: #1a1a1a !important; border: 1px solid rgba(255,255,255,0.12) !important; border-radius: 10px !important; box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important; overflow: hidden; }
#booking-profile-modal .iti__search-input { background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.15) !important; border-radius: 6px !important; color: #fff !important; padding: 8px 10px !important; font-size: 0.88rem !important; width: calc(100% - 20px) !important; margin: 8px !important; outline: none !important; font-family: inherit !important; }
#booking-profile-modal .iti__country { color: #ddd !important; padding: 8px 12px !important; }
#booking-profile-modal .iti__country:hover, #booking-profile-modal .iti__country.iti__highlight { background: rgba(255,189,89,0.12) !important; color: #ffbd59 !important; }
#booking-profile-modal .iti__dial-code { color: #888 !important; }
#booking-profile-modal .iti__divider { border-color: rgba(255,255,255,0.08) !important; }

/* ============================================================
   MERGED: custom-style-9 — Profile modal
   ============================================================ */
#profile-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 99000; align-items: flex-end; justify-content: center; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
#profile-modal.active { display: flex; }
@media (min-width: 640px) { #profile-modal { align-items: center; } .prof-modal-box { border-radius: 22px !important; max-height: 85vh !important; } }
.prof-modal-box { background: #0f0f0f; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; border-radius: 22px 22px 0 0; box-shadow: 0 -20px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.07); position: relative; animation: profSlideUp 0.38s cubic-bezier(0.34,1.56,0.64,1); color: #fff !important; }
@keyframes profSlideUp { from { opacity: 0; transform: translateY(40px) } to { opacity: 1; transform: none } }
.prof-header-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 0; }
.prof-header-title { font-size: 1rem; font-weight: 700; color: #fff !important; font-family: inherit; }
.prof-close-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #aaa; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.prof-close-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.prof-user-card { display: flex; align-items: center; gap: 16px; padding: 20px 20px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.prof-avatar-wrap { position: relative; flex-shrink: 0; }
#prof-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2.5px solid #ffbd59; }
.prof-avatar-online { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid #0f0f0f; }
.prof-user-info { flex: 1; min-width: 0; }
#prof-name { font-size: 1.05rem; font-weight: 700; color: #fff !important; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: inherit; }
#prof-email { font-size: 0.8rem; color: #94a3b8 !important; display: block; margin-top: 3px; font-family: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prof-logout-btn { flex-shrink: 0; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171 !important; font-size: 0.78rem; font-weight: 600; padding: 6px 12px; border-radius: 8px; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 5px; transition: background 0.2s; }
.prof-logout-btn:hover { background: rgba(239,68,68,0.2); }
.prof-bookings-header { padding: 16px 20px 10px; display: flex; align-items: center; gap: 8px; }
.prof-bookings-header span { font-size: 0.92rem; font-weight: 700; color: #fff !important; font-family: inherit; }
.prof-bookings-header .prof-count { background: rgba(255,189,89,0.15); border: 1px solid rgba(255,189,89,0.3); color: #ffbd59 !important; font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
#prof-bookings-list { padding: 0 14px 24px; }
html[lang="ar"] .prof-user-card { flex-direction: row-reverse; }
html[lang="ar"] .prof-header-bar { flex-direction: row-reverse; }
html[lang="ar"] .prof-bookings-header { flex-direction: row-reverse; }
html[lang="ar"] .prof-modal-box { direction: rtl; text-align: right; }

/* ============================================================
   Inner pages (About, Contact)
   ============================================================ */
body[data-page="about"],
body[data-page="contact"] {
  --page-bg: #0c0c0e;
  --page-surface: #141416;
  --page-elevated: #1c1c1f;
  --page-border: rgba(255, 255, 255, 0.08);
  --page-gold: #ffbd59;
  --page-gold-soft: rgba(255, 189, 89, 0.12);
  --page-text: #f4f4f5;
  --page-muted: #a1a1aa;
  --page-radius: 16px;
  --page-radius-lg: 22px;
  --page-max: 1080px;
  background: var(--page-bg) !important;
  color: var(--page-text);
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif !important;
}

html[lang="en"] body[data-page="about"] .page-hero h1,
html[lang="en"] body[data-page="contact"] .page-hero h1,
html[lang="en"] body[data-page="about"] .company-section h2 {
  font-family: 'Cinzel', serif !important;
}

.page-main {
  padding-top: calc(var(--header-h) + var(--ticker-h));
  min-height: 60vh;
}

.page-hero {
  position: relative;
  padding: 56px 24px 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--page-border, rgba(255,255,255,0.08));
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 189, 89, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(124, 58, 237, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max, 1080px);
  margin: 0 auto;
  text-align: center;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--page-gold-soft, rgba(255,189,89,0.12));
  border: 1px solid rgba(255, 189, 89, 0.22);
  color: var(--page-gold, #ffbd59);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--page-text, #f4f4f5);
}

.page-lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--page-muted, #a1a1aa);
}

.page-content { padding: 48px 24px 72px; }
.page-content .w-container { max-width: var(--page-max, 1080px); margin: 0 auto; }

.story-block {
  max-width: 780px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  border-radius: var(--page-radius-lg, 22px);
  background: var(--page-surface, #141416);
  border: 1px solid var(--page-border);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--page-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.value-card {
  padding: 28px 22px;
  border-radius: var(--page-radius, 16px);
  background: var(--page-elevated, #1c1c1f);
  border: 1px solid var(--page-border);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.value-card:hover {
  border-color: rgba(255, 189, 89, 0.25);
  transform: translateY(-3px);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-gold-soft);
  color: var(--page-gold);
  font-size: 1.25rem;
}

.value-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--page-text); }
.value-card p { margin: 0; font-size: 0.9rem; line-height: 1.65; color: var(--page-muted); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-item {
  padding: 24px 16px;
  border-radius: var(--page-radius, 16px);
  background: linear-gradient(135deg, rgba(255,189,89,0.1), rgba(255,189,89,0.02));
  border: 1px solid rgba(255, 189, 89, 0.18);
  text-align: center;
}

.stat-item__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--page-gold);
  line-height: 1.1;
}

.stat-item__label { display: block; margin-top: 6px; font-size: 0.85rem; color: var(--page-muted); }

.company-section { margin-top: 8px; }
.company-section__head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.company-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--page-gold); margin: 0 0 8px; }
.company-section h2 { margin: 0 0 12px; font-size: 1.75rem; color: var(--page-text); }
.company-intro { margin: 0; color: var(--page-muted); line-height: 1.7; }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.company-card {
  padding: 24px;
  border-radius: var(--page-radius, 16px);
  background: var(--page-surface);
  border: 1px solid var(--page-border);
}
.company-card h3 { margin: 0 0 16px; font-size: 1rem; color: var(--page-gold); }
.company-details { margin: 0; }
.company-details div { margin-bottom: 14px; }
.company-details div:last-child { margin-bottom: 0; }
.company-details dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--page-muted); margin-bottom: 4px; }
.company-details dd { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--page-text); }
.company-details a { color: var(--page-gold); text-decoration: none; }
.company-details a:hover { text-decoration: underline; }
.company-legal-note { text-align: center; font-size: 0.88rem; color: var(--page-muted); line-height: 1.65; }
.company-legal-note a { color: var(--page-gold); }

.contact-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 36px;
  max-width: 560px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #86efac;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  border-radius: var(--page-radius-lg, 22px);
  background: var(--page-surface, #141416);
  border: 1px solid var(--page-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--page-gold);
}

html[lang="ar"] .contact-card::after {
  content: '\f060';
  right: auto;
  left: 22px;
  transform: translateX(6px);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.contact-card:hover::after { opacity: 1; transform: translateX(0); }

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.contact-card h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; color: var(--page-text); }
.contact-card p { margin: 0 0 14px; font-size: 0.88rem; line-height: 1.55; color: var(--page-muted); flex: 1; }
.contact-card__handle { font-size: 0.82rem; font-weight: 600; color: var(--page-gold); }

.contact-card--whatsapp:hover { border-color: rgba(37, 211, 102, 0.4); }
.contact-card--whatsapp .contact-card__icon { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.contact-card--telegram:hover { border-color: rgba(34, 158, 217, 0.4); }
.contact-card--telegram .contact-card__icon { background: rgba(34, 158, 217, 0.12); color: #229ed9; }
.contact-card--facebook:hover { border-color: rgba(24, 119, 242, 0.4); }
.contact-card--facebook .contact-card__icon { background: rgba(24, 119, 242, 0.12); color: #1877f2; }

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-card {
  padding: 24px 26px;
  border-radius: var(--page-radius, 16px);
  background: var(--page-elevated, #1c1c1f);
  border: 1px solid var(--page-border);
}

.contact-info-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--page-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card h3 i { color: var(--page-gold); font-size: 0.95rem; }

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-list li { display: flex; flex-direction: column; gap: 3px; }
.contact-info-list span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--page-muted);
}

.contact-info-list a,
.contact-info-list strong { font-size: 0.92rem; color: var(--page-text); text-decoration: none; font-weight: 500; }
.contact-info-list a:hover { color: var(--page-gold); }

.contact-hours p { margin: 0; font-size: 0.9rem; line-height: 1.65; color: var(--page-muted); }

.contact-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--page-radius-lg, 22px);
  background: linear-gradient(135deg, rgba(255, 189, 89, 0.14) 0%, rgba(255, 189, 89, 0.04) 100%);
  border: 1px solid rgba(255, 189, 89, 0.22);
}

.contact-cta-strip p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--page-muted);
}

.contact-cta-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--page-gold, #ffbd59);
  color: #0c0c0e;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-cta-strip a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 189, 89, 0.35);
}

html[lang="ar"] .contact-cta-strip { flex-direction: row-reverse; text-align: right; }
html[lang="ar"] .contact-card { align-items: flex-end; text-align: right; }
html[lang="ar"] .contact-info-card { text-align: right; }
html[lang="ar"] .contact-info-card h3 { flex-direction: row-reverse; }

@media (max-width: 900px) {
  .values-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .company-grid,
  .contact-info-row,
  .stats-row { grid-template-columns: 1fr; }
  .contact-cta-strip { flex-direction: column; align-items: stretch; text-align: center; }
  .contact-cta-strip a { justify-content: center; }
}

@media (max-width: 640px) {
  .page-hero { padding: 40px 18px 36px; }
  .page-content { padding: 36px 18px 56px; }
  .story-block { padding: 22px 20px; }
}
