/* ============================================================
   SMDigi — Premium SMMA Website Styles
   ============================================================ */

:root {
    --bg: #03050d;
    --bg2: #080b14;
    --bg3: #0d1220;
    --card: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.07);
    --border-h: rgba(124,58,237,0.45);

    --purple: #7c3aed;
    --purple-l: #a855f7;
    --blue: #2563eb;
    --blue-l: #3b82f6;
    --cyan: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --wa: #25D366;

    --text: #f8fafc;
    --text2: #94a3b8;
    --text3: #64748b;

    --grad: linear-gradient(135deg, #7c3aed, #2563eb);
    --grad-text: linear-gradient(135deg, #a855f7, #06b6d4);

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --ease: cubic-bezier(0.4,0,0.2,1);
    --t: all 0.3s var(--ease);
    --t-slow: all 0.6s var(--ease);
}

/* ── Light mode overrides ── */
[data-theme="light"] {
    --bg: #f4f6fb;
    --bg2: #eef0f8;
    --bg3: #e4e8f4;
    --card: rgba(0,0,0,0.03);
    --border: rgba(0,0,0,0.08);
    --border-h: rgba(124,58,237,0.4);
    --text: #0f1120;
    --text2: #4a5068;
    --text3: #8890a8;
}
[data-theme="light"] .navbar { background: rgba(244,246,251,0); }
[data-theme="light"] .navbar.scrolled { background: rgba(244,246,251,0.92); border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .hero-bg .orb-1 { opacity: 0.45; }
[data-theme="light"] .hero-bg .orb-2 { opacity: 0.35; }
[data-theme="light"] .hero-bg .grid-overlay { background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px); }
[data-theme="light"] .hero-metrics { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .trusted { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .service-card,
[data-theme="light"] .testi-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .step-body { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
[data-theme="light"] .dashboard-card { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
[data-theme="light"] .float-card { background: #fff; box-shadow: 0 6px 30px rgba(0,0,0,0.12); }
[data-theme="light"] .pf-overlay { background: linear-gradient(to top, rgba(15,17,32,0.97) 50%, rgba(15,17,32,0.3) 100%); }
[data-theme="light"] .nav-link { color: var(--text2); }
[data-theme="light"] .nav-link:hover { color: var(--text); }
[data-theme="light"] .nav-menu.open { background: rgba(244,246,251,0.98); }
[data-theme="light"] .footer { background: #eef0f8; }
[data-theme="light"] .calendly-wrapper { background: #fff; }
[data-theme="light"] #preloader { background: #f4f6fb; }
[data-theme="light"] .preloader-logo { color: var(--text); }

/* Theme toggle button */
.theme-toggle {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text2);
    font-size: 1rem;
    transition: var(--t);
    cursor: pointer;
}
.theme-toggle:hover { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.35); color: var(--purple-l); }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}
img, iframe, video, embed { max-width: 100%; }
section { overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; word-break: break-word; overflow-wrap: break-word; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Cairo', sans-serif; line-height: 1.4; }

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

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--text2); margin-top: 0.75rem; font-size: 1.05rem; }

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-l);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--t);
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(124,58,237,0.6);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--purple-l);
    color: var(--purple-l);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: var(--wa);
    color: #fff;
    box-shadow: 0 0 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(37,211,102,0.55);
}

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
}
.preloader-logo span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}
.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--grad);
    border-radius: 2px;
    animation: fillBar 1.8s var(--ease) forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--t);
}
.navbar.scrolled {
    background: rgba(3,5,13,0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
}
.logo span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--text2);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--t);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: var(--t);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    background: var(--grad);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    border-radius: var(--r-md);
    font-size: 0.88rem;
    box-shadow: 0 0 20px rgba(124,58,237,0.35);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(124,58,237,0.55); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
