/* ============================================================
   PLATFORM CSS — Public-facing pages (Landing, Home, Detail)
   ============================================================ */

:root {
  --p-blue: #1C1C1C;
  --p-blue-lt: #2A2A2A;
  --p-gold: #FF6A00;
  --p-gold-lt: #FF8C00;
  --p-gold-dim: rgba(255,106,0,.06);
  --p-accent: #FFD400;
  --p-bg: #f6f5f2;
  --p-surface: #fff;
  --p-text: #141422;
  --p-text-lt: #4d5668;
  --p-text-xs: #8490a3;
  --p-border: #e5e6ec;
  --p-red: #ef4444;
  --p-green: #22c55e;
  --p-orange: #f59e0b;
  --p-r: 20px;
  --p-r-sm: 14px;
  --p-sh: 0 1px 3px rgba(0,0,0,.02), 0 6px 24px rgba(0,0,0,.05);
  --p-sh-lg: 0 8px 30px rgba(0,0,0,.06), 0 24px 64px rgba(0,0,0,.1);
  --p-tr: all .35s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--p-bg);
  color: var(--p-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── PRELOADER ── */
#platformPreloader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: #030303;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1),
              filter .8s cubic-bezier(.4,0,.2,1);
}
#platformPreloader::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 25% 40%, rgba(255,106,0,.06), transparent),
    radial-gradient(ellipse 50% 60% at 75% 60%, rgba(255,140,0,.04), transparent);
}
#platformPreloader.done {
  opacity: 0; transform: scale(1.1); filter: blur(10px); pointer-events: none;
}
.pl-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pl-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,106,0,.3); animation: plParticle 6s ease-in-out infinite;
}
.pl-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 5s; }
.pl-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: -1s; animation-duration: 7s; width: 4px; height: 4px; }
.pl-particle:nth-child(3) { top: 40%; left: 50%; animation-delay: -2s; animation-duration: 6s; width: 2px; height: 2px; background: rgba(255,140,0,.25); }
.pl-particle:nth-child(4) { top: 80%; left: 25%; animation-delay: -3s; animation-duration: 8s; }
.pl-particle:nth-child(5) { top: 30%; left: 70%; animation-delay: -4s; animation-duration: 5.5s; width: 5px; height: 5px; background: rgba(255,106,0,.15); }
.pl-particle:nth-child(6) { top: 70%; left: 45%; animation-delay: -2.5s; animation-duration: 7.5s; width: 2px; height: 2px; }
@keyframes plParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .3; }
  25% { transform: translate(30px, -40px) scale(1.5); opacity: .8; }
  50% { transform: translate(-20px, -80px) scale(1); opacity: .4; }
  75% { transform: translate(40px, -30px) scale(1.3); opacity: .7; }
}
.pl-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 24px; animation: plFade 1s cubic-bezier(.4,0,.2,1) both;
  position: relative;
}
@keyframes plFade { from { opacity:0; transform:translateY(30px) scale(.94) } to { opacity:1; transform:translateY(0) scale(1) } }
.pl-brand-ring {
  width: 220px; height: 220px; border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  animation: plFloat 5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.pl-brand-ring::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(255,106,0,.4); border-right-color: rgba(255,106,0,.15);
  animation: plRingSpin 3s linear infinite;
}
@keyframes plRingSpin { to { transform: rotate(360deg); } }
@keyframes plFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.pl-brand-ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.pl-brand-name {
  font-family: 'Tajawal', sans-serif; font-size: 2.1rem; font-weight: 400;
  color: #fff; letter-spacing: .12em; text-transform: lowercase;
  background: linear-gradient(135deg, #fff 30%, #FF6A00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pl-brand-sub {
  font-size: .68rem; color: rgba(255,255,255,.3); font-weight: 500;
  margin-top: -12px; letter-spacing: .08em; text-transform: uppercase;
}
.pl-progress-wrap {
  width: 140px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.06); overflow: hidden;
  margin-top: 4px;
}
.pl-progress-bar {
  height: 100%; width: 30%; border-radius: 3px;
  background: linear-gradient(90deg, #FF6A00, #FF8C00);
  animation: plProgress 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,106,0,.3);
}
@keyframes plProgress {
  0% { width: 0; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

/* Generic spinner (used on detail/profile/orders pages) */
.pl-spinner {
  width: 32px; height: 32px; border: 2.5px solid rgba(0,0,0,.06);
  border-top-color: #FF6A00; border-radius: 50%;
  animation: plSpinGeneric .7s linear infinite;
}
@keyframes plSpinGeneric { to { transform: rotate(360deg) } }

/* ── NAVBAR ── */
.platform-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0 28px; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.platform-nav.nav-scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.platform-nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,106,0,.2) 50%, transparent 90%);
  opacity: 0; transition: opacity .4s;
}
.platform-nav.nav-scrolled::after { opacity: 1; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
  width: 76px; height: 76px; border-radius: 16px; object-fit: contain;
  border: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
  transition: all .3s;
}
.nav-logo:hover img { filter: drop-shadow(0 4px 12px rgba(255,106,0,.25)); transform: scale(1.05); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn {
  padding: 9px 20px; border-radius: 50px; font-family: 'Tajawal', sans-serif;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px; border: none;
}
.nav-btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7);
}
.nav-btn-outline:hover {
  border-color: rgba(255,106,0,.5); color: #fff; background: rgba(255,106,0,.1);
}
.platform-nav.nav-scrolled .nav-btn-outline {
  border-color: var(--p-border); color: var(--p-text-lt);
}
.platform-nav.nav-scrolled .nav-btn-outline:hover {
  border-color: rgba(255,106,0,.4); color: var(--p-blue); background: rgba(255,106,0,.04);
}
/* Nav user elements: adapt to scrolled mode */
.platform-nav.nav-scrolled #navUserName { color: var(--p-blue) !important; }
.platform-nav.nav-scrolled #navUserMenu .fa-chevron-down { color: var(--p-text-xs) !important; }
.platform-nav.nav-scrolled #navSearchInput {
  border-color: var(--p-border) !important; background: rgba(0,0,0,.03) !important; color: var(--p-text) !important;
}
.platform-nav.nav-scrolled #navSearchInput::placeholder { color: var(--p-text-xs) !important; }
.platform-nav.nav-scrolled .fa-search { color: var(--p-text-xs) !important; }
/* Ensure primary button stays visible on both backgrounds */
.platform-nav.nav-scrolled .nav-btn-primary {
  background: linear-gradient(135deg, #FF6A00, #FF8C00); color: #fff;
}
.nav-btn-primary {
  background: linear-gradient(135deg, #FF6A00, #FF8C00); color: #fff;
  box-shadow: 0 2px 10px rgba(255,106,0,.25);
  position: relative; overflow: hidden;
}
.nav-btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s;
}
.nav-btn-primary:hover::before { left: 150%; }
.nav-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,106,0,.35);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(165deg, #020202 0%, #0a0a0a 40%, #080604 100%);
  padding: 130px 24px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 10% 20%, rgba(255,106,0,.09), transparent 50%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(255,140,0,.06), transparent 45%),
    radial-gradient(circle at 50% 110%, rgba(255,106,0,.05), transparent 35%),
    radial-gradient(circle at 60% 40%, rgba(255,212,0,.02), transparent 40%);
  animation: heroGlow 14s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: .4; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.08) rotate(.5deg); }
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--p-bg), transparent);
  z-index: 1;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px); animation: heroOrbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(255,106,0,.12), transparent 65%);
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(255,140,0,.08), transparent 65%);
  animation-delay: -6s;
}
@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.1); }
  66% { transform: translate(-20px,30px) scale(.95); }
}
.hero-content {
  position: relative; max-width: 740px; margin: 0 auto; z-index: 2;
  animation: heroContentIn .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero h1 {
  font-family: 'Tajawal', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 24px; letter-spacing: -.03em;
}
.hero h1 span {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 40%, #FFD400 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}
.hero p {
  font-size: .88rem; color: rgba(255,255,255,.35); max-width: 540px;
  margin: 0 auto 44px; line-height: 1.9;
  font-weight: 400;
}
.hero-search {
  display: flex; max-width: 560px; margin: 0 auto;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 60px; overflow: hidden;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.03);
}
.hero-search:focus-within {
  border-color: rgba(255,106,0,.35); background: rgba(255,255,255,.06);
  box-shadow: 0 4px 50px rgba(255,106,0,.08), 0 0 0 3px rgba(255,106,0,.05);
}
.hero-search input {
  flex: 1; padding: 18px 28px; background: none; border: none;
  color: #fff; font-family: 'Tajawal', sans-serif; font-size: .78rem; outline: none;
}
.hero-search input::placeholder { color: rgba(255,255,255,.2); }
.hero-search button {
  padding: 17px 34px; background: linear-gradient(135deg, #FF6A00, #FF8C00); border: none;
  color: #fff; font-weight: 700; font-size: .86rem; cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border-radius: 0 60px 60px 0; position: relative; overflow: hidden;
}
.hero-search button::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s;
}
.hero-search button:hover::before { left: 150%; }
.hero-search button:hover { box-shadow: 0 0 20px rgba(255,106,0,.3); }
.hero-tags { display: flex; gap: 8px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.hero-tag {
  padding: 6px 16px; border-radius: 50px; font-size: .72rem; font-weight: 600;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.38); cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1); border: 1px solid rgba(255,255,255,.06);
  letter-spacing: .01em;
}
.hero-tag:hover, .hero-tag.active {
  background: rgba(255,106,0,.1); color: #FF8C00; border-color: rgba(255,106,0,.25);
  box-shadow: 0 2px 12px rgba(255,106,0,.08);
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Tajawal', sans-serif; font-size: .95rem; font-weight: 800;
  color: var(--p-blue); margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
  letter-spacing: -.01em;
}
.section-title i {
  color: #FF6A00; font-size: 1rem;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,106,0,.1), rgba(255,140,0,.04));
  border-radius: 12px; box-shadow: 0 2px 8px rgba(255,106,0,.08);
}
.section-subtitle { font-size: .86rem; color: var(--p-text-lt); margin-top: -16px; margin-bottom: 26px; }

