/* ═══════════════════════════════
   VARIABLES
═══════════════════════════════ */
:root {
    --gold: #C9A54E;
    --gold-lt: #E2C06A;
    --gold-dk: #8A6C28;
    --black: #000000;
    --black2: #0A0A0A;
    --black3: #111111;
    --black4: #161616;
    --text: rgba(255, 255, 255, 0.6);
    --dim: rgba(255, 255, 255, 0.25);
    --grad: linear-gradient(135deg, #C9A54E 0%, #E8C96A 45%, #A07830 100%);
    --font: 'Cairo', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --tr: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dk);
    border-radius: 2px;
}

/* grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
}

/* ═══════════════════════════════
   CURSOR
═══════════════════════════════ */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s, width 0.25s, height 0.25s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 165, 78, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.45s var(--ease), opacity 0.3s;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--tr);
}

nav.stuck {
    padding: 13px 52px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(201, 165, 78, 0.14);
}

/* ── Logo: تعديل 1 - مساحة واضحة للأسم ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* مساحة كافية بين الأيقونة والنص */
    text-decoration: none;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-logo-icon svg {
    display: block;
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

/* فاصل عمودي رفيع بين الأيقونة والنص */
.nav-logo-divider {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, transparent, rgba(201, 165, 78, 0.35), transparent);
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
    padding-right: 2px;
    /* تهوية بسيطة */
}

.nav-ar {
    min-height: 25px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    /* كشيدة خفيفة بدل الضغط */
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-en {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    height: 1px;
    width: 0;
    background: var(--grad);
    transition: width 0.35s ease;
}

.nav-links a:hover {
    color: var(--gold-lt);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid rgba(201, 165, 78, 0.38);
    color: var(--gold);
    padding: 9px 22px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
}

.nav-cta:hover {
    color: var(--black);
    border-color: var(--gold);
}

.nav-cta:hover::before {
    transform: translateX(0);
}

.vid-modal-inner {
    position: relative;
    width: 95%;
    max-width: 1100px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تنسيق خاص للريلز (طولي) لضمان عدم البكسلة */
.vid-modal-inner.reel-modal {
    max-width: 450px;
    aspect-ratio: 9/16;
}

.vid-modal-inner iframe,
.vid-modal-inner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    /* يحافظ على أبعاد الفيديو الأصلية */
}

.vid-card {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    cursor: none;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.vid-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.vid-card:hover .vid-thumb {
    transform: scale(1.1);
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════
   HERO — مركزي واضح
═══════════════════════════════ */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 110px;
    background: #000;
}

/* شبكة خلفية */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(201, 165, 78, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 165, 78, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

/* حلقات الهدف خلف الاسم */
.hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 92vw);
    height: min(700px, 92vw);
    pointer-events: none;
    z-index: 0;
}

.r1 {
    animation: spinR 24s linear infinite;
    transform-origin: center;
}

.r2 {
    animation: spinR 36s linear infinite reverse;
    transform-origin: center;
}

.r3 {
    animation: spinR 18s linear infinite;
    transform-origin: center;
}

@keyframes spinR {
    to {
        transform: rotate(360deg);
    }
}

/* توهج ذهبي مركزي */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201, 165, 78, 0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: glowBeat 4s ease-in-out infinite;
}

@keyframes glowBeat {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* كل المحتوى فوق الخلفية */
.hero-content {
    position: relative;
    z-index: 2;
}

/* ── التاج العلوي: MOTION · DESIGN · SOCIAL MEDIA CONTENT ── */
.hero-tagline {
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(201, 165, 78, 0.55);
    margin-bottom: 26px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s 0.05s var(--ease) forwards;
    text-transform: uppercase;
}

.hero-tagline .dot {
    display: inline-block;
    margin: 0 8px;
    color: rgba(201, 165, 78, 0.35);
}

/* ── الاسم — كبير ظاهر واضح (أبيض + حرف ذهبي) ── */
.hero-brand-ar {
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
    color: #ffffff;
    filter: drop-shadow(0 0 40px rgba(201, 165, 78, 0.15));
    opacity: 0;
    animation: fadeUp 0.9s 0.1s var(--ease) forwards;
    margin-bottom: 8px;
    display: block;
    direction: rtl;
}

/* حرف الهمزة "ؤ" بلون ذهبي */
.hero-brand-ar .gold-char {
    color: var(--gold);
    background: linear-gradient(160deg, #E8C96A 0%, #C9A54E 45%, #A07830 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-brand-en {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    letter-spacing: 14px;
    background: linear-gradient(160deg, #E8C96A 0%, #C9A54E 45%, #A07830 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 0.8s 0.28s var(--ease) forwards;
    margin-bottom: 44px;
    margin-top: 18px;
    display: block;
    padding-right: 14px;
    /* to balance the letter-spacing */
}

/* خط فاصل مركزي */
.hero-brand-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s var(--ease) forwards;
}

/* الاقتباس */
.hero-quote {
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto 52px;
    opacity: 0;
    animation: fadeUp 0.9s 0.45s var(--ease) forwards;
}

.hero-quote em {
    color: var(--gold-lt);
    font-style: normal;
    font-weight: 700;
}

/* الزر */
.hero-cta-wrap {
    opacity: 0;
    animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C9A54E 0%, #E8C96A 50%, #A07830 100%);
    color: #000;
    padding: 17px 52px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 165, 78, 0.25);
}

.btn-primary:hover::after {
    opacity: 1;
}

/* scroll */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s var(--ease) forwards;
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 1.8s ease infinite;
}