/* Nav social icons */
.nav-social {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text3);
    font-size: 0.9rem;
    transition: var(--t);
}
.nav-social:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); color: var(--purple-l); transform: translateY(-2px); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}
.lang-btn {
    padding: 0.28rem 0.65rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text3);
    letter-spacing: 0.05em;
    transition: var(--t);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 0 12px rgba(124,58,237,0.4);
}

/* RTL support */
[dir="rtl"] { font-family: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .hero-metrics { flex-direction: row-reverse; }
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .services-tabs { flex-direction: row-reverse; }
[dir="rtl"] .service-card p { text-align: right; }
[dir="rtl"] .why-feature { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .why-content { text-align: right; }
[dir="rtl"] .why-content > p { text-align: right; }
[dir="rtl"] .booking-benefits li { flex-direction: row-reverse; }
[dir="rtl"] .booking-info { text-align: right; }
[dir="rtl"] .testi-header { flex-direction: row-reverse; }
[dir="rtl"] .testi-info { text-align: right; }
[dir="rtl"] .testi-card p { text-align: right; }
[dir="rtl"] .step-body { text-align: right; }
[dir="rtl"] .why-feature p, [dir="rtl"] .why-feature h4 { text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-brand p { text-align: right; }
[dir="rtl"] .footer-col ul a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .wa-float { right: auto; left: 2rem; }
[dir="rtl"] .nav-link::after { left: auto; right: 0; }
[dir="rtl"] .scroll-indicator { display: none; }
[dir="rtl"] .process-steps { direction: rtl; }

.nav-wa {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--wa);
    font-size: 1.1rem;
    transition: var(--t);
}
.nav-wa:hover { background: var(--wa); color: #fff; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: floatOrb 10s ease-in-out infinite;
}
.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
    top: -300px; right: -200px;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
    bottom: -200px; left: -150px;
    animation-delay: -4s;
}
.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
    top: 45%; left: 35%;
    animation-delay: -7s;
}
@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.08); }
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple-l);
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(16,185,129,0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title { margin-bottom: 1.25rem; }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text2);
    margin-bottom: 2.2rem;
    max-width: 580px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
}
.metric { text-align: center; }
.metric-value {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.metric-label { font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; }
.metric-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); }
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid var(--text3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--text3);
    border-radius: 2px;
    animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ── Trusted ── */
.trusted {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.trusted-label { text-align: center; font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.logos-track { overflow: hidden; }
.logos-slide {
    display: flex;
    gap: 3.5rem;
    animation: marquee 22s linear infinite;
    width: max-content;
}
.logo-item {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text3);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: var(--t);
}
.logo-item:hover { color: var(--purple-l); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Services ── */
.services { background: var(--bg2); }
.services-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--t);
}
.tab-btn.active, .tab-btn:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 25px rgba(124,58,237,0.4);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: var(--t);
}
.service-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124,58,237,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-card.hidden { display: none; }
.service-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-sm);
    background: rgba(from var(--ic) r g b / 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--ic);
    font-size: 1.3rem;
    border: 1px solid rgba(from var(--ic) r g b / 0.2);
}
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tags span {
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-size: 0.74rem;
    color: var(--text3);
}

