/*
 * Doora AI Theme — style.css v5.0
 * Theme Name: Doora AI Theme
 * Theme URI: https://doora.ai
 * Author: Doora AI
 * Description: Premium AI Business Strategy Platform Theme
 * Version: 5.0
 */

/* ═══════════════════════════════════════════
   1. CSS VARIABLES & DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
    --primary: #FF9D1C;
    --primary-dark: #E07A00;
    --primary-glow: rgba(255, 157, 28, .35);
    --bg: #080B14;
    --bg-2: #0D1320;
    --bg-card: rgba(255, 255, 255, .04);
    --glass-bg: rgba(255, 255, 255, .05);
    --glass-border: rgba(255, 255, 255, .09);
    --text: #f1f5f9;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --success: #22c55e;
    --error: #ef4444;
    --info: #3b82f6;

    /* Spacing */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Cairo', 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
}

body.lang-en {
    direction: ltr;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ═══════════════════════════════════════════
   3. BACKGROUND EFFECTS
   ═══════════════════════════════════════════ */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 80% at 20% 10%, rgba(255, 157, 28, .12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 80% 90%, rgba(255, 100, 0, .08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(30, 40, 80, .4) 0%, transparent 70%);
    animation: bgPulse 12s ease-in-out infinite;
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

/* ═══════════════════════════════════════════
   4. TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}

.orange-gradient-text {
    background: linear-gradient(135deg, #FF9D1C, #FF5500, #FF9D1C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ═══════════════════════════════════════════
   5. LAYOUT HELPERS
   ═══════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.page-wrapper {
    padding-top: 68px;
    min-height: 100vh;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Spacing utilities */
.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* ═══════════════════════════════════════════
   6. GLASS CARD
   ═══════════════════════════════════════════ */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    will-change: transform;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 157, 28, .25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25), 0 0 30px rgba(255, 157, 28, .08);
}

/* ═══════════════════════════════════════════
   7. BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary,
.btn-secondary,
.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease), background .25s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Ripple */
.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    opacity: 0;
    border-radius: inherit;
    transition: opacity .3s;
}

.btn-primary:active::after,
.btn-secondary:active::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF5500);
    color: #0a0a14;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(.99);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

.btn-danger {
    background: rgba(239, 68, 68, .12);
    border: 1.5px solid rgba(239, 68, 68, .3);
    color: #f87171;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, .2);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   8. BADGES
   ═══════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
}

.badge-gray {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--muted-2);
}

.badge-orange {
    background: rgba(255, 157, 28, .12);
    border: 1px solid rgba(255, 157, 28, .35);
    color: var(--primary);
}

.badge-green {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--success);
}

/* ═══════════════════════════════════════════
   9. FORM ELEMENTS
   ═══════════════════════════════════════════ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-2);
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .25s, background .25s, box-shadow .25s;
    box-sizing: border-box;
    direction: inherit;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 157, 28, .5);
    background: rgba(255, 157, 28, .04);
    box-shadow: 0 0 0 3px rgba(255, 157, 28, .1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

/* ═══════════════════════════════════════════
   10. ALERTS
   ═══════════════════════════════════════════ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    animation: slideDown .3s var(--ease-out);
}

.alert-success {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .3);
    color: #f87171;
}

.alert-info {
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .3);
    color: #93c5fd;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ═══════════════════════════════════════════
   11. NAVIGATION
   ═══════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    padding: 0 24px;
    background: rgba(8, 11, 20, .8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    animation: navSlideDown .5s var(--ease-out);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--muted-2);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .25s var(--ease-spring);
    border-radius: 2px;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    padding: 64px 24px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

/* ═══════════════════════════════════════════
   13. HERO SECTION
   ═══════════════════════════════════════════ */
.hero-section {
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    animation: heroFadeUp .8s var(--ease-out) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Floating orbs */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 157, 28, .15) 0%, transparent 70%);
    animation-delay: -3s;
}

.hero-section::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 100, 0, .1) 0%, transparent 70%);
}