.hero-scroll-txt {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--dim);
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .hero-brand-ar {
        font-size: clamp(72px, 22vw, 120px);
    }
}

/* ═══════════════════════════════
   SECTION COMMON
═══════════════════════════════ */
section {
    padding: 110px 52px;
    position: relative;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.sec-label::before {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: var(--grad);
}

.sec-title {
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.sec-title .g {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
    max-width: 580px;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about {
    background: linear-gradient(180deg, var(--black) 0%, #080602 50%, var(--black) 100%);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-visual svg {
    width: 100%;
    max-width: 360px;
}

.spin1 {
    animation: spinR 25s linear infinite;
    transform-origin: center;
}

.spin2 {
    animation: spinR 18s linear infinite reverse;
    transform-origin: center;
}

.about-badge-fl {
    position: absolute;
    background: rgba(0, 0, 0, 0.88);
    border: 0.5px solid rgba(201, 165, 78, 0.3);
    padding: 10px 18px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-lt);
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.ab1 {
    top: 8%;
    right: -8%;
    animation: floatY 4s ease-in-out infinite;
}

.ab2 {
    bottom: 8%;
    left: -8%;
    animation: floatY 4s 1.8s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
    line-height: 2;
    margin-bottom: 18px;
}

.about-body strong {
    color: var(--gold-lt);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.footer-content {
    padding: 80px 40px;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit {
    margin-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font);
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(201, 165, 78, 0.5);
}

.stat-item {
    padding: 20px 16px;
    text-align: center;
    background: rgba(201, 165, 78, 0.04);
    border: 0.5px solid rgba(201, 165, 78, 0.1);
    border-radius: 3px;
    transition: var(--tr);
}

.stat-item:hover {
    background: rgba(201, 165, 78, 0.08);
    border-color: rgba(201, 165, 78, 0.28);
    transform: translateY(-3px);
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--dim);
    margin-top: 5px;
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
#services {
    background: var(--black2);
}

.services-top {
    max-width: 1200px;
    margin: 0 auto 56px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.svc {
    background: var(--black3);
    padding: 42px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
    cursor: default;
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s ease;
}

.svc::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: radial-gradient(ellipse at top right, rgba(201, 165, 78, 0.09), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.svc:hover {
    background: var(--black4);
}

.svc:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.svc:hover::after {
    opacity: 1;
}

.svc-num {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold-dk);
    display: block;
    margin-bottom: 22px;
}

.svc-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 165, 78, 0.06);
    border: 0.5px solid rgba(201, 165, 78, 0.14);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--tr);
}

.svc:hover .svc-icon {
    background: rgba(201, 165, 78, 0.12);
    border-color: rgba(201, 165, 78, 0.3);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
}

.svc-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 11px;
    transition: color 0.3s;
}

.svc:hover .svc-title {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
}

.svc-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gold-dk);
    border: 0.5px solid rgba(201, 165, 78, 0.18);
    padding: 3px 9px;
    border-radius: 2px;
}

/* ═══════════════════════════════
   WORK — تعديل 2: بدون tabs، أقسام تحت بعض
═══════════════════════════════ */
#work {
    background: linear-gradient(180deg, var(--black2) 0%, var(--black) 100%);
}

.work-top {
    max-width: 1300px;
    margin: 0 auto 70px;
}

/* عنوان كل قسم داخل العمل */
.work-section {
    margin-bottom: 80px;
}

.work-section:last-child {
    margin-bottom: 0;
}

.work-section-header {
    max-width: 1300px;
    margin: 0 auto 28px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.work-section-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.work-section-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-section-count {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-dk);
}

/* ─────────────────────────────
   فيديوهات الريلز 9:16 — 6 cols
   Hover = play muted / Leave = stop / Click = popup
───────────────────────────── */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    max-width: 1300px;
    margin: 0 auto;
}

