/* ============================================
   الخط الآمن للدفع الإلكتروني - SafeLinePay
   Premium Dark Theme Design System
   ============================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    /* Navy Blue Backgrounds - from Instagram identity */
    --bg-main: #020a1a;
    --bg-section: #0a192f;
    --bg-card: rgba(10, 25, 47, 0.88);
    --bg-card-hover: rgba(10, 25, 47, 0.95);
    --border: rgba(100, 160, 210, 0.12);
    --border-hover: rgba(212, 175, 55, 0.5);

    /* Gold/Amber Accent - brand primary */
    --accent: #D4AF37;
    --accent-light: #F0D060;
    --accent-dark: #B8962E;
    --accent-glow: rgba(212, 175, 55, 0.12);
    --accent-glow-strong: rgba(212, 175, 55, 0.3);

    /* Cyan/Electric Blue - brand secondary */
    --cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.1);

    /* Typography */
    --text-main: #e8edf5;
    --text-sub: #8ba4c4;
    --text-muted: #5a7a9e;

    /* Layout */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    direction: rtl;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Background Ambient ---------- */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -40%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---------- Scroll Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.brand-tagline {
    font-size: 0.68rem;
    color: var(--text-sub);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-sub);
    position: relative;
    transition: var(--transition);
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, var(--accent), var(--accent-light));
    border-radius: var(--radius-full);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--text-main);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #f0d060;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #1a0f00;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 0.92rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-main);
    font-size: 20px;
}

.menu-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.menu-toggle .bar::before,
.menu-toggle .bar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transition: var(--transition);
    right: 0;
}

.menu-toggle .bar::before { top: -6px; }
.menu-toggle .bar::after { top: 6px; }

.menu-toggle.active .bar {
    background: transparent;
}
.menu-toggle.active .bar::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--accent);
}
.menu-toggle.active .bar::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--accent);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 80px 24px 32px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-sub);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--text-main);
    background: var(--accent-glow);
    border-color: rgba(34, 197, 94, 0.2);
}

.mobile-nav .mobile-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav .mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.5fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-sub);
    margin-bottom: 16px;
}

.hero-kicker .kicker-badge {
    padding: 2px 10px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    color: #bbf7d0;
    font-size: 0.72rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent), #00E5FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-meta-item {
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.hero-meta-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.hero-meta-item span {
    font-size: 0.75rem;
    color: var(--text-sub);
}

/* Hero Card */
.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    background:
        radial-gradient(circle at 0 0, rgba(8, 47, 73, 0.7), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(22, 163, 74, 0.4), transparent 55%),
        rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hero-pill {
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    font-size: 0.72rem;
    color: var(--text-sub);
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #bbf7d0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-card-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.hero-card-number small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #f5e6a3;
    margin-right: 4px;
}

.hero-card-caption {
    font-size: 0.78rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-chip {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border);
}

.hero-chip-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.hero-chip-value {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
}

.hero-card-footer {
    padding-top: 14px;
    border-top: 1px dashed rgba(34, 197, 94, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: #f5e6a3;
    flex-wrap: wrap;
}

.hero-card-footer .label-soft {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px dashed rgba(74, 222, 128, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 20px 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-sub);
}

/* ============================================
   SECTIONS - Common
   ============================================ */
section {
    padding: 70px 0;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-sub);
    max-width: 640px;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: linear-gradient(180deg, transparent, rgba(10, 15, 30, 0.5), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(to left, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    font-size: 0.68rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ============================================
   FOREX SECTION
   ============================================ */
.forex-section {
    position: relative;
}

.forex-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04), transparent);
    pointer-events: none;
}

.forex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.forex-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.forex-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.forex-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.forex-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forex-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.7;
}

.forex-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-section {
    background: linear-gradient(180deg, transparent, rgba(10, 15, 30, 0.5), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.why-features {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.why-features h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-sub);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.features-list li:hover {
    background: var(--accent-glow);
}

.features-list li .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 2px;
}

/* Steps */
.steps-wrapper h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.step-card {
    padding: 16px 14px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--border-hover);
}

.step-num {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.step-card strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.75rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ============================================
   PAYMENTS SECTION
   ============================================ */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.payment-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.payment-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.payment-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.payment-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.payment-card p {
    font-size: 0.75rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, transparent, rgba(10, 15, 30, 0.5), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(34, 197, 94, 0.15);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.82rem;
    color: var(--text-sub);
    line-height: 1.9;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding-bottom: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 24px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-card {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-hover);
}

.contact-card strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.contact-card a {
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 500;
}

.contact-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Contact Form */
.contact-form-box {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.contact-form-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-form-box .form-desc {
    font-size: 0.78rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.82rem;
    color: var(--text-main);
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-success {
    display: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f5e6a3;
    font-size: 0.85rem;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(2, 6, 23, 0.98);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.footer-brand-text {
    font-size: 0.82rem;
    color: var(--text-sub);
    margin-top: 8px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-sub);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-right: 4px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow-strong);
}

/* per-platform hover colors */
.social-link[aria-label="فيسبوك"]:hover   { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.1); box-shadow: 0 6px 20px rgba(24,119,242,0.2); }
.social-link[aria-label="إنستجرام"]:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.1); box-shadow: 0 6px 20px rgba(225,48,108,0.2); }
.social-link[aria-label="تيك توك"]:hover  { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.08); }
.social-link[aria-label="يوتيوب"]:hover   { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,0.1); box-shadow: 0 6px 20px rgba(255,0,0,0.2); }
.social-link[aria-label="تيليجرام"]:hover { border-color: #29B6F6; color: #29B6F6; background: rgba(41,182,246,0.1); box-shadow: 0 6px 20px rgba(41,182,246,0.2); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: 'تواصل عبر واتساب';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(2, 6, 23, 0.95);
    color: var(--text-main);
    font-size: 0.75rem;
    font-family: inherit;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-card {
        max-width: 500px;
    }

    .services-grid,
    .forex-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .main-nav,
    .header-badge {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .forex-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .header-actions .btn-ghost {
        display: none;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.faq-item[open] {
    border-color: var(--border-hover);
    box-shadow: 0 0 20px var(--accent-glow);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-main);
    user-select: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    margin-right: 12px;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--accent-light);
}

.faq-item[open] summary {
    color: var(--accent-light);
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.87rem;
    color: var(--text-sub);
    line-height: 1.9;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

/* ============================================
   TESTIMONIAL AUTHOR AVATAR
   ============================================ */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #1a0f00;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author div strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-main);
    font-weight: 700;
}

.testimonial-author div span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE: HEADER @ 1024-1100px FIX
   ============================================ */
@media (max-width: 1100px) and (min-width: 900px) {
    .main-nav {
        gap: 16px;
    }
    .main-nav a {
        font-size: 0.76rem;
    }
    .header-badge {
        display: none;
    }
}

/* ============================================
   FAQ RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .faq-grid {
        margin-top: 28px;
    }
    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.85rem;
    }
    .faq-item p {
        padding: 0 18px 16px;
    }
}


/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 90px;
    right: 16px;
    left: 16px;
    z-index: 90;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sticky-cta-inner {
    background: linear-gradient(135deg, rgba(10,25,47,0.97), rgba(2,6,23,0.97));
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 999px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
    pointer-events: all;
    max-width: 680px;
    width: 100%;
    backdrop-filter: blur(20px);
}

.sticky-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    animation: stickPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes stickPulse {
    0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0);   }
    100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

.sticky-text {
    font-size: 0.8rem;
    color: #8ba4c4;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
}

.sticky-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.sticky-close {
    background: none;
    border: none;
    color: #5a7a9e;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
    transition: 0.3s;
}

.sticky-close:hover { color: #D4AF37; }

/* ============================================
   SERVICE CTA BUTTON (inside cards)
   ============================================ */
.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(37,211,102,0.4);
    color: #25D366;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Cairo', sans-serif;
}

.service-cta-btn:hover {
    background: rgba(37,211,102,0.1);
    border-color: #25D366;
    transform: translateX(-3px);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 16px;
    right: 16px;
    left: 16px;
    z-index: 90;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sticky-cta-inner {
    background: linear-gradient(135deg, rgba(10,25,47,0.97), rgba(2,6,23,0.97));
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 999px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
    pointer-events: all;
    max-width: 680px;
    width: 100%;
    backdrop-filter: blur(20px);
}

.sticky-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    animation: stickPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes stickPulse {
    0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0);   }
    100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

.sticky-text {
    font-size: 0.8rem;
    color: #8ba4c4;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
}

.sticky-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.sticky-close {
    background: none;
    border: none;
    color: #5a7a9e;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
    transition: 0.3s;
}

.sticky-close:hover { color: #D4AF37; }

/* ============================================
   STICKY BAR MOBILE
   ============================================ */
@media (max-width: 600px) {
    .sticky-text { display: none; }
    .sticky-cta-inner { justify-content: center; gap: 10px; }
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .main-nav { display: none; }
    .header-badge { display: none; }
    .header-actions .btn { display: none; }
    .menu-toggle { display: flex; }

    /* Hero adjustments */
    .hero-inner { text-align: center; }
    .hero-kicker { justify-content: center; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    .hero-actions .btn { width: 100%; display: flex; }

    /* Stats grid */
    .stats-bar { flex-wrap: wrap; gap: 16px; }
    .stat-item { flex: 0 0 calc(50% - 8px); }

    /* Services grid */
    .services-grid { grid-template-columns: 1fr; }

    /* Payments grid */
    .payment-methods { grid-template-columns: 1fr 1fr; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }

    /* Section padding */
    section { padding: 60px 0; }
    .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 0.82rem; }
    .brand-tagline { display: none; }

    .hero-section h1 { font-size: 1.5rem; }
    .hero-section .hero-subtitle { font-size: 0.9rem; }

    .stat-item { flex: 0 0 100%; }
    .payment-methods { grid-template-columns: 1fr; }

    .section-header h2 { font-size: 1.35rem; }
    .section-header p { font-size: 0.85rem; }

    .sticky-cta-bar { padding: 8px 12px; }
}