@keyframes orbFloat {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* ═══════════════════════════════════════════
   14. CARDS & COMPONENTS
   ═══════════════════════════════════════════ */
.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

/* Feature cards stagger */
.grid-3>.glass-card:nth-child(1) {
    animation-delay: .1s;
}

.grid-3>.glass-card:nth-child(2) {
    animation-delay: .2s;
}

.grid-3>.glass-card:nth-child(3) {
    animation-delay: .3s;
}

.grid-3>.glass-card:nth-child(4) {
    animation-delay: .4s;
}

.grid-3>.glass-card:nth-child(5) {
    animation-delay: .5s;
}

.grid-3>.glass-card:nth-child(6) {
    animation-delay: .6s;
}

/* ═══════════════════════════════════════════
   15. CHAT DEMO
   ═══════════════════════════════════════════ */
.chat-msg-ai,
.chat-msg-user {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 88%;
    animation: msgPop .35s var(--ease-spring);
}

.chat-msg-ai {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    align-self: flex-start;
}

.chat-msg-user {
    background: linear-gradient(135deg, rgba(255, 157, 28, .2), rgba(255, 100, 0, .12));
    border: 1px solid rgba(255, 157, 28, .3);
    align-self: flex-end;
    margin-left: auto;
}

@keyframes msgPop {
    from {
        opacity: 0;
        transform: scale(.9) translateY(8px);
    }

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

/* ═══════════════════════════════════════════
   16. PROJECT & REPORT
   ═══════════════════════════════════════════ */
.question-card {
    padding: 28px;
    margin-bottom: 16px;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: right;
}

.question-why {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
    padding: 10px;
    background: rgba(255, 157, 28, .06);
    border-radius: 10px;
    border: 1px solid rgba(255, 157, 28, .15);
}

.report-section {
    padding: 32px;
    margin-bottom: 20px;
}

.report-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lean-canvas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.canvas-cell {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    transition: border-color .2s, transform .2s;
}

.canvas-cell:hover {
    border-color: rgba(255, 157, 28, .3);
    transform: translateY(-2px);
}

.canvas-cell h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: right;
}

.canvas-cell p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    text-align: right;
}

/* ═══════════════════════════════════════════
   17. ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes float {

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow)
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 157, 28, .6)
    }
}

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

@keyframes bounceIn {
    0% {
        transform: scale(0)
    }

    60% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.animate-float {
    animation: float 3.5s ease-in-out infinite;
}

.animate-pulse {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeInUp .6s var(--ease-out) both;
}

.animate-scale {
    animation: scaleIn .4s var(--ease-spring) both;
}

/* Scroll-triggered reveal (JS adds .visible class) */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

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

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

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

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

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: var(--primary);
    animation: rotate360 .7s linear infinite;
    display: inline-block;
}

/* ═══════════════════════════════════════════
   18. FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
#whatsapp-float {
    transition: transform .3s var(--ease-spring), box-shadow .3s !important;
}

#whatsapp-float:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 8px 40px rgba(37, 211, 102, .7) !important;
}

/* ═══════════════════════════════════════════
   19. RESPONSIVE — TABLET (max 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-section {
        padding: 100px 24px 60px;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════
   20. RESPONSIVE — MOBILE (max 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Nav */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn-primary {
        padding: 8px 14px;
        font-size: 13px;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    /* Mobile nav open state */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 11, 20, .97);
        backdrop-filter: blur(20px);
        padding: 24px;
        animation: fadeIn .25s var(--ease-out);
        z-index: 999;
    }

    .nav-links.open a {
        padding: 16px 0;
        border-bottom: 1px solid var(--glass-border);
        font-size: 20px;
        font-weight: 700;
        animation: fadeInUp .3s var(--ease-out) both;
    }

    .nav-links.open a:nth-child(1) {
        animation-delay: .05s
    }

    .nav-links.open a:nth-child(2) {
        animation-delay: .1s
    }

    .nav-links.open a:nth-child(3) {
        animation-delay: .15s
    }

    .nav-links.open a:nth-child(4) {
        animation-delay: .2s
    }

    .nav-links.open a::after {
        display: none;
    }

    /* Hamburger → X */
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Grids → single column */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Typography scale down */
    h1 {
        font-size: clamp(30px, 8vw, 48px) !important;
    }

    h2 {
        font-size: clamp(22px, 6vw, 36px) !important;
    }

    /* Hero */
    .hero-section {
        padding: 90px 20px 60px;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    /* Page content */
    .page-content {
        padding: 32px 20px;
    }

    /* Flex column on mobile */
    .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Footer grid */
    .site-footer .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    /* Stats */
    .stat-value {
        font-size: 36px;
    }

    /* WhatsApp button position */
    #whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        width: 50px !important;
        height: 50px !important;
    }

    body.lang-ar #whatsapp-float {
        left: 20px !important;
        right: auto !important;
    }
}

/* ═══════════════════════════════════════════
   21. RESPONSIVE — SMALL MOBILE (max 480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-content {
        padding: 24px 16px;
    }

    .glass-card {
        border-radius: var(--radius);
    }

    .site-footer .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 18px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 32px;
    }

    .nav-actions {
        gap: 6px;
    }
}

/* ═══════════════════════════════════════════
   22. RTL / LTR ADJUSTMENTS
   ═══════════════════════════════════════════ */
body.lang-en .nav-links {
    direction: ltr;
}

body.lang-en .flex-between {
    flex-direction: row;
}

body.lang-en .form-input {
    direction: ltr;
}

body.lang-en .question-text,
body.lang-en .canvas-cell h4,
body.lang-en .canvas-cell p {
    text-align: left;
}

/* ═══════════════════════════════════════════
   23. SCROLL PROGRESS BAR
   ═══════════════════════════════════════════ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF5500);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform .05s linear;
}