/* =====================================================
   Unlock Meta | وسطاء ميتا
   Main Stylesheet v1.0
   ===================================================== */

/* =====================================================
   1. CSS Variables & Root
   ===================================================== */
:root {
    --primary: #0866FF;
    --primary-dark: #0052CC;
    --primary-light: #4A90FF;
    --primary-glow: rgba(8, 102, 255, 0.2);
    --secondary: #1B74E4;
    --accent: #00C9FF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    --bg-main: #F5F9FF;
    --bg-card: #FFFFFF;
    --bg-dark: #0A0E1A;
    --bg-dark-2: #111827;

    --text-main: #1C1E21;
    --text-light: #65676B;
    --text-muted: #8A8D91;
    --text-white: #FFFFFF;

    --border: #E4E6EA;
    --border-light: #F0F2F5;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-primary: 0 8px 32px rgba(8, 102, 255, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-main: 'Cairo', 'Tajawal', sans-serif;
    --header-height: 72px;
}

/* =====================================================
   2. Reset & Base
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; padding: 0; margin: 0; }

::selection {
    background: var(--primary);
    color: white;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* =====================================================
   3. Loading Screen
   ===================================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    width: 260px;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.loader-logo .logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(8, 102, 255, 0.4);
}

.loader-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.loader-logo .logo-text span {
    color: var(--primary-light);
}

.loader-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    animation: loadProgress 1.8s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    60% { width: 80%; }
    100% { width: 100%; }
}

/* =====================================================
   4. Header / Navbar
   ===================================================== */
#main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    z-index: 1000;
}

#main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

#main-header .navbar {
    padding: 0;
    min-height: var(--header-height);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.brand-name strong {
    color: var(--primary);
}

.brand-name-ar {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(8, 102, 255, 0.07);
}

/* Nav Actions */
.btn-user {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px 14px 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.btn-user:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.user-avatar-sm {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Offcanvas */
.offcanvas {
    max-width: 300px;
    border-radius: 0 !important;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
}

.offcanvas-body { padding: 20px; }

.mobile-nav li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--text-main);
    font-weight: 500;
}

.mobile-nav li a i {
    width: 20px;
    color: var(--primary);
}

.mobile-nav li a:hover { color: var(--primary); }

.mobile-nav-actions {
    margin-top: 24px;
}

/* =====================================================
   5. Buttons
   ===================================================== */
.btn {
    font-family: var(--font-main);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-bounce);
    border: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius-pill);
}

.btn-glow {
    box-shadow: 0 0 0 0 var(--primary-glow);
    animation: btnGlow 2.5s infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px var(--primary-glow); }
    50% { box-shadow: 0 4px 30px rgba(8, 102, 255, 0.5); }
}

/* =====================================================
   6. Hero Section
   ===================================================== */