/* ── CLRCBC GRID ── */
.places-section { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.places-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}

/* ── PLACE CARD — Luxe Premium 2026 ── */
.place-card {
  background: #fff; border-radius: 24px;
  overflow: hidden; border: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.02), 0 4px 16px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.03);
  transition: all .55s cubic-bezier(.22,1,.36,1); cursor: pointer;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  animation: cardIn .7s cubic-bezier(.22,1,.36,1) both;
  position: relative;
}
.place-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 8px 20px rgba(255,106,0,.03);
}
@keyframes cardIn { from { opacity:0; transform:translateY(36px) scale(.96) } to { opacity:1; transform:translateY(0) scale(1) } }
.place-card-banner {
  height: 220px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.place-card-banner video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.place-card-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.25) 40%, transparent 100%);
}
.place-card-logo {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  width: 54px; height: 54px; border-radius: 16px; object-fit: cover;
  border: 3px solid rgba(255,255,255,.95);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(255,106,0,0);
  background: #fff; transition: all .45s cubic-bezier(.22,1,.36,1);
}
.place-card:hover .place-card-logo {
  box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 0 3px rgba(255,106,0,.2);
  transform: scale(1.08);
}
.place-card-promo {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff;
  padding: 6px 16px; border-radius: 50px; font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 4px 18px rgba(239,68,68,.4);
  letter-spacing: .02em;
}
.place-card-type {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(0,0,0,.5); color: rgba(255,255,255,.95);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 6px 16px; border-radius: 50px; font-size: .66rem; font-weight: 600;
  letter-spacing: .04em; border: 1px solid rgba(255,255,255,.06);
  text-transform: uppercase;
}
.place-card-banner-info {
  position: absolute; bottom: 18px; left: 78px; right: 16px; z-index: 2;
}
.place-card-banner-info .place-card-name {
  font-family: 'Tajawal', sans-serif; font-size: .88rem; font-weight: 800;
  color: #fff; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,.4);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.place-card-banner-info .place-card-type-label {
  font-size: .72rem; color: #FF8C00; font-weight: 600; margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.place-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.place-card-name {
  font-family: 'Tajawal', sans-serif; font-size: .88rem; font-weight: 800;
  color: var(--p-blue); margin-bottom: 6px; line-height: 1.3; letter-spacing: -.01em;
}
.place-card-bio {
  font-size: .82rem; color: var(--p-text-lt); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: auto;
}
.place-card-meta {
  display: flex; align-items: center; gap: 14px; font-size: .76rem; color: var(--p-text-xs);
  flex-wrap: wrap; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(0,0,0,.04);
}
.place-card-meta i { color: #FF6A00; width: 14px; text-align: center; }
.place-card-rating {
  display: flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, rgba(255,106,0,.07), rgba(255,140,0,.03));
  padding: 5px 14px; border-radius: 50px; border: 1px solid rgba(255,106,0,.06);
}
.place-card-rating .stars { color: #FF6A00; font-size: .7rem; }
.place-card-rating strong { color: var(--p-blue); font-weight: 700; font-size: .82rem; }
.place-card-distance { display: flex; align-items: center; gap: 4px; }

/* ── PLACE DETAIL PAGE — Luxe Premium ── */
.detail-banner {
  height: 420px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.detail-banner video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.detail-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 10%, rgba(2,2,2,.35) 45%, rgba(2,2,2,.92));
}
.detail-banner-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 36px;
  z-index: 2; display: flex; align-items: flex-end; gap: 26px;
  max-width: 1200px; margin: 0 auto;
}
.detail-logo {
  width: 92px; height: 92px; border-radius: 24px; object-fit: cover;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 0 rgba(255,106,0,0);
  flex-shrink: 0; background: #fff;
  transition: all .45s cubic-bezier(.22,1,.36,1);
}
.detail-logo:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 0 4px rgba(255,106,0,.15);
  transform: scale(1.04);
}
.detail-info h1 {
  font-family: 'Tajawal', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.6); line-height: 1.1;
  letter-spacing: -.02em;
}
.detail-info .type-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); color: #FF8C00;
  padding: 8px 20px; border-radius: 50px; font-size: .74rem; font-weight: 700;
  margin-top: 12px; backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.06); letter-spacing: .04em; text-transform: uppercase;
}
.detail-body { max-width: 1200px; margin: 28px auto 0; padding: 0 24px 40px; position: relative; z-index: 3; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 26px; }
.detail-main { display: flex; flex-direction: column; gap: 24px; }
.detail-aside { display: flex; flex-direction: column; gap: 24px; }
.detail-panel {
  background: #fff; border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.02), 0 4px 20px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.02);
  border: none;
  overflow: hidden; transition: all .5s cubic-bezier(.22,1,.36,1);
}
.detail-panel:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,.08), 0 2px 8px rgba(255,106,0,.02);
  transform: translateY(-2px);
}
.detail-panel-header {
  padding: 22px 26px; border-bottom: 1px solid rgba(0,0,0,.04);
  font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--p-blue);
  display: flex; align-items: center; gap: 12px;
  background: rgba(248,249,252,.6);
}
.detail-panel-header i {
  color: #FF6A00; font-size: .88rem;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,106,0,.08), rgba(255,140,0,.03));
  border-radius: 10px; box-shadow: 0 2px 6px rgba(255,106,0,.06);
}
.detail-panel-body { padding: 26px; }