.vid-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--black3);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.vid-card:hover {
    transform: translateY(-5px);
}

.vid-card.reel-type {
    aspect-ratio: 9/16;
}

.vid-card.wide-type {
    aspect-ratio: 16/9;
}

.vid-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.vid-card:hover .vid-thumb {
    transform: scale(1.1);
}

.vid-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.vid-card:hover .vid-placeholder {
    background: rgba(0, 0, 0, 0.1);
}

.vid-play-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vid-card:hover .vid-play-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(201, 165, 78, 0.3);
}

.vid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
    opacity: 0.8;
}



/* ─────────────────────────────
   بودكاست وفلوجز — جنباً إلى جنب
───────────────────────────── */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ─────────────────────────────
   SWIPER SLIDER — ثمنيلز وسوشيال
───────────────────────────── */
.swiper {
    width: 100%;
    padding: 50px 0 80px;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 165, 78, 0.2);
    background: var(--black3);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s,
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.socialSwiper .swiper-slide {
    width: 260px;
    aspect-ratio: 3/4;
}

.swiper-slide:hover {
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 15px 45px rgba(201, 165, 78, 0.18);
    z-index: 10;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: rgba(201, 165, 78, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ─────────────────────────────
   REVEAL ANIMATION — ظهور ناعم
───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    filter: blur(10px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s ease;
    will-change: transform, opacity, filter;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Delays */
.reveal.d1 {
    transition-delay: 0.15s;
}

.reveal.d2 {
    transition-delay: 0.25s;
}

.reveal.d3 {
    transition-delay: 0.35s;
}

/* ─────────────────────────────
   GLOBAL
───────────────────────────── */
.show-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    background: transparent;
    border: 1px solid rgba(201, 165, 78, 0.3);
    color: var(--gold);
    padding: 14px 40px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.vid-modal-close,
.vid-modal-external {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 165, 78, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.vid-modal-close {
    top: 20px;
    left: 20px;
}

.vid-modal-external {
    top: 20px;
    right: 20px;
}

.vid-modal-close:hover,
.vid-modal-external:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.vid-modal-external:hover {
    transform: scale(1.1);
}

.vid-modal-close svg,
.vid-modal-external svg {
    width: 20px;
    height: 20px;
}

.vid-modal-close:hover svg path,
.vid-modal-external:hover svg path,
.vid-modal-external:hover svg polyline,
.vid-modal-external:hover svg line {
    stroke: #000;
}

.btn-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease);
    z-index: 0;
}

.btn-more span {
    position: relative;
    z-index: 1;
}

.btn-more:hover {
    color: #000;
    border-color: var(--gold);
}

.btn-more:hover::before {
    transform: translateY(0);
}

/* ════════════════════════════════
   LIGHTBOX — عند الضغط على كارت
════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(14px);
    padding: 24px;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.45s var(--ease);
    border: 0.5px solid rgba(201, 165, 78, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: #0a0a0a;
}

.lightbox.open .lightbox-inner {
    transform: scale(1) translateY(0);
}

/* صورة أو تصميم placeholder */
.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: min(500px, 90vw);
    min-height: min(300px, 50vh);
    background: linear-gradient(135deg, #111, #0d0a04);
}

.lightbox-content.thumb-mode {
    /* min-width: 700px;
    aspect-ratio: 16/9; */
}

.lightbox-content.social-mode {
    /* min-width: 380px; */
    /* aspect-ratio: 3/4; */
}

/* placeholder text داخل اللايتبوكس */
.lb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.lb-placeholder-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(201, 165, 78, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.lb-placeholder-icon svg {
    width: 28px;
    height: 28px;
}

.lb-title {
    font-size: 18px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lb-sub {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(201, 165, 78, 0.35);
}

/* صورة فعلية لما تضيف */
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* زرار إغلاق */
.lightbox-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    border: 0.5px solid rgba(201, 165, 78, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
}

.lightbox-close:hover {
    background: rgba(201, 165, 78, 0.2);
}

.lightbox-close svg {
    width: 16px;
    height: 16px;
}

/* أزرار التنقل داخل اللايتبوكس */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 80px);
    left: -40px;
    pointer-events: none;
    z-index: 5;
}

.lb-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    border: 0.5px solid rgba(201, 165, 78, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
    pointer-events: all;
}

.lb-nav-btn:hover {
    background: var(--gold);
}

.lb-nav-btn:hover svg path {
    stroke: #000;
}

.lb-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* عداد */
.lb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(201, 165, 78, 0.5);
    z-index: 5;
}

/* ═══════════════════════════════
   VIDEO POPUP MODAL
═══════════════════════════════ */
.vid-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(12px);
}

.vid-modal.open {
    opacity: 1;
    pointer-events: all;
}