.hero-section {
    min-height: 100vh;
    padding: calc(var(--header-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0E1A 0%, #0D1B35 40%, #0F2755 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(8, 102, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 8s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 10s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 102, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 102, 255, 0.15);
    border: 1px solid rgba(8, 102, 255, 0.3);
    color: var(--accent);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-number .plus {
    color: var(--primary-light);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-card-main {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.mockup-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
    transition: var(--transition);
}

.mockup-service-item:hover {
    background: rgba(8, 102, 255, 0.15);
    border-color: rgba(8, 102, 255, 0.3);
    transform: translateX(-4px);
}

.mockup-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mockup-service-icon.fb { background: rgba(24, 119, 242, 0.2); color: #1877F2; }
.mockup-service-icon.ig { background: rgba(225, 48, 108, 0.2); color: #E1306C; }
.mockup-service-icon.wa { background: rgba(37, 211, 102, 0.2); color: #25D366; }

.mockup-service-info { flex: 1; }

.mockup-service-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: block;
}

.mockup-service-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.mockup-service-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.badge-available { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.badge-popular { background: rgba(8, 102, 255, 0.2); color: var(--primary-light); }

/* Floating Elements */
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.floating-card.card-success {
    top: -20px;
    left: -30px;
    animation: float1 4s ease-in-out infinite;
}

.floating-card.card-users {
    bottom: 20px;
    right: -20px;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.floating-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.floating-icon.green { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.floating-icon.blue { background: rgba(8, 102, 255, 0.2); color: var(--primary-light); }

.floating-text { display: flex; flex-direction: column; }
.floating-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.floating-value { font-size: 0.88rem; font-weight: 700; color: white; }

/* =====================================================
   7. Section Styles
   ===================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: #EEF3FB;
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 102, 255, 0.08);
    border: 1px solid rgba(8, 102, 255, 0.15);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-title .highlight {
    color: var(--primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =====================================================
   8. Service Cards
   ===================================================== */
.services-section {
    background: var(--bg-main);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(8, 102, 255, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-primary);
}

.service-card-featured::before {
    content: 'الأكثر طلبًا';
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    z-index: 10;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF3FB, #DAE8FF);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.4;
}

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 14px;
    background: var(--bg-main);
    border-radius: var(--radius-md);
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.service-duration i { color: var(--primary); }

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.service-price .currency {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 2px;
}

/* =====================================================
   9. Why Us Section
   ===================================================== */
.why-us-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #EEF3FB 100%);
}

.why-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

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

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(8, 102, 255, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(8, 102, 255, 0.1), rgba(0, 201, 255, 0.1));
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Counter */
.stats-strip {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.2);
}

.stat-item:last-child::after { display: none; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* =====================================================
   10. How It Works
   ===================================================== */
.steps-section {
    background: var(--bg-main);
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 32px;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 52px;
    right: 25px;
    width: 2px;
    height: calc(100% - 52px);
    background: linear-gradient(180deg, var(--primary), transparent);
    z-index: 0;
}

.step-item:last-child::before { display: none; }
.step-item:last-child { padding-bottom: 0; }

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 1;
}

.step-content { flex: 1; padding-top: 10px; }

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   11. FAQ
   ===================================================== */
.faq-section {
    background: #EEF3FB;
}

.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    background: transparent;
    padding: 20px 24px;
    border-radius: var(--radius-md) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(8, 102, 255, 0.05);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* =====================================================
   12. Contact Section
   ===================================================== */
.contact-section {
    background: var(--bg-main);
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-slow);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.contact-card.whatsapp:hover { border-color: #25D366; }
.contact-card.telegram:hover { border-color: #2AABEE; }
.contact-card.email:hover { border-color: var(--primary); }

.contact-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-icon-wrap.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.contact-icon-wrap.telegram { background: rgba(42, 171, 238, 0.1); color: #2AABEE; }
.contact-icon-wrap.email { background: rgba(8, 102, 255, 0.1); color: var(--primary); }

.contact-card:hover .contact-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.contact-card .contact-icon-wrap.whatsapp:hover,
.contact-card:hover .contact-icon-wrap.whatsapp { background: #25D366; color: white; }
.contact-card:hover .contact-icon-wrap.telegram { background: #2AABEE; color: white; }
.contact-card:hover .contact-icon-wrap.email { background: var(--primary); color: white; }

.contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    direction: ltr;
}

/* =====================================================
   13. Footer
   ===================================================== */
.main-footer {
    background: #0A0E1A;
    color: rgba(255,255,255,0.75);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-right: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(8, 102, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.footer-contact a:hover { color: white; }

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.social-btn:hover { transform: translateY(-3px); color: white; }
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-btn.telegram:hover { background: #2AABEE; border-color: #2AABEE; }
.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-btn.instagram:hover { background: linear-gradient(135deg, #E1306C, #833AB4); border-color: transparent; }

.footer-bottom {
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-link {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-bottom-link:hover { color: white; }

/* =====================================================
   14. Scroll To Top
   ===================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-primary);
    z-index: 500;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* =====================================================
   15. Auth Pages (Login / Register)
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0E1A 0%, #0D1B35 60%, #0F2755 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.auth-bg-blur {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.auth-bg-blur::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(8, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-bg-blur::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo .brand-logo {
    justify-content: center;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
    text-align: center;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* =====================================================
   16. Form Styles
   ===================================================== */
.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control, .form-select {
    font-family: var(--font-main);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.92rem;
    color: var(--text-main);
    background: var(--bg-main);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.input-group-text {
    background: var(--bg-main);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    border-radius: var(--radius-md);
}

.input-group .form-control {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.input-group .input-group-text:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* =====================================================
   17. Dashboard / User Panel
   ===================================================== */
.user-dashboard {
    min-height: 100vh;
    background: var(--bg-main);
    padding: calc(var(--header-height) + 40px) 0 60px;
}

.order-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 102, 255, 0.15);
    transform: translateY(-3px);
}

.order-number {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(8, 102, 255, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 12px;
    font-family: monospace;
    direction: ltr;
}

.order-service-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.order-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-meta-item i { color: var(--primary); font-size: 0.75rem; }

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
}

.status-badge i { font-size: 0.7rem; }

/* =====================================================
   18. Dropzone File Upload
   ===================================================== */
.dropzone-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-main);
}

.dropzone-area:hover,
.dropzone-area.dragover {
    border-color: var(--primary);
    background: rgba(8, 102, 255, 0.04);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 16px;
    transition: var(--transition);
}

.dropzone-area:hover .dropzone-icon { opacity: 1; transform: scale(1.1); }
.dropzone-text { font-size: 0.9rem; color: var(--text-light); }
.dropzone-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
}

.file-preview-icon { color: var(--primary); font-size: 1.1rem; }
.file-preview-name { flex: 1; font-size: 0.85rem; font-weight: 500; }
.file-preview-size { font-size: 0.75rem; color: var(--text-muted); }
.file-preview-remove { color: var(--danger); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.file-preview-remove:hover { transform: scale(1.2); }

/* =====================================================
   19. Payment Method Cards
   ===================================================== */
.payment-option {
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition-bounce);
    background: var(--bg-card);
    position: relative;
}

.payment-option:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(8, 102, 255, 0.04);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.payment-option.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.payment-method-details {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 16px;
}

.payment-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.payment-detail-row:last-child { border-bottom: none; }

.payment-detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.payment-detail-value {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    direction: ltr;
    text-align: left;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.copy-btn:hover { background: rgba(8, 102, 255, 0.1); }

/* =====================================================
   20. Page Header
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 60px 0 50px;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.page-header-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.page-header-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header-breadcrumb a:hover { color: white; }

/* =====================================================
   21. Alerts / Notifications
   ===================================================== */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: rgba(16, 185, 129, 0.1); color: #059669; }
.alert-danger  { background: rgba(239, 68, 68, 0.1); color: #DC2626; }
.alert-warning { background: rgba(245, 158, 11, 0.1); color: #D97706; }
.alert-info    { background: rgba(8, 102, 255, 0.1); color: var(--primary); }

/* =====================================================
   22. Responsive
   ===================================================== */
@media (max-width: 992px) {
    :root { --header-height: 64px; }

    .hero-section {
        padding: calc(var(--header-height) + 40px) 0 60px;
        text-align: center;
    }

    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 24px; }
    .hero-visual { margin-top: 40px; }

    .floating-card { display: none; }

    .section { padding: 70px 0; }
    .section-header { margin-bottom: 48px; }

    .auth-card { padding: 32px 28px; }

    .contact-card { padding: 28px; }
    .footer-top { padding: 60px 0 40px; }
}

@media (max-width: 768px) {
    .hero-section { padding: calc(var(--header-height) + 30px) 0 50px; }
    .hero-title { font-size: 2rem; }
    .hero-badge { font-size: 0.78rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; }

    .section { padding: 55px 0; }
    .section-title { font-size: 1.7rem; }

    .service-card { border-radius: var(--radius-md); }
    .service-body { padding: 18px; }

    .stats-strip { padding: 40px 0; }
    .stat-item::after { display: none; }

    .step-item { gap: 14px; }
    .step-num { width: 42px; height: 42px; font-size: 1rem; }

    .auth-card { padding: 24px 20px; margin: 0 16px; border-radius: var(--radius-lg); }

    .page-header { padding: 40px 0 35px; }

    .footer-title::after { right: auto; left: 0; }
}

@media (max-width: 576px) {
    .brand-name-ar { display: none; }

    .hero-stats { gap: 16px; }
    .hero-stat-number { font-size: 1.5rem; }

    .section-header { margin-bottom: 36px; }
    .section-desc { font-size: 0.92rem; }

    .contact-card { padding: 24px 20px; }

    .scroll-top-btn { bottom: 20px; left: 20px; }

    .order-meta { gap: 6px; }
}

/* =====================================================
   23. Utility Classes
   ===================================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
}

.bg-primary-subtle { background: rgba(8, 102, 255, 0.08); }
.border-primary-subtle { border-color: rgba(8, 102, 255, 0.2) !important; }

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 40px 0;
}

/* Override Bootstrap RTL */
.dropdown-menu-start {
    right: 0 !important;
    left: auto !important;
}

/* Smooth page transitions */
.page-transition {
    animation: pageFadeIn 0.4s ease;
}


/* =====================================================
   24. User Dashboard & My Orders
   ===================================================== */
.user-dashboard {
    padding: 40px 0 80px;
}

.order-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.order-number {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(8,102,255,0.08);
    padding: 4px 10px;
    border-radius: 6px;
    direction: ltr;
    display: inline-block;
}

.order-service-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 4px 0;
}

.order-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.order-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* User Avatar */
.user-avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* =====================================================
   25. Order Submission Page
   ===================================================== */

/* Dropzone */
.dropzone-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-main);
}

.dropzone-area:hover,
.dropzone-area.dragover {
    border-color: var(--primary);
    background: rgba(8, 102, 255, 0.04);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 12px;
}

.dropzone-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.dropzone-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.file-preview-icon {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.file-preview-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview-size {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.file-preview-remove {
    color: var(--danger);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
}

.file-preview-remove:hover { background: rgba(239,68,68,0.1); }

/* Payment Options */
.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    height: 100%;
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(8,102,255,0.02);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(8,102,255,0.06);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.payment-method-details {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 8px;
}

.payment-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.payment-detail-row:last-child { border-bottom: none; }

.payment-detail-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.payment-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    direction: ltr;
    word-break: break-all;
    text-align: left;
}

.copy-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.copy-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =====================================================
   26. Admin Page-Specific
   ===================================================== */
.btn-user {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-user:hover {
    background: var(--bg-main);
}

/* Status Badges boost */
.status-badge {
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Badge pulse for notifications */
.badge-pulse::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Page Header for inner pages */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(8,102,255,0.15) 0%, transparent 60%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.page-header-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.page-header-breadcrumb a:hover { color: white; }

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* FAQ Accordion Admin Style */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    background: white;
    color: var(--text-main);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(8,102,255,0.05);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    /* Override Bootstrap arrow */
}

.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}