/* Album grid */
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.album-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px;
  cursor: pointer; transition: all .35s cubic-bezier(.22,1,.36,1);
}
.album-grid img:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* Reviews */
.review-item { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.04); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #1C1C1C, #2A2A2A);
  color: #FF6A00; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--p-blue); }
.review-date { font-size: .7rem; color: var(--p-text-xs); }
.review-stars { color: #FF6A00; font-size: .78rem; margin-bottom: 5px; }
.review-text { font-size: .86rem; color: var(--p-text-lt); line-height: 1.75; }

/* Map */
.detail-map {
  width: 100%; height: 260px; border-radius: 16px; background: var(--p-border);
  overflow: hidden; position: relative; border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.detail-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 16px; }

/* Menu CTA */
.menu-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px; border: none; border-radius: 14px;
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: #fff; font-family: 'Tajawal', sans-serif; font-size: 1.05rem;
  font-weight: 700; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(255,106,0,.25); text-decoration: none;
  position: relative; overflow: hidden;
}
.menu-cta-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .6s;
}
.menu-cta-btn:hover::before { left: 150%; }
.menu-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,106,0,.35);
}

/* ── FOOTER ── */
.platform-footer {
  background: #030303; color: rgba(255,255,255,.5);
  padding: 72px 24px 0; font-size: .8rem;
  margin-top: 0; position: relative; overflow: hidden;
}
.platform-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,106,0,.4) 50%, transparent 95%);
}
.footer-glow {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,106,0,.05), transparent 65%);
  pointer-events: none; filter: blur(30px);
  animation: footerGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes footerGlowPulse {
  0% { opacity: .5; } 100% { opacity: 1; }
}
.platform-footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: all .3s cubic-bezier(.4,0,.2,1); }
.platform-footer a:hover { color: #FF6A00; }

/* ── CLIENT AUTH MODAL ── */
.auth-modal-overlay {
  position: fixed; inset: 0; background: rgba(2,2,2,.6);
  backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3);
  z-index: 9999; display: none;
  align-items: center; justify-content: center;
}
.auth-modal-overlay.open { display: flex; }
.auth-modal {
  background: #fff; border-radius: 28px; padding: 44px 40px;
  max-width: 430px; width: 92%;
  box-shadow: 0 32px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  animation: modalIn .45s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.auth-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #FF6A00, #FF8C00, #FFD400);
}
@keyframes modalIn { from { opacity:0; transform:scale(.92) translateY(20px) } to { opacity:1; transform:scale(1) translateY(0) } }
.auth-modal h2 {
  font-family: 'Tajawal', sans-serif; font-size: .85rem; font-weight: 800;
  color: var(--p-blue); text-align: center; margin-bottom: 24px;
}
.auth-modal .form-group { margin-bottom: 16px; }
.auth-modal .form-group label {
  display: block; font-size: .78rem; font-weight: 600; color: var(--p-text-lt);
  margin-bottom: 6px; letter-spacing: .02em; text-transform: uppercase;
}
.auth-modal .form-group input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--p-border);
  border-radius: 14px; font-size: .76rem; font-family: 'Tajawal', sans-serif;
  outline: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  background: rgba(0,0,0,.01);
}
.auth-modal .form-group input:focus {
  border-color: #FF6A00; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,106,0,.08);
}
.auth-btn-google {
  width: 100%; padding: 13px; border: 1.5px solid var(--p-border); border-radius: 12px;
  background: #fff; font-family: 'Tajawal', sans-serif; font-size: .76rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .3s cubic-bezier(.4,0,.2,1); color: var(--p-text);
}
.auth-btn-google:hover {
  border-color: rgba(255,106,0,.3); background: rgba(255,106,0,.02);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transform: translateY(-1px);
}
.auth-divider {
  text-align: center; font-size: .72rem; color: var(--p-text-xs);
  margin: 18px 0; position: relative; letter-spacing: .05em; text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 38%; height: 1px;
  background: linear-gradient(90deg, var(--p-border), transparent);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; background: linear-gradient(270deg, var(--p-border), transparent); }