.vid-modal-inner {
    position: relative;
    width: min(90vw, 1000px);
    border: 0.5px solid rgba(201, 165, 78, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.4s var(--ease);
}

.vid-modal.open .vid-modal-inner {
    transform: scale(1);
}

.vid-modal-inner video {
    width: 100%;
    display: block;
    background: var(--black);
}



.vid-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 0.5px solid rgba(201, 165, 78, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
}

.vid-modal-close:hover {
    background: rgba(201, 165, 78, 0.2);
}

.vid-modal-close svg {
    width: 16px;
    height: 16px;
}

/* gold border animation on modal open */
.vid-modal-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(201, 165, 78, 0.15);
    border-radius: 4px;
}

/* ═══════════════════════════════
   PROCESS
═══════════════════════════════ */
#process {
    background: var(--black);
}

.process-top {
    max-width: 1000px;
    margin: 0 auto 56px;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 32px;
    padding: 38px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
    transition: var(--tr);
}

.process-step:hover {
    background: rgba(201, 165, 78, 0.025);
    padding-right: 12px;
}

.ps-num {
    font-size: 10px;
    letter-spacing: 3px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    padding-top: 4px;
}

.ps-title {
    font-size: 21px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.ps-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-dk);
    margin-bottom: 12px;
}

.ps-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */

/* ═══════════════════════════════

   TESTIMONIALS

═══════════════════════════════ */

#testi {

    background: linear-gradient(180deg, var(--black) 0%, #080602 100%);

}



.testi-top {

    max-width: 1200px;

    margin: 0 auto 56px;

}



.testi-grid {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3px;

}



.testi-card {

    background: var(--black3);

    padding: 40px 30px;

    position: relative;

    overflow: hidden;

    transition: var(--tr);

}



.testi-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 1px;

    background: var(--grad);

    opacity: 0;

    transition: opacity 0.4s;

}



.testi-card:hover::before {

    opacity: 1;

}



.testi-card:hover {

    background: var(--black4);

}



.testi-card::after {

    content: '"';

    position: absolute;

    top: 10px;

    left: 18px;

    font-size: 110px;

    font-weight: 900;

    line-height: 1;

    color: rgba(201, 165, 78, 0.04);

    font-family: Georgia, serif;

    pointer-events: none;

}



.testi-stars {

    display: flex;

    gap: 4px;

    margin-bottom: 16px;

}



.star {

    width: 12px;

    height: 12px;

    background: var(--grad);

    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);

}



.testi-txt {

    font-size: 14px;

    font-weight: 300;

    color: rgba(255, 255, 255, 0.56);

    line-height: 1.95;

    margin-bottom: 26px;

    position: relative;

    z-index: 1;

}



.testi-author {

    display: flex;

    align-items: center;

    gap: 14px;

}



.t-avatar {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(201, 165, 78, 0.4);

    padding: 2px;

    background: rgba(201, 165, 78, 0.08);

    flex-shrink: 0;

    position: relative;

    overflow: hidden;

    transition: var(--tr);

}



.testi-card:hover .t-avatar {

    border-color: var(--gold);

    box-shadow: 0 0 18px rgba(201, 165, 78, 0.25);

}



.t-avatar img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    display: block;

}



.t-name {

    font-size: 15px;

    font-weight: 700;

    color: #fff;

    letter-spacing: 0.2px;

}



.t-role {

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--gold-dk);

    margin-top: 4px;

}

/* ═══════════════════════════════
   CTA / WHATSAPP
═══════════════════════════════ */
#cta {
    background: var(--black2);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 165, 78, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-q {
    font-size: clamp(30px, 5.5vw, 60px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
}

.cta-q .g {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
    max-width: 520px;
    margin: 0 auto 50px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: var(--grad);
    color: var(--black);
    padding: 18px 50px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.btn-wa::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-wa:hover {
    transform: translateY(-4px);
}

.btn-wa:hover::after {
    opacity: 1;
}

.wa-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {}

.footer-content {
    background: var(--black);
    border-top: 0.5px solid rgba(201, 165, 78, 0.1);
    padding: 34px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.f-ar {
    min-height: 25px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.f-en {
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.s-btn {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: rgba(201, 165, 78, 0.06);
    border: 0.5px solid rgba(201, 165, 78, 0.17);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--tr);
}

.s-btn:hover {
    background: rgba(201, 165, 78, 0.14);
    border-color: rgba(201, 165, 78, 0.44);
    transform: translateY(-2px);
}

.s-btn svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {


    nav {
        padding: 16px 24px;
    }

    nav.stuck {
        padding: 11px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 22px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab1,
    .ab2 {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}




.ndfHFb-c4YZDc-Wrql6b {
    display: none !important;
}