/* =====================================================
   Gulf IPTV - City Landing Pages Shared Stylesheet
   Used by all EN + AR city pages
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}
body.rtl {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --accent: #6c63ff;
  --gold: #f6c90e;
  --green: #10b981;
  --bg: #ffffff;
  --bg2: #f5f7fb;
  --bg3: #eceff6;
  --card: #ffffff;
  --border: rgba(15,23,42,0.10);
  --text: #1e293b;
  --muted: #5b6b82;
  --radius: 14px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #25d366; color: #fff; border-radius: 50px;
  padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
body.rtl .wa-float { right: auto; left: 24px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ── Topbar ── */
.topbar {
  background: linear-gradient(90deg, var(--accent), #9333ea);
  color: #fff; text-align: center; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
}
.topbar a { color: #fff; text-decoration: underline; }

/* ── Navbar ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-size: 20px; font-weight: 900;
  background: linear-gradient(135deg, #1e293b 30%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.nav-logo span { -webkit-text-fill-color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
body.rtl .nav-links { flex-direction: row-reverse; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-lang {
  border: 1px solid var(--border); color: var(--muted);
  padding: 5px 13px; border-radius: 8px;
  font-size: 12px; font-weight: 700; transition: all .2s;
  background: transparent;
}
.btn-lang:hover { border-color: var(--accent); color: var(--accent); }
.btn-cta {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff; border: none; padding: 9px 20px;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.btn-cta:hover { opacity: .88; transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  padding: 20px 5%; border-bottom: 1px solid var(--border); z-index: 998;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--border); }

/* ── City Hero ── */
.city-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.city-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.4);
}
.city-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,1) 0%, rgba(10,10,15,.6) 40%, rgba(10,10,15,.1) 100%);
}
.city-hero-content {
  position: relative; z-index: 2; color: #fff;
  width: 100%; padding: 60px 5% 56px;
}
.city-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,.18); border: 1px solid rgba(108,99,255,.4);
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
  color: #a78bfa; margin-bottom: 16px;
}
.city-hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.city-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 16px; max-width: 820px;
}
.city-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.city-hero p {
  font-size: 1rem; color: rgba(255,255,255,.85);
  max-width: 600px; margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg {
  padding: 13px 30px; border-radius: 11px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-lg.primary {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff; border: none; box-shadow: 0 4px 20px rgba(108,99,255,.4);
}
.btn-lg.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,99,255,.55); }
.btn-lg.ghost { background: transparent; color: var(--text); border: 2px solid var(--border); }
.city-hero .btn-lg.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-lg.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg2); padding: 14px 5%;
  font-size: 13px; color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
body.rtl .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }
.breadcrumb a { color: var(--accent); transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted); }

/* ── Stat Strip ── */
.stat-strip {
  background: var(--bg3); padding: 28px 5%;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
body.rtl .stat-strip { flex-direction: row-reverse; }
.stat-item { display: flex; align-items: center; gap: 10px; }
.stat-item strong { font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.stat-item span { font-size: 13px; color: var(--muted); }

/* ── Section Shared ── */
.section { padding: 64px 5%; }
.section.alt { background: var(--bg2); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: .95rem; color: var(--muted); max-width: 540px; }
.section-header { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
body.rtl .section-header { text-align: right; }
body.rtl .text-center { text-align: center; }

/* ── SEO Intro ── */
.seo-intro {
  max-width: 860px; margin: 0 auto 0;
  font-size: .95rem; color: var(--muted); line-height: 1.9;
}
body.rtl .seo-intro { text-align: right; }
.seo-intro h2 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.seo-intro strong { color: var(--text); }

/* ── Channels Grid ── */
.ch-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
body.rtl .ch-tabs { flex-direction: row-reverse; }
.ch-tab {
  padding: 7px 16px; border-radius: 50px; font-size: 12px; font-weight: 700;
  border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; transition: all .2s; background: transparent;
}
.ch-tab.active, .ch-tab:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.ch-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 10px; text-align: center; transition: all .2s;
}
.ch-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.ch-card .icon { font-size: 24px; margin-bottom: 7px; }
.ch-card .name { font-size: 11px; font-weight: 600; color: var(--muted); }

/* ── Sports Grid ── */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.sport-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: all .2s;
}
.sport-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(246,201,14,.12); }
.sport-card .s-icon { font-size: 32px; }
.sport-card .s-name { font-size: 13px; font-weight: 700; }
.sport-card .s-desc { font-size: 11px; color: var(--muted); }

/* ── Features 3-col ── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px; transition: all .2s;
}
.feat-card:hover { border-color: var(--accent); }
.feat-card .f-icon { font-size: 30px; margin-bottom: 12px; }
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Mini Pricing ── */
.price-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 22px; transition: all .2s; position: relative;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.hot { border-color: var(--accent); }
.hot-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #9333ea);
  font-size: 10px; font-weight: 800; color: #fff;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap;
}
.price-emoji { font-size: 24px; margin-bottom: 10px; }
.price-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.price-desc { font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--accent); line-height: 1; }
.price-amount sup { font-size: 1rem; vertical-align: super; }
.price-period { font-size: 12px; color: var(--muted); margin: 5px 0 18px; }
.price-features { list-style: none; margin-bottom: 20px; }
.price-features li { font-size: 12px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 7px; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
body.rtl .price-features li { flex-direction: row-reverse; }
body.rtl .price-features li::before { display: none; }
body.rtl .price-features li::after { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.price-features li:last-child { border-bottom: none; }
.btn-buy {
  display: block; width: 100%; padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-align: center; transition: all .2s;
  background: linear-gradient(135deg, var(--accent), #9333ea); color: #fff; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-buy:hover { opacity: .88; transform: translateY(-1px); }

/* ── Mini FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; background: transparent; border: none; color: var(--text);
  padding: 18px 22px; text-align: left; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit;
}
body.rtl .faq-q { text-align: right; flex-direction: row-reverse; }
.faq-arrow { font-size: 16px; transition: transform .3s; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 260px; padding: 0 22px 18px; }
.faq-a p { font-size: 13px; color: var(--muted); line-height: 1.8; }
body.rtl .faq-a p { text-align: right; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, rgba(108,99,255,.18), rgba(147,51,234,.18));
  border-top: 1px solid rgba(108,99,255,.2); border-bottom: 1px solid rgba(108,99,255,.2);
  padding: 64px 5%; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-band p { color: var(--muted); font-size: .95rem; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Other Cities ── */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.city-link {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 14px; text-align: center;
  transition: all .2s; color: var(--text);
}
.city-link:hover { border-color: var(--accent); transform: translateY(-2px); }
.city-link .c-flag { font-size: 22px; margin-bottom: 7px; }
.city-link .c-name { font-size: 13px; font-weight: 700; }
.city-link .c-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── Footer ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 44px 5% 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}
@media(max-width:900px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .footer-inner { grid-template-columns: 1fr; } }
.footer-brand-text { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px;
}
body.rtl .footer-inner { direction: rtl; }
body.rtl .footer-col h4 { text-align: right; }
body.rtl .footer-bottom { flex-direction: row-reverse; }

/* ── JSON-LD Schema placeholder ── */
/* added inline in each page */

/* ── Responsive ── */
@media(max-width:900px){
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .city-hero { min-height: 420px; }
  .city-hero h1 { font-size: 1.8rem; }
}
