/* Dalele v2 — palette from imgs/llogo.jpg (rainbow ring + dark squircle) */

.page-hero--featured h1 i {
  background: var(--gradient-vip);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

:root {
  /* Logo dark core */
  --brand-dark: #2c2c2c;
  --brand-dark-deep: #1e1e22;

  /* Logo gradient stops (clockwise ring) */
  --brand-coral: #ff4e50;
  --brand-gold: #f9d423;
  --brand-magenta: #e91e63;
  --brand-purple: #9c27b0;
  --brand-indigo: #3f51b5;
  --brand-cyan: #00bcd4;
  --brand-blue: #03a9f4;

  --accent: var(--brand-cyan);
  --accent-dark: #0097a7;
  --accent-light: #4dd0e1;
  --accent-rgb: 0, 188, 212;
  --brand-dark-rgb: 44, 44, 44;
  --brand-gold-rgb: 249, 212, 35;
  --brand-purple-rgb: 156, 39, 176;
  --brand-magenta-rgb: 233, 30, 99;

  --gradient-brand: linear-gradient(
    135deg,
    var(--brand-coral) 0%,
    var(--brand-gold) 18%,
    var(--brand-magenta) 36%,
    var(--brand-purple) 52%,
    var(--brand-indigo) 68%,
    var(--brand-cyan) 84%,
    var(--brand-blue) 100%
  );
  --gradient-brand-h: linear-gradient(
    90deg,
    var(--brand-cyan),
    var(--brand-blue),
    var(--brand-purple),
    var(--brand-magenta),
    var(--brand-gold),
    var(--brand-coral)
  );
  --gradient-primary: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 55%, var(--brand-indigo) 100%);
  --gradient-vip: linear-gradient(145deg, var(--brand-gold) 0%, #ffb300 45%, var(--brand-coral) 100%);

  --bg: #f3f4f7;
  --card: #ffffff;
  --text: #1a1a1f;
  --muted: #5c6370;
  --vip: var(--brand-gold);
  --wa: #25d366;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(var(--brand-dark-rgb), 0.1);
  --font: 'Tajawal', system-ui, sans-serif;
}

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

html { font-size: 16px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 94vw); margin: 0 auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  background: var(--card);
  border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(var(--brand-dark-rgb), 0.06);
}

.site-header::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--gradient-brand-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.site-logo img {
  display: block;
  max-height: 4.5rem;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-main { padding: 1.25rem 0 2.5rem; }

/* Hero — centered promo + search card */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    rgba(0, 188, 212, 0.07) 42%,
    rgba(156, 39, 176, 0.06) 78%,
    rgba(249, 212, 35, 0.05) 100%
  );
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.25rem 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.12);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand-h);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.22);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 4.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.hero__lead {
  margin: 0 auto 1.35rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero__search {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0 auto;
  max-width: 480px;
  padding: 0.85rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hero__search-field {
  width: 100%;
}

.hero__search input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  text-align: center;
  background: #f8fafc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero__search input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
  background: #fff;
}

.btn--search {
  min-height: 50px;
  font-size: 1.05rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.btn--search:hover {
  filter: brightness(1.05);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.15rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta .btn {
  flex: 1 1 200px;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
}

.hero__cta .btn--outline {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem 1.35rem;
  }

  .hero__cta .btn {
    flex: 1 1 100%;
  }
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 520px;
}

.search-form input[type="search"],
.search-form input[type="text"],
.add-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none !important;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}
.btn--primary:hover { filter: brightness(1.06); }
.btn--dark { background: var(--brand-dark); color: #fff; }
.btn--dark:hover { background: var(--brand-dark-deep); }
.btn--outline { background: #fff; color: var(--text); border: 1px solid #cbd5e1; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--call { background: var(--brand-indigo); color: #fff; }
.btn--secondary { background: #f1f5f9; color: var(--text); border: 1px solid #cbd5e1; }
.btn--vip-offer {
  background: var(--gradient-vip);
  color: var(--brand-dark-deep);
  font-weight: 800;
}
.btn--report { background: #fff; color: #64748b; border: 1px solid #e2e8f0; }
.btn--report:hover { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.btn--block { width: 100%; }
.btn--small { padding: 0.45rem 0.75rem; font-size: 0.88rem; }

/* Sections */
.section { margin-bottom: 2rem; }
.section--narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.section__head h2 { margin: 0; font-size: 1.2rem; }

/* Centered page intro (VIP / featured list) */
.page-hero {
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 1.75rem 1rem 0.5rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 4.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.35;
}

.page-hero h1 i {
  color: var(--brand-gold);
  margin-left: 0.35rem;
}

.page-hero__lead {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 600;
}

.page-hero__cta {
  margin: 0;
}

.page-hero__cta .btn {
  min-width: 12rem;
}

.section--featured-list {
  text-align: center;
}

.featured-list__meta {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-list__empty {
  margin-top: 1.5rem;
}

.section-intro--center {
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.section-intro--center h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 800;
}

.section-intro--center h2 i {
  color: var(--brand-cyan);
  margin-left: 0.35rem;
}

.section-intro__meta {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.section-intro__cta {
  margin: 0;
}

.section--latest .pagination {
  justify-content: center;
}

.lead { color: var(--muted); margin-top: 0; }

/* Grid & cards */
.grid {
  display: grid;
  gap: 1rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.card--vip {
  position: relative;
  overflow: visible;
  margin-top: 0.65rem;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-vip) border-box;
  box-shadow:
    0 10px 28px rgba(var(--brand-purple-rgb), 0.1),
    0 16px 44px rgba(var(--brand-gold-rgb), 0.28);
}

.card--vip::before {
  content: '';
  position: absolute;
  inset: -14px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(var(--brand-gold-rgb), 0.32),
    rgba(var(--brand-magenta-rgb), 0.12),
    transparent 68%
  );
  filter: blur(12px);
}

.card--vip .card__media {
  z-index: 1;
}

.card--vip .card__body {
  position: relative;
  z-index: 1;
  background: #fff;
}

.card__media {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: visible;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}

.card--vip .card__media img {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

/* VIP star mark (no text) — centered on image top */
.card__vip-mark {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__vip-mark-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(var(--brand-gold-rgb), 0.55) 55%, transparent 72%);
  box-shadow: 0 8px 22px rgba(var(--brand-gold-rgb), 0.4);
}

.card__vip-mark-icon {
  position: relative;
  z-index: 1;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-vip);
  color: #fff;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(var(--brand-gold-rgb), 0.45);
}

.card__vip-mark-icon i {
  text-shadow: 0 1px 2px rgba(var(--brand-dark-rgb), 0.35);
}

.card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.card__body { padding: 0.85rem 0.9rem 1rem; }

.card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.35;
}

.card__title a { color: var(--text); text-decoration: none; }
.card__title a:hover { color: var(--accent-dark); }

.card__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* Profile */
.profile__head h1 { margin: 0 0 0.35rem; font-size: 1.5rem; }
.profile__meta { color: var(--muted); margin: 0 0 1rem; }
.profile__meta .sep { margin: 0 0.35rem; opacity: 0.5; }

.badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge--vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.35rem;
  border-radius: 50%;
  background: var(--gradient-vip);
  color: #fff;
  font-size: 0.85rem;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(var(--brand-gold-rgb), 0.45);
}

.profile__hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.profile__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
}

.profile__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .profile__grid { grid-template-columns: 1fr 1.2fr; }
  .profile__share { grid-column: 1 / -1; }
}

.profile__panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.profile__loc {
  text-align: center;
  margin: 0 0 0.5rem;
}

.profile__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.85rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.profile__report-form {
  margin: 0;
  padding: 0;
  width: 100%;
}

.profile__report-form button {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.profile__desc { white-space: pre-wrap; color: #334155; }

.profile__upsell {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.profile__qr { display: block; margin: 0.5rem auto; }

.muted { color: var(--muted); font-size: 0.92rem; }

/* Footer — snapat-style: everything centered */
.site-footer {
  background: var(--card);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer-block {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.footer-block__title {
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footer-chips__item {
  display: inline-block;
  padding: 0.32rem 0.65rem;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-chips__item:hover {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent-dark);
  text-decoration: none;
}

/* Main footer nav row — centered with | separators */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 0.35rem;
  width: 100%;
  max-width: 1000px;
  margin: 0.5rem auto 1rem;
  padding: 0.35rem 0.5rem;
  text-align: center;
}

.footer-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.2rem 0.15rem;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-sep {
  color: #94a3b8;
  font-weight: 400;
  padding: 0 0.2rem;
  user-select: none;
  line-height: 1;
}

/* Backlink bar (full width box, links in one centered row) */
.footer-backlinks {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1rem;
  background: #fafbfc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
}

.footer-backlinks__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 0.35rem;
  line-height: 1.75;
  text-align: center;
}

.footer-backlinks__link {
  color: var(--brand-indigo);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0.15rem 0.2rem;
  white-space: nowrap;
}

.footer-backlinks__link:hover {
  text-decoration: underline;
  color: var(--brand-purple);
}

.footer-copy {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.footer-copy a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Legacy chip classes (cards elsewhere) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-start;
}

.chips--center {
  justify-content: center;
}

.chip {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
}

.chip:hover {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent-dark);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-weight: 700;
}

.alert { padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.notice {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
}

.preview-box {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.pricing { display: grid; gap: 1rem; }

@media (min-width: 700px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
}

.pricing__card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.pricing__card--highlight {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--gradient-brand) border-box;
  box-shadow: 0 8px 28px rgba(var(--brand-purple-rgb), 0.15);
}

.pricing__card--highlight h2 {
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal h2 { font-size: 1.1rem; margin-top: 1.25rem; }

.ad-slot { min-height: 90px; margin: 1rem 0; }