/* ── Why Us ── */
.why-us { position: relative; overflow: hidden; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.why-content h2 { margin-bottom: 1rem; }
.why-content > p { color: var(--text2); margin-bottom: 2rem; line-height: 1.75; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-icon {
    width: 42px; height: 42px;
    border-radius: var(--r-sm);
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-l);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.why-feature h4 { margin-bottom: 0.25rem; }
.why-feature p { color: var(--text2); font-size: 0.88rem; }

/* Dashboard card visual */
.why-visual { position: relative; }
.dashboard-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}
.main-card { padding: 1.75rem; }
.dash-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.dash-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dash-dot.green { background: #10b981; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.red { background: #ef4444; }
.dash-title { font-size: 0.82rem; color: var(--text3); margin-left: 0.5rem; font-weight: 600; }
.dash-metric-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.dash-metric { flex: 1; text-align: center; }
.dm-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; display: block; }
.dm-label { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; }
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
}
.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--purple-l), var(--purple));
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 20%;
    transition: all 0.8s var(--ease);
}
.bar span {
    position: absolute;
    bottom: -1.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--text3);
}
.float-card {
    position: absolute;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 2;
}
.float-card i { font-size: 1.4rem; }
.float-card strong { display: block; font-weight: 700; }
.float-card span { color: var(--text3); }
.fc-1 { top: -20px; right: -20px; animation: floatCard 5s ease-in-out infinite; }
.fc-2 { bottom: 20px; right: -30px; animation: floatCard 5s ease-in-out infinite 1.5s; }
.fc-3 { bottom: 100px; left: -30px; animation: floatCard 5s ease-in-out infinite 3s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Portfolio ── */
.portfolio { background: var(--bg2); }
.portfolio-filters {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--t);
}
.filter-btn.active, .filter-btn:hover {
    background: rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.4);
    color: var(--purple-l);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.portfolio-item { border-radius: var(--r-lg); overflow: hidden; }
.portfolio-item.hidden { display: none; }
.pf-card {
    position: relative;
    height: 320px;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
}
.pf-bg {
    position: absolute;
    inset: 0;
    background: var(--g);
    opacity: 0.7;
}
.pf-mock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,5,13,0.97) 50%, rgba(3,5,13,0.3) 100%);
    opacity: 0;
    transition: var(--t-slow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-l);
    margin-bottom: 0.5rem;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 100px;
    padding: 0.2rem 0.7rem;
    display: inline-block;
    width: fit-content;
}
.pf-overlay h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.pf-metrics { display: flex; gap: 1rem; flex-wrap: wrap; }
.pf-metrics div { text-align: center; }
.pf-metrics strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.15rem; color: #fff; }
.pf-metrics small { font-size: 0.7rem; color: var(--text2); }
.portfolio-cta { text-align: center; }
.portfolio-cta p { color: var(--text2); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* Mock UI elements */
.mock-phone {
    width: 110px; height: 190px;
    background: rgba(0,0,0,0.5);
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.15);
    overflow: hidden;
    padding: 8px;
}
.mock-screen { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.mock-stories-row { display: flex; gap: 4px; }
.mock-stories-row div { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4); flex-shrink: 0; }
.mock-post-card { background: rgba(255,255,255,0.1); border-radius: 6px; flex: 1; }
.mock-post-card.small { flex: 0.5; }
.mock-dashboard {
    width: 180px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-dash-header { height: 12px; background: rgba(255,255,255,0.15); border-radius: 4px; margin-bottom: 8px; width: 70%; }
.mock-dash-chart { height: 60px; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15)); border-radius: 6px; margin-bottom: 8px; }
.mock-dash-stats { display: flex; gap: 6px; }
.mock-dash-stats div { flex: 1; height: 30px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.mock-linkedin-card {
    width: 160px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-li-banner { height: 45px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2)); }
.mock-li-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.3); margin: -18px 0 8px 10px; border: 2px solid rgba(0,0,0,0.5); }
.mock-li-lines { padding: 0 10px 10px; display: flex; flex-direction: column; gap: 5px; }
.mock-line { height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-website {
    width: 170px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-web-nav { height: 18px; background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.05); }
.mock-web-hero { height: 60px; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.12)); margin: 6px; border-radius: 6px; }
.mock-web-cards { display: flex; gap: 4px; padding: 0 6px 6px; }
.mock-web-cards div { flex: 1; height: 35px; background: rgba(255,255,255,0.08); border-radius: 4px; }
.mock-ads-panel {
    width: 160px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 6px;
}
.mock-ad-row { height: 28px; background: rgba(255,255,255,0.1); border-radius: 5px; }
.mock-ad-row.short { width: 60%; }
.mock-tiktok {
    width: 100px; height: 170px;
    background: #000;
    border-radius: 14px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-tt-video { flex: 1; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15)); }
