/* ═══════════════════════════════════════════════════════════════════════════
   Vulture IPTV — main.css
   Dark Gold Theme | RTL Arabic | No jQuery
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
    --bg:         #09090f;
    --bg-card:    #111118;
    --bg-card-2:  #16161f;
    --border:     #1e1e2e;
    --border-2:   #2a2a3e;

    --gold:       #f0b429;
    --gold-dark:  #c9920a;
    --gold-light: #f8d070;
    --gold-glow:  rgba(240, 180, 41, 0.18);

    --text:       #eaeaf2;
    --text-muted: #9090a8;
    --text-dim:   #6b6b82;

    --success:    #38a169;
    --whatsapp:   #25d366;
    --danger:     #e53e3e;

    --radius:     12px;
    --radius-lg:  18px;
    --radius-full: 9999px;
    --shadow:     0 4px 24px rgba(0,0,0,.45);
    --shadow-gold: 0 0 24px rgba(240,180,41,.25);
    --transition: 0.22s cubic-bezier(.4,0,.2,1);

    --header-h:   68px;
    --container:  1200px;
    --font-arabic: 'Tajawal', system-ui, -apple-system, Arial, sans-serif;
}

/* ─── Google Font: Tajawal (Arabic) ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-family: var(--font-arabic);
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ─── Accessibility ──────────────────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -9999px; left: 0; z-index: 9999;
    background: var(--gold); color: #000; padding: 8px 16px;
    font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Section Padding ────────────────────────────────────────────────────── */
.section-padding { padding: 88px 0; }

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(240,180,41,.3);
    border-radius: var(--radius-full);
    padding: 6px 20px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 16px;
}

.text-gold { color: var(--gold); }

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-gold,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold);
    font-size: 1rem;
    font-family: var(--font-arabic);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn-gold:hover, .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 1rem;
    font-family: var(--font-arabic);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    border: 2px solid var(--whatsapp);
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 1rem;
    font-family: var(--font-arabic);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5c; border-color: #1ebe5c; color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 8px 16px; font-size: .9rem; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
}

/* Logo */
.site-logo a,
.site-logo .custom-logo-link { display: flex; align-items: center; gap: 8px; }
.logo-text { display: flex; align-items: center; gap: 4px; font-size: 1.5rem; font-weight: 900; }
.logo-vulture { color: var(--gold); }
.logo-iptv { color: var(--text-muted); font-size: 1rem; font-weight: 600; }

/* Primary Nav */
.primary-nav { flex: 1; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li a {
    display: block; padding: 8px 14px; color: var(--text-muted);
    font-weight: 500; font-size: .95rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--gold); background: var(--gold-glow); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }

.btn-whatsapp-header {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--whatsapp);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 600; font-size: .9rem;
    transition: all var(--transition);
}
.btn-whatsapp-header:hover { background: #1ebe5c; color: #fff; transform: translateY(-1px); }

.header-cart {
    position: relative; display: flex; align-items: center;
    color: var(--text-muted); padding: 8px;
    border-radius: var(--radius); transition: color var(--transition);
}
.header-cart:hover { color: var(--gold); }
.cart-count {
    position: absolute; top: 2px; left: 2px;
    background: var(--gold); color: #000;
    font-size: .65rem; font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: transparent; border: none; cursor: pointer;
    touch-action: manipulation;
    border-radius: var(--radius);
}
.mobile-menu-toggle:hover { background: var(--gold-glow); }

.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.menu-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 998;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
}
.menu-overlay.is-visible { display: block; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(80px);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-glow--1 {
    width: 600px; height: 600px;
    background: rgba(240, 180, 41, 0.08);
    top: -150px; right: -100px;
}
.hero-glow--2 {
    width: 400px; height: 400px;
    background: rgba(240, 180, 41, 0.05);
    bottom: -100px; left: -100px;
    animation-delay: 4s;
}

@keyframes heroGlow {
    from { opacity: .5; transform: scale(1); }
    to   { opacity: 1; transform: scale(1.1); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(240,180,41,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,180,41,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
    position: relative; z-index: 1;
    text-align: center;
}

.hero-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-glow);
    border: 1px solid rgba(240,180,41,.25);
    color: var(--gold);
    padding: 5px 16px; border-radius: var(--radius-full);
    font-size: .82rem; font-weight: 600;
}
.hero-badge--new { background: rgba(56, 161, 105, .12); border-color: rgba(56,161,105,.3); color: #68d391; }

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 10px;
}
.hero-sub { display: block; font-size: clamp(1.3rem, 3.5vw, 2.2rem); color: var(--text-muted); font-weight: 600; }

.hero-desc {
    max-width: 680px; margin: 20px auto 36px;
    color: var(--text-muted); font-size: 1.1rem; line-height: 1.8;
}
.hero-desc strong { color: var(--text); }

.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: #000;
    font-weight: 800; font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-arabic);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(240,180,41,.35);
}
.btn-hero-primary:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(240,180,41,.45);
}