.auth-submit {
  width: 100%; padding: 14px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: #fff; font-family: 'Tajawal', sans-serif; font-size: .9rem;
  font-weight: 700; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  box-shadow: 0 3px 16px rgba(255,106,0,.2);
}
.auth-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s;
}
.auth-submit:hover::before { left: 150%; }
.auth-submit:hover {
  box-shadow: 0 6px 28px rgba(255,106,0,.35);
  transform: translateY(-1px);
}
.auth-switch { text-align: center; margin-top: 16px; font-size: .82rem; color: var(--p-text-lt); }
.auth-switch a { color: #FF6A00; font-weight: 600; cursor: pointer; text-decoration: none; }

/* ── CURRENCY BADGE ── */
.place-card-currency {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, rgba(255,106,0,.05), rgba(255,140,0,.03));
  color: var(--p-text); font-weight: 600;
  padding: 4px 12px; border-radius: 50px; font-size: .68rem;
  border: 1px solid rgba(255,106,0,.08);
}

/* ── APP DOWNLOAD SECTION ── */
.app-section {
  background: #050505; padding: 100px 24px; position: relative; overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(255,106,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(255,140,0,.05) 0%, transparent 70%),
    radial-gradient(circle at 50% 110%, rgba(255,106,0,.04) 0%, transparent 50%);
  pointer-events: none;
}
.app-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,106,0,.25) 50%, transparent 90%);
}
.app-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: appGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes appGlowPulse {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}
.app-glow-1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: radial-gradient(ellipse, rgba(255,106,0,.1), transparent 65%);
  filter: blur(40px);
}
.app-glow-2 {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(ellipse, rgba(255,140,0,.08), transparent 65%);
  filter: blur(50px); animation-delay: -3s;
}
.app-inner {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center;
  position: relative;
}
.app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,106,0,.08); color: #FF8C00; font-size: .72rem; font-weight: 700;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 24px;
  border: 1px solid rgba(255,106,0,.12); letter-spacing: .04em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.app-badge i { font-size: .65rem; }
.app-text h2 {
  font-family: 'Tajawal', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: #fff; margin-bottom: 18px; line-height: 1.25; letter-spacing: -.01em;
}
.app-text > p {
  color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 36px;
  font-size: .92rem; max-width: 480px;
}
.app-steps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px;
}
.app-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px; padding: 18px 16px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(4px);
  position: relative; overflow: hidden;
}
.app-step::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,106,0,.06), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.app-step:hover {
  border-color: rgba(255,106,0,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,106,0,.08);
}
.app-step:hover::before { opacity: 1; }
.app-step-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,106,0,.18), rgba(255,140,0,.06));
  display: flex; align-items: center; justify-content: center;
  color: #FF6A00; font-size: .88rem; position: relative; z-index: 1;
  transition: all .4s;
}
.app-step:hover .app-step-icon {
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: #fff; box-shadow: 0 4px 16px rgba(255,106,0,.3);
}
.app-step-text { position: relative; z-index: 1; }
.app-step-text strong {
  display: block; color: rgba(255,255,255,.9); font-size: .82rem; margin-bottom: 3px;
  font-weight: 600;
}
.app-step-text span {
  font-size: .72rem; color: rgba(255,255,255,.32); line-height: 1.5;
}
.app-cta-row {
  display: flex; align-items: center; gap: 25px; flex-wrap: wrap;
}
.app-install-btn {
  padding: 14px 36px; border: none; border-radius: 50px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 100%); color: #fff;
  font-family: 'Tajawal', sans-serif; font-size: .76rem; font-weight: 700;
  cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 6px 26px rgba(255,106,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.app-install-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s; pointer-events: none;
}
.app-install-btn:hover::before { left: 150%; }
.app-install-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 44px rgba(255,106,0,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.app-install-btn:active { transform: translateY(0) scale(.98); }
.app-platforms {
  display: flex; gap: 18px; color: rgba(255,255,255,.2); font-size: 1.3rem;
}
.app-platforms i {
  transition: all .3s cubic-bezier(.4,0,.2,1); cursor: default;
}
.app-platforms i:hover {
  color: rgba(255,255,255,.6); transform: translateY(-2px);
}
.app-visual {
  display: flex; justify-content: center; position: relative;
  perspective: 1000px;
}
.app-phone {
  width: 260px; height: 530px; background: #0a0a0a; border-radius: 44px;
  border: 3px solid #2a2a2a; position: relative; overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0,0,0,.7),
    0 20px 60px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,255,255,.03);
  animation: phoneFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-2deg) rotateX(1deg); }
  50% { transform: translateY(-16px) rotateY(2deg) rotateX(-1deg); }
}
.app-phone::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 4px; border-radius: 0 0 4px 4px;
  background: #2a2a2a; z-index: 5;
}
.app-phone::after {
  content: ''; position: absolute; inset: 0; border-radius: 41px;
  background: linear-gradient(165deg, rgba(255,255,255,.1) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.02) 100%);
  pointer-events: none; z-index: 3;
}
.app-phone-notch {
  width: 90px; height: 24px; background: #0a0a0a; border-radius: 0 0 18px 18px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 4;
}
.app-phone-notch::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #333); position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 3px rgba(255,255,255,.05);
}
.app-phone-shadow {
  position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,106,0,.2), rgba(255,106,0,.05) 50%, transparent 75%);
  filter: blur(18px); animation: phoneFloat 6s ease-in-out infinite;
}
.app-phone-screen {
  margin: 4px; border-radius: 40px; background: #fff;
  height: calc(100% - 8px); overflow: hidden; position: relative;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(165deg, #0a0a0a 0%, #111 50%, #0d0a08 100%);
  padding: 70px 24px;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(255,106,0,.06), transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255,140,0,.04), transparent 50%);
  pointer-events: none;
}
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stats-inner > div {
  padding: 28px 16px; border-radius: 22px; transition: all .45s cubic-bezier(.4,0,.2,1);
  position: relative; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.stats-inner > div:hover {
  background: rgba(255,106,0,.06);
  border-color: rgba(255,106,0,.12);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,106,0,.06);
}
.stat-num {
  font-family: 'Tajawal', sans-serif; font-size: 1.15rem; font-weight: 800;
  background: linear-gradient(135deg, #FF6A00, #FF8C00, #FFD400);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(255,106,0,.15));
}
.stat-label { font-size: .76rem; color: rgba(255,255,255,.4); margin-top: 12px; font-weight: 500; letter-spacing: .03em; }

/* ── FOOTER REDESIGN ── */
.footer-inner {
  max-width: 1100px; margin: 0 auto; position: relative;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-brand-col { min-width: 0; }
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-logo img {
  width: 40px; height: 40px; border-radius: 10px;
  box-shadow: 0 4px 14px rgba(255,106,0,.15);
}
.footer-logo span {
  font-family: 'Tajawal', sans-serif; font-weight: 400; font-size: 1.1rem;
  color: #FF6A00; letter-spacing: .08em;
  text-shadow: 0 0 30px rgba(255,106,0,.15);
}
.footer-desc {
  font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.8;
  margin-bottom: 24px; max-width: 280px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .88rem;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.footer-social a::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,.15), rgba(255,140,0,.05));
  opacity: 0; transition: opacity .35s;
}
.footer-social a:hover {
  border-color: rgba(255,106,0,.3); color: #FF6A00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,106,0,.12);
}
.footer-social a:hover::before { opacity: 1; }
.footer-social a i { position: relative; z-index: 1; }
.footer-col h4 {
  font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: .82rem;
  color: rgba(255,255,255,.7); margin-bottom: 20px; letter-spacing: .06em;
  text-transform: uppercase; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #FF6A00, transparent);
}
.footer-col a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: .82rem; color: rgba(255,255,255,.32);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.footer-col a:hover { color: #FF8C00; transform: translateX(6px); }
.footer-col a i {
  width: 16px; text-align: center; font-size: .7rem;
  color: rgba(255,106,0,.35); transition: color .3s;
}
.footer-col a:hover i { color: #FF6A00; }
.footer-newsletter { margin-top: 16px; }
.footer-nl-form {
  display: flex; gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, box-shadow .3s;
}
.footer-nl-form:focus-within {
  border-color: rgba(255,106,0,.25);
  box-shadow: 0 0 0 3px rgba(255,106,0,.06);
}
.footer-nl-input {
  flex: 1; padding: 11px 16px; background: transparent;
  border: none; color: #fff; font-family: 'Tajawal', sans-serif;
  font-size: .8rem; outline: none; min-width: 0;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.15); }
.footer-nl-btn {
  padding: 11px 18px; background: linear-gradient(135deg, #FF6A00, #FF8C00);
  border: none; color: #fff; cursor: pointer; font-size: .82rem;
  transition: all .3s; position: relative; overflow: hidden;
}
.footer-nl-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s;
}
.footer-nl-btn:hover::before { left: 150%; }
.footer-nl-btn:hover { background: #FF8C00; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.15); letter-spacing: .01em; }
.footer-copy span { color: #FF6A00; font-weight: 600; }
.footer-bottom-links {
  display: flex; align-items: center; gap: 10px; font-size: .7rem;
}
.footer-bottom-links a { color: rgba(255,255,255,.18); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.45); }
.footer-bottom-links span { color: rgba(255,255,255,.08); }

/* ── LOADING SKELETON ── */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skPulse 1.5s infinite; border-radius: var(--p-r-sm); }
@keyframes skPulse { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero h1 { font-size: 1.3rem; }
  .hero { padding: 90px 16px 60px; }
  .places-section { padding: 40px 16px; }
  .places-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-banner { height: 300px; }
  .detail-banner-content { padding: 24px 16px; }
  .detail-info h1 { font-size: 1.5rem; }
  .detail-logo { width: 64px; height: 64px; }
  .stats-bar { padding: 48px 16px; }
  .stat-num { font-size: 1.05rem; }
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-steps { grid-template-columns: 1fr; }
  .app-visual { display: none; }
  .app-cta-row { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  #quickInfoStrip > div { flex-direction: column; align-items: stretch !important; gap: 12px; }
  #quickInfoStrip > div > span:last-of-type { display: none; }
  .place-card-banner-info { left: 68px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1rem; }
  .hero { padding: 80px 16px 50px; }
  .hero-search { flex-direction: column; border-radius: var(--p-r); }
  .hero-search button { border-radius: 0 0 var(--p-r) var(--p-r); }
  .places-section { padding: 32px 14px; }
  .places-grid { grid-template-columns: 1fr; gap: 20px; }
  .place-card-banner { height: 190px; }
  .platform-nav { padding: 0 14px; }
  /* nav-logo is now logo-only, no span */
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-num { font-size: 1.1rem; }
  .stats-bar { padding: 40px 14px; }
  .auth-modal { padding: 32px 24px; border-radius: 20px; }
  .app-section { padding: 48px 16px; }
  .app-text h2 { font-size: 1.5rem; }
  .app-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand-col { text-align: center; }
  .footer-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col a { justify-content: center; }
  .footer-col h4 { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { justify-content: center; flex-direction: column; text-align: center; }
  .detail-banner { height: 220px; }
  .detail-logo { width: 52px; height: 52px; border-radius: 14px; }
  .detail-info h1 { font-size: 1.2rem; }
  .place-card-banner { height: 180px; }
  .place-card-banner-info { left: 62px; }
  .place-card-logo { width: 42px; height: 42px; border-radius: 12px; }
  .ad-hero-carousel { height: 200px; margin: 0 16px 20px; }
  .ad-hero-content { padding: 20px; }
  .ad-hero-logo { width: 48px; height: 48px; }
  .ad-hero-title { font-size: 1.1rem; }
}

/* ═══════ AD SYSTEM STYLES ═══════ */

/* Sponsored card — gold animated border */
.ad-sponsored-card {
  position: relative;
  box-shadow: 0 0 0 2px var(--p-gold), 0 8px 28px rgba(255,106,0,.15) !important;
  animation: adGoldPulse 3s ease-in-out infinite;
}
@keyframes adGoldPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--p-gold), 0 8px 28px rgba(255,106,0,.12); }
  50% { box-shadow: 0 0 0 3px var(--p-gold-lt), 0 8px 32px rgba(255,106,0,.22); }
}
.ad-sponsor-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: linear-gradient(135deg, #FF6A00, #FF8C00);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 4px 14px rgba(255,106,0,.35);
  letter-spacing: .02em;
}
.ad-sponsor-badge i { font-size: .6rem; }