.mock-tt-sidebar { width: 22px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 8px 4px; }
.mock-tt-sidebar div { width: 14px; height: 14px; background: rgba(255,255,255,0.3); border-radius: 50%; }

/* ── Process ── */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}
.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(124,58,237,0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.step-body { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.5rem; transition: var(--t); }
.step-body:hover { border-color: var(--border-h); transform: translateY(-4px); }
.step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(124,58,237,0.4);
}
.step-body h3 { margin-bottom: 0.6rem; }
.step-body p { color: var(--text2); font-size: 0.88rem; line-height: 1.65; }
.process-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    margin-top: 60px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ── Testimonials ── */
.testimonials { background: var(--bg2); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    transition: var(--t);
}
.testi-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.testi-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testi-info { flex: 1; }
.testi-info strong { display: block; font-size: 0.92rem; }
.testi-info span { font-size: 0.78rem; color: var(--text3); }
.testi-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }
.testi-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; font-style: italic; }

/* ── Booking ── */
.booking {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.booking::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.booking-info { position: sticky; top: 100px; }
.booking-info h2 { margin-bottom: 1rem; }
.booking-info > p { color: var(--text2); margin-bottom: 2rem; line-height: 1.75; }
.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}
.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text2);
}
.booking-benefits li i { color: var(--green); font-size: 1rem; width: 18px; }
.booking-benefits li i.fa-video { color: var(--blue-l); }
.booking-benefits li i.fa-calendar-check { color: var(--purple-l); }
.booking-benefits li i.fa-bell { color: var(--amber); }
.booking-benefits li i.fa-gift { color: var(--cyan); }
.booking-alt p { color: var(--text3); font-size: 0.85rem; margin-bottom: 0.75rem; }
.calendly-wrapper {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.calendly-inline-widget { border-radius: var(--r-xl); }

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(124,58,237,0.35); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--t);
}
.faq-q:hover { color: var(--purple-l); }
.faq-icon {
    font-size: 0.85rem;
    color: var(--purple-l);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-a.open { max-height: 200px; }
.faq-a p { padding: 0 1.5rem 1.25rem; color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

/* ── Footer ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p { color: var(--text3); font-size: 0.88rem; margin: 1rem 0 1.5rem; line-height: 1.7; }
.footer-logo { font-size: 1.6rem; }
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.sl {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text3);
    font-size: 0.9rem;
    transition: var(--t);
}
.sl:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); color: var(--purple-l); }
.sl-wa:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4); color: var(--wa); }
.footer-col h4 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: var(--text2); font-size: 0.9rem; transition: var(--t); }
.footer-col ul a:hover { color: var(--purple-l); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.footer-contact-item i { color: var(--purple-l); width: 16px; font-size: 0.9rem; }
.footer-contact-item a, .footer-contact-item span { color: var(--text2); font-size: 0.88rem; transition: var(--t); }
.footer-contact-item a:hover { color: var(--purple-l); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { color: var(--text3); font-size: 0.84rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text3); font-size: 0.84rem; transition: var(--t); }
.footer-bottom-links a:hover { color: var(--purple-l); }

/* ── WhatsApp Float ── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}
.wa-float-btn {
    position: relative;
    width: 62px; height: 62px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: waRing 2.5s ease-out infinite;
}
.wa-ring.ring-2 { animation-delay: 1.25s; }
@keyframes waRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.9); opacity: 0; }
}
.wa-float-icon {
    position: relative;
    width: 62px; height: 62px;
    background: var(--wa);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--t);
    z-index: 1;
}
.wa-float-btn:hover .wa-float-icon { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37,211,102,0.7); }
.wa-tooltip {
    background: var(--bg3);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: var(--r-md);
    padding: 0.8rem 1rem;
    min-width: 160px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--t);
    pointer-events: none;
}
.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.wa-tooltip strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 0.2rem; }
.wa-tooltip span { font-size: 0.78rem; color: var(--text3); }
.wa-tooltip-close {
    position: absolute;
    top: 0.4rem; right: 0.5rem;
    color: var(--text3);
    font-size: 1rem;
    line-height: 1;
    transition: var(--t);
}
.wa-tooltip-close:hover { color: var(--text); }

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */

/* Tablet large */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-visual { display: none; }
    .booking-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .booking-info { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Tablet */
@media (max-width: 900px) {
    /* Nav mobile menu */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(3,5,13,0.97);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { border-bottom: 1px solid var(--border); }
    .nav-link { font-size: 1.1rem; padding: 1rem 0; display: block; }
    .nav-link::after { display: none; }
    .nav-cta {
        background: var(--grad);
        text-align: center;
        padding: 0.9rem;
        border-radius: var(--r-md);
        margin-top: 0.5rem;
        box-shadow: 0 0 20px rgba(124,58,237,0.3);
        justify-content: center;
    }
    .hamburger { display: flex; z-index: 1000; }

    /* Sections */
    .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-line { width: 2px; height: 36px; margin-left: 0; }
    .process-step { max-width: 500px; width: 100%; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-filters { gap: 0.4rem; }
    .filter-btn { padding: 0.45rem 1rem; font-size: 0.8rem; }
    .hero-metrics { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
}

/* Mobile */
@media (max-width: 640px) {
    section { padding: 65px 0; }

    /* Hero */
    .hero { padding: 100px 0 60px; }
    .hero-badge { font-size: 0.74rem; padding: 0.35rem 0.85rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn { justify-content: center; width: 100%; }
    .hero-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    .metric-divider { display: none; }
    .metric-value { font-size: 1.4rem; }

    /* Trusted */
    .trusted-label { font-size: 0.72rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .services-tabs { gap: 0.5rem; }
    .tab-btn { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
    .service-card { padding: 1.5rem; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-filters {
        gap: 0.4rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .portfolio-filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; }

    /* Nav */
    .navbar { padding: 0.75rem 0; }
    .nav-container { padding: 0 1rem; }
    .logo { font-size: 1.45rem; }
    .nav-actions { gap: 0.5rem; }
    .theme-toggle { width: 32px; height: 32px; font-size: 0.85rem; }
    .nav-wa { width: 32px; height: 32px; font-size: 0.95rem; }
    .lang-switcher { padding: 2px; }
    .lang-btn { padding: 0.22rem 0.45rem; font-size: 0.68rem; }

    /* Hero */
    .container { padding: 0 1rem; }
    .hero-title { word-break: break-word; }
    .hero-actions .btn { white-space: normal; text-align: center; }

    /* Why Us */
    .why-grid { grid-template-columns: 1fr; }
    .why-features { gap: 1.25rem; }
    .why-feature { padding: 1.25rem; border-radius: 14px; }

    /* Process */
    .process-steps { flex-direction: column; align-items: center; }
    .process-step { max-width: 100%; padding: 1.25rem; border-radius: 14px; }
    .process-line { width: 2px; height: 28px; margin: 0 auto; }
    .step-number { font-size: 2rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 1.25rem; border-radius: 14px; }

    /* Booking */
    .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .booking-info { position: static; }
    .booking-info h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
    .booking-benefits li { font-size: 0.88rem; }
    .calendly-wrapper { border-radius: 14px; }

    /* FAQ */
    .faq-list { gap: 0.6rem; }
    .faq-q { padding: 1rem 1.1rem; font-size: 0.9rem; }
    .faq-a p { padding: 0 1.1rem 1rem; font-size: 0.86rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { max-width: 100%; }
    .footer-contact-item { font-size: 0.88rem; }
    .footer-bottom-links { gap: 1rem; flex-wrap: wrap; }
    .footer-bottom p { font-size: 0.78rem; }

    /* WhatsApp float */
    .wa-float { bottom: 1rem; right: 1rem; }
    .wa-float-icon { width: 54px; height: 54px; font-size: 1.5rem; }
    .wa-float-btn { width: 54px; height: 54px; }
    .wa-tooltip { display: none; }

    /* Section shared */
    section { padding: 60px 0; }
    .section-title { font-size: clamp(1.5rem, 6.5vw, 2rem); word-break: break-word; }
    .section-subtitle { font-size: 0.92rem; }
}

/* ── Small phones — 400px (main site) ── */
@media (max-width: 400px) {
    .container { padding: 0 0.85rem; }
    .hero-title { font-size: clamp(1.7rem, 9vw, 2.1rem); }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-metrics { padding: 1rem; gap: 0.75rem; }
    .metric-value { font-size: 1.25rem; }
    .section-title { font-size: clamp(1.35rem, 7.5vw, 1.75rem); }
    .service-card { padding: 1.1rem; }
    .testi-card { padding: 1rem; }
    .process-step { padding: 1rem; }
    .faq-q { padding: 0.85rem 1rem; }
    .footer-grid { gap: 1.5rem; }
}

/* ── RTL (Arabic) — Main Site ── */
[dir="rtl"] .navbar .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .nav-menu { text-align: right; }
[dir="rtl"] .nav-actions { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero-metrics { flex-direction: row-reverse; }
[dir="rtl"] .trusted-label { direction: rtl; }
[dir="rtl"] .trusted-track { flex-direction: row-reverse; }
[dir="rtl"] .portfolio-grid { direction: rtl; }
[dir="rtl"] .portfolio-filters { flex-direction: row-reverse; }
[dir="rtl"] .pf-tags { flex-direction: row-reverse; }
[dir="rtl"] .faq-q { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .faq-q span { text-align: right; }
[dir="rtl"] .faq-a p { text-align: right; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .section-badge { text-align: right; }
[dir="rtl"] .wa-float { right: auto; left: 1rem; }
[dir="rtl"] .wa-tooltip { transform: translateX(-10px); }
[dir="rtl"] .wa-float:hover .wa-tooltip { transform: translateX(0); }
/* Phone numbers: always LTR regardless of document direction */
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href^="https://wa.me"],
[dir="rtl"] .footer-contact-item a[href^="https://wa"] { direction: ltr; unicode-bidi: embed; }

/* ── RTL (Arabic) — Mobile nav overlay ── */
@media (max-width: 900px) {
    [dir="rtl"] .nav-menu { align-items: flex-end; padding-right: 2rem; padding-left: 1rem; }
    [dir="rtl"] .hamburger { order: -1; }
}

/* ── Tablet extra ── */
@media (max-width: 900px) {
    .pf-card { height: 260px; }
    .pf-overlay { opacity: 1; background: linear-gradient(to top, rgba(3,5,13,0.95) 45%, rgba(3,5,13,0.1) 100%); }
    .step-body { padding: 1.5rem; }
    .step-num { font-size: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-feature { gap: 0.75rem; }
    .booking-info > p { font-size: 0.92rem; }
    .calendly-inline-widget { height: 550px !important; }
    .calendly-wrapper { border-radius: var(--r-lg); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
    .footer-contact-item { flex-wrap: wrap; }
    .wa-float { bottom: 1.25rem; right: 1.25rem; }
    .wa-float-icon { width: 54px; height: 54px; font-size: 1.55rem; }
    .wa-float-btn { width: 54px; height: 54px; }
    .wa-tooltip { display: none; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header p { font-size: 0.92rem; }
}

/* Hide social icons in nav on small screens — visible in mobile menu */
@media (max-width: 768px) {
    .nav-social { display: none; }
    .lang-switcher { gap: 1px; }
    .lang-btn { padding: 0.25rem 0.5rem; font-size: 0.68rem; }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-metrics { grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1rem; }
    .metric-value { font-size: 1.25rem; }
    .btn { padding: 0.8rem 1.4rem; font-size: 0.88rem; }
    .nav-container { padding: 0 1rem; }
    .container { padding: 0 1rem; }
}