.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(37, 211, 102, .12);
    color: #4ae080;
    border: 1.5px solid rgba(37,211,102,.4);
    font-weight: 700; font-size: 1rem;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-family: var(--font-arabic);
    transition: all var(--transition);
}
.btn-hero-secondary:hover {
    background: var(--whatsapp); color: #fff; border-color: var(--whatsapp);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 680px;
    margin: 0 auto;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat-num { display: block; font-size: 1.7rem; font-weight: 900; color: var(--text); }
.hero-stat-num .text-gold { color: var(--gold); }
.hero-stat-label { font-size: .82rem; color: var(--text-muted); }
.hero-stat-sep { width: 1px; height: 40px; background: var(--border-2); }

.hero-scroll {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
}
.hero-scroll-line {
    display: block; width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── FEATURES ───────────────────────────────────────────────────────────── */
.features-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    border-color: rgba(240,180,41,.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.feature-icon {
    width: 56px; height: 56px;
    background: var(--gold-glow);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-desc  { color: var(--text-muted); font-size: .93rem; line-height: 1.7; }

/* Devices Banner */
.devices-banner {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    text-align: center;
}
.devices-label { color: var(--text-muted); margin-bottom: 16px; font-size: .9rem; }
.devices-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.device-tag {
    background: var(--bg-card-2); border: 1px solid var(--border-2);
    color: var(--text-muted); padding: 6px 16px; border-radius: var(--radius-full);
    font-size: .85rem; font-weight: 500;
}

/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}
.pricing-count-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.pricing-count-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-count-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-count-5 { grid-template-columns: repeat(3, 1fr); }

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex; flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: rgba(240,180,41,.35); box-shadow: 0 8px 40px rgba(0,0,0,.4); }

.pricing-card--featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(240,180,41,.06) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 0 1px rgba(240,180,41,.2), 0 8px 40px rgba(240,180,41,.1);
    transform: translateY(-6px);
}

.pricing-badge {
    position: absolute; top: -14px; right: 24px;
    background: var(--gold);
    color: #000;
    font-size: .78rem; font-weight: 800;
    padding: 4px 16px; border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header { margin-bottom: 20px; }
.pricing-name { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pricing-tagline { font-size: .88rem; color: var(--text-muted); }

.pricing-price { margin-bottom: 24px; }
.price-original { color: var(--text-dim); font-size: .9rem; display: block; margin-bottom: 4px; }
.price-main { display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--gold); }
.price-currency { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.price-save {
    display: inline-block; margin-top: 6px;
    background: rgba(56,161,105,.15); color: #68d391;
    border: 1px solid rgba(56,161,105,.3);
    font-size: .78rem; font-weight: 700;
    padding: 3px 12px; border-radius: var(--radius-full);
}

.pricing-features { flex: 1; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--text-muted); }
.pricing-features li svg { flex-shrink: 0; margin-top: 3px; }

.pricing-cta { margin-top: auto; }

.btn-pricing {
    display: block; width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius-full);
    font-weight: 700; font-size: 1rem;
    font-family: var(--font-arabic);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--gold);
}
.btn-gold.btn-pricing, .btn-pricing.btn-gold { background: var(--gold); color: #000; }
.btn-gold.btn-pricing:hover, .btn-pricing.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-gold.btn-pricing, .btn-pricing.btn-outline-gold { background: transparent; color: var(--gold); }
.btn-outline-gold.btn-pricing:hover, .btn-pricing.btn-outline-gold:hover { background: var(--gold); color: #000; }
.btn-disabled { background: var(--bg-card-2); color: var(--text-dim); border-color: var(--border); cursor: not-allowed; }

.pricing-note { display: flex; align-items: center; gap: 5px; justify-content: center; margin-top: 10px; font-size: .8rem; color: var(--text-dim); }

/* Guarantee */
.pricing-guarantee { background: var(--bg-card); border: 1px solid rgba(240,180,41,.2); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 32px; }
.guarantee-inner { display: flex; align-items: center; gap: 24px; }
.guarantee-inner svg { flex-shrink: 0; }
.guarantee-inner strong { display: block; font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.guarantee-inner p { color: var(--text-muted); font-size: .92rem; }

/* Payment Methods */
.payment-methods { text-align: center; }
.payment-label { color: var(--text-dim); font-size: .85rem; margin-bottom: 12px; }
.payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.payment-badge {
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); padding: 5px 16px;
    border-radius: var(--radius-full); font-size: .82rem; font-weight: 600;
}

/* ─── CHANNELS ───────────────────────────────────────────────────────────── */
.channels-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.channels-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin-bottom: 32px;
}

.channel-tab {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text-muted); padding: 10px 20px;
    border-radius: var(--radius-full); font-size: .9rem; font-weight: 600;
    font-family: var(--font-arabic);
    cursor: pointer; transition: all var(--transition);
}
.channel-tab:hover { border-color: var(--gold); color: var(--gold); }
.channel-tab--active {
    background: var(--gold); color: #000; border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(240,180,41,.25);
}

.tab-count {
    background: rgba(0,0,0,.15);
    padding: 2px 8px; border-radius: var(--radius-full);
    font-size: .75rem; font-weight: 700;
}
.channel-tab--active .tab-count { background: rgba(0,0,0,.2); }

.channel-panel { display: none; }
.channel-panel--active { display: block; }

.channel-panel-inner {
    display: flex; gap: 32px; align-items: flex-start;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px;
}

.channel-icon-wrap {
    flex-shrink: 0;
    width: 72px; height: 72px;
    background: var(--gold-glow); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}

.channel-panel-title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 20px; }

.channel-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
    margin-bottom: 16px;
}
.channel-list li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--text-muted); }

.channel-more-hint { color: var(--text-dim); font-size: .85rem; }

.channels-total {
    margin-top: 32px;
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    border: 1px solid rgba(240,180,41,.25);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}
.channels-total-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.channels-total-num { font-size: 2.5rem; font-weight: 900; color: var(--text); white-space: nowrap; }
.channels-total-text { flex: 1; }
.channels-total-text strong { display: block; font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.channels-total-text span { font-size: .9rem; color: var(--text-muted); }

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────── */
.how-section { background: var(--bg); }

.how-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
    margin-bottom: 48px;
}

.how-step {
    position: relative; text-align: center; padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 0 -1px;
    transition: border-color var(--transition);
}
.how-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.how-step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.how-step:hover { border-color: var(--gold); z-index: 1; }

.how-step-icon {
    position: relative;
    width: 72px; height: 72px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.how-step-num {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: #000;
    font-size: .7rem; font-weight: 800;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.how-step-arrow {
    position: absolute; top: 50%; left: -14px;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--bg-card); padding: 2px;
    border-radius: 50%;
}

.how-step-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.how-step-desc  { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* Apps */
.how-apps { text-align: center; margin-bottom: 32px; }
.how-apps-label { color: var(--text-muted); margin-bottom: 12px; font-size: .9rem; }
.apps-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.app-tag {
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); padding: 6px 16px;
    border-radius: var(--radius-full); font-size: .83rem; font-weight: 500;
}

.how-cta-wrap { text-align: center; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.aggregate-rating {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 16px;
    font-size: .95rem; color: var(--text-muted);
}
.rating-stars { display: flex; gap: 2px; }
.aggregate-rating strong { color: var(--gold); font-size: 1.1rem; font-weight: 800; }
.rating-count { color: var(--text-dim); }

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: rgba(240,180,41,.3); transform: translateY(-3px); }

.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold-glow); border: 2px solid rgba(240,180,41,.3);
    color: var(--gold); font-weight: 800; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name { display: block; font-weight: 700; color: var(--text); font-size: .95rem; }
.testimonial-country { font-size: .8rem; color: var(--text-muted); }
.testimonial-rating { display: flex; gap: 2px; margin-right: auto; }

.testimonial-text { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 14px; }

.testimonial-footer { display: flex; }
.verified-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .78rem; color: var(--text-dim);
}

/* Trust Bar */
.trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.trust-item {
    text-align: center; padding: 24px 16px;
    border-left: 1px solid var(--border);
}
.trust-item:last-child { border-left: none; }
.trust-item strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.trust-item span { font-size: .82rem; color: var(--text-muted); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(240,180,41,.3); }

.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    width: 100%; padding: 18px 20px;
    background: transparent; border: none; cursor: pointer;
    color: var(--text); font-size: .97rem; font-weight: 600;
    font-family: var(--font-arabic); text-align: right;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon { flex-shrink: 0; color: var(--gold); }
.icon-minus { display: none; }
.faq-question[aria-expanded="true"] .icon-plus  { display: none; }
.faq-question[aria-expanded="true"] .icon-minus { display: block; }

.faq-answer { padding: 0 20px 18px; }
.faq-answer p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }

/* FAQ Sidebar */
.faq-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.faq-contact-card {
    background: var(--bg-card); border: 1px solid rgba(240,180,41,.2);
    border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
}
.faq-contact-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.faq-contact-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.faq-contact-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: 16px; }
.faq-contact-card .btn-whatsapp,
.faq-contact-card .btn-outline-gold { display: block; margin-bottom: 10px; justify-content: center; }

.faq-quick-facts {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
}
.faq-quick-facts h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.faq-quick-facts ul { display: flex; flex-direction: column; gap: 10px; }
.faq-quick-facts li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
    background: #060608; border-top: 1px solid var(--border);
}

.footer-main { padding: 64px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 1.5rem; font-weight: 900; margin-bottom: 16px;
}

.footer-tagline { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
    width: 38px; height: 38px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.footer-heading {
    font-size: .95rem; font-weight: 700; color: var(--text);
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: var(--text-muted); font-size: .88rem; }
.footer-contact a:hover { color: var(--gold); }

.footer-countries { margin-top: 20px; }
.footer-countries h4 { font-size: .85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.footer-countries p { font-size: .82rem; color: var(--text-dim); }

.footer-bottom {
    background: #040406; border-top: 1px solid var(--border);
    padding: 18px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: var(--text-dim); font-size: .82rem; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: var(--text-dim); font-size: .82rem; }
.footer-legal a:hover { color: var(--gold); }

/* ─── WhatsApp Float ──────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 900;
    display: flex; align-items: center; gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    font-weight: 700; font-size: .9rem;
    font-family: var(--font-arabic);
    transition: all var(--transition);
    text-decoration: none;
    animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.45); color: #fff; }

@keyframes floatPulse {
    0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.35)}
    50%{box-shadow:0 4px 32px rgba(37,211,102,.6)}
}

/* ─── BLOG / POSTS ───────────────────────────────────────────────────────── */
.content-container { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding-top: 48px; padding-bottom: 64px; }
.content-area { min-width: 0; }

.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 20px; }
.post-meta { font-size: .8rem; color: var(--text-dim); margin-bottom: 8px; }
.post-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.post-title a { color: inherit; }
.post-title a:hover { color: var(--gold); }
.post-excerpt { color: var(--text-muted); font-size: .88rem; margin-bottom: 14px; }
.post-read-more { font-size: .85rem; font-weight: 600; color: var(--gold); }

/* Single Post */
.single-article { max-width: 760px; }
.entry-header { margin-bottom: 24px; }
.entry-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.entry-cat { background: var(--gold-glow); color: var(--gold); padding: 3px 12px; border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; }
.entry-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.entry-meta { font-size: .85rem; color: var(--text-dim); }
.entry-thumbnail { margin-bottom: 28px; border-radius: var(--radius-lg); overflow: hidden; }
.entry-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }
.entry-content { color: var(--text-muted); line-height: 1.85; }
.entry-content h2, .entry-content h3 { color: var(--text); margin: 24px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--gold); }
.entry-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.entry-tag { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); padding: 4px 12px; border-radius: var(--radius-full); font-size: .8rem; }

/* Pagination */
.pagination-nav { margin-top: 40px; }
.pagination-nav .page-numbers { display: inline-flex; gap: 8px; }
.pagination-nav a.page-numbers, .pagination-nav span.page-numbers {
    padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text-muted); background: var(--bg-card); font-size: .9rem;
    transition: all var(--transition);
}
.pagination-nav .current { background: var(--gold); color: #000; border-color: var(--gold); }
.pagination-nav a.page-numbers:hover { border-color: var(--gold); color: var(--gold); }

/* Sidebar */
.site-sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

.sidebar-cta-inner { text-align: center; padding: 8px; }
.sidebar-cta-icon { display: flex; justify-content: center; margin-bottom: 14px; }
.sidebar-cta-inner h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sidebar-cta-inner p { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-cta-btn { display: block; text-align: center; justify-content: center; }

/* ─── Shop ───────────────────────────────────────────────────────────────── */
.shop-hero { padding: 52px 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.shop-hero-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.shop-hero-desc { color: var(--text-muted); font-size: 1rem; }
.shop-container { padding-top: 48px; padding-bottom: 64px; }

/* ─── Single Product ─────────────────────────────────────────────────────── */
.single-product-layout {
    display: grid; grid-template-columns: 1fr 340px;
    gap: 40px; padding: 48px 0;
}
.product-breadcrumb { font-size: .83rem; color: var(--text-dim); margin-bottom: 20px; }
.product-breadcrumb a { color: var(--text-dim); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-badge-wrap { margin-bottom: 14px; }
.product-title { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.product-short-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 20px; }
.product-price-wrap { margin-bottom: 24px; }
.product-price-main .price-amount { font-size: 2.8rem; }
.product-guarantee {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: var(--text-muted);
    margin: 16px 0 24px; padding: 12px 16px;
    background: var(--gold-glow); border-radius: var(--radius); border: 1px solid rgba(240,180,41,.2);
}
.product-features-heading { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.product-description { margin-top: 28px; color: var(--text-muted); line-height: 1.8; }

.product-order-card {
    background: var(--bg-card); border: 1px solid rgba(240,180,41,.25);
    border-radius: var(--radius-lg); padding: 28px 24px;
    position: sticky; top: 88px; text-align: center;
}
.product-order-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.btn-whatsapp-order {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--whatsapp); color: #fff;
    padding: 13px; border-radius: var(--radius-full);
    font-weight: 700; font-size: .95rem; margin: 12px 0;
    font-family: var(--font-arabic); transition: all var(--transition);
}
.btn-whatsapp-order:hover { background: #1ebe5c; color: #fff; }
.product-sidebar-perks { margin-top: 16px; text-align: right; }
.product-sidebar-perks li { display: flex; align-items: center; gap: 8px; font-size: .87rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.product-sidebar-perks li:last-child { border-bottom: none; }

.related-heading { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 40px 0 24px; }
.pricing-card--small { padding: 20px; }
.pricing-card--small .pricing-name { font-size: 1rem; margin-bottom: 10px; }

/* ─── 404 ────────────────────────────────────────────────────────────────── */
.error-404-main { padding: 100px 0; text-align: center; }
.error-404-number { font-size: 8rem; font-weight: 900; color: var(--gold); opacity: .15; line-height: 1; margin-bottom: -32px; }
.error-404-title { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.error-404-desc { color: var(--text-muted); margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
.error-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Page / Single Shared ───────────────────────────────────────────────── */
.page-main .content-container,
.single-main .content-container { align-items: start; }
.page-article { max-width: 760px; }
.page-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 24px; }
.archive-description { color: var(--text-muted); margin-bottom: 32px; }

/* Post Navigation */
.post-navigation { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 32px; }
.post-navigation .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.post-navigation a { color: var(--text-muted); transition: color var(--transition); }
.post-navigation a:hover { color: var(--gold); }
.nav-subtitle { display: block; font-size: .78rem; color: var(--text-dim); margin-bottom: 4px; }
.nav-title { display: block; font-size: .95rem; font-weight: 600; color: var(--text); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .mobile-menu-toggle { display: flex; }

    .primary-nav {
        position: fixed;
        top: var(--header-h); right: 0;
        width: min(320px, 90vw);
        height: calc(100dvh - var(--header-h));
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        padding: 24px 20px;
        overflow-y: auto;
        z-index: 999;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform var(--transition), visibility var(--transition);
    }

    .primary-nav.is-open {
        visibility: visible;
        transform: translateX(0);
    }

    .nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-menu li a { padding: 12px 16px; font-size: 1rem; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-count-4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-count-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-count-5 { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-step { border-radius: var(--radius-lg) !important; margin: 0; }
    .how-step-arrow { display: none; }
    .content-container { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
    .single-product-layout { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat-sep { display: none; }
    .hero-stat { flex: 1 1 40%; }
    .channel-panel-inner { flex-direction: column; }
    .channel-list { grid-template-columns: 1fr 1fr; }
    .channels-total-inner { flex-direction: column; text-align: center; }
    .footer-grid { gap: 28px; }
}

/* Mobile: 640px */
@media (max-width: 640px) {
    :root { --header-h: 60px; }
    .section-padding { padding: 60px 0; }
    .container { padding: 0 16px; }

    .btn-whatsapp-header span { display: none; }

    .hero-title { font-size: 1.9rem; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-stat-sep { display: none; }
    .hero-stat { flex: 0 0 auto; }

    .features-grid { grid-template-columns: 1fr; }
    .pricing-count-2, .pricing-count-3, .pricing-count-4, .pricing-count-5 { grid-template-columns: 1fr; }
    .pricing-card--featured { transform: none; }

    .how-steps { grid-template-columns: 1fr; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 16px 10px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

    .channels-tabs { gap: 6px; }
    .channel-tab { padding: 8px 14px; font-size: .82rem; }
    .channel-list { grid-template-columns: 1fr; }

    .posts-grid { grid-template-columns: 1fr; }
    .error-404-number { font-size: 5rem; }

    .whatsapp-float { bottom: 16px; left: 16px; padding: 10px 16px; }
    .whatsapp-float-label { display: none; }
}

@media (max-width: 400px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
}