/* Inline banner ad */
.ad-inline-banner {
  border-radius: var(--p-r); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.ad-inline-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

/* Small "Sponsorisé" badge */
.ad-badge-sm {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85); font-size: .6rem; font-weight: 600;
  padding: 3px 10px; border-radius: 12px;
  letter-spacing: .03em;
}

/* Hero banner carousel */
.ad-hero-carousel {
  position: relative; height: 280px; overflow: hidden;
  margin: 0 auto 28px; max-width: 1200px;
  border-radius: var(--p-r); box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.ad-hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  transition: opacity .8s ease;
  border-radius: var(--p-r);
}
.ad-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.05) 100%);
  border-radius: var(--p-r);
}
.ad-hero-content {
  position: relative; z-index: 2;
  padding: 32px 36px; display: flex;
  align-items: center; gap: 20px; width: 100%;
}
.ad-hero-logo {
  width: 64px; height: 64px; border-radius: 16px;
  object-fit: cover; border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.ad-hero-text { flex: 1; min-width: 0; }
.ad-hero-title {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  line-height: 1.2;
}
.ad-hero-desc {
  font-size: .88rem; color: rgba(255,255,255,.75);
  margin-top: 6px; line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.ad-hero-brand {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; padding: 6px 16px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border-radius: 24px; font-size: .78rem; font-weight: 600;
  transition: background .3s;
}
.ad-hero-brand:hover { background: rgba(255,255,255,.25); }
.ad-hero-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; gap: 8px;
}
.ad-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: all .3s;
}
.ad-hero-dot.active {
  background: #FF6A00; width: 24px; border-radius: 4px;
  box-shadow: 0 0 8px rgba(255,106,0,.5);
}
