
/* Fix flex minimum sizing for horizontal sliders */
.category-rail, .projects-section, .projects-slider-wrapper {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: clip !important;
}

.projects-track {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

@media (max-width: 900px) {
    .ambient-glow {
        display: none !important;
    }
}


/* Global Strict Zero-Overflow System */
html {
    overflow-x: clip !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    overflow-x: clip !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
}

main, .hero-section, .section, .projects-section, .category-rail, .container {
    max-width: 100% !important;
    overflow-x: clip !important;
}

.ambient-glow {
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* ==========================================================================
   Lama Hussam Rasheed Portfolio Design System
   Palette: Cool Rose / Icy Blush / Midnight Slate & Obsidian Glass
   ========================================================================== */

:root {
    /* Dark Mode (Default Luxury Slate & Cool Rose) */
    --bg-base: #0a0d14;
    --bg-surface: #101522;
    --bg-card: rgba(18, 24, 38, 0.7);
    --bg-card-hover: rgba(26, 34, 52, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Cool Pink & Accent Tokens */
    --rose-primary: #f4a7b9;
    --rose-light: #ffccd5;
    --rose-deep: #e2849d;
    --rose-glow: rgba(244, 167, 185, 0.35);
    --rose-subtle: rgba(244, 167, 185, 0.12);
    --mauve-accent: #c084fc;
    --cyan-accent: #38bdf8;
    --green-live: #22c55e;
    
    /* Typography & Content Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: #f4a7b9;
    
    /* Borders & Outlines */
    --border-subtle: rgba(244, 167, 185, 0.14);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(244, 167, 185, 0.4);
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-rose: 0 10px 30px rgba(244, 167, 185, 0.25);
    
    /* Fonts */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-arabic: 'Alexandria', 'Tajawal', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Mode (Rose Quartz & Slate Porcelain) */
[data-theme="light"] {
    --bg-base: #f8f9fc;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(244, 167, 185, 0.06);
    
    --rose-primary: #d94b72;
    --rose-light: #f4a7b9;
    --rose-deep: #be185d;
    --rose-glow: rgba(217, 75, 114, 0.25);
    --rose-subtle: rgba(217, 75, 114, 0.08);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-accent: #d94b72;
    
    --border-subtle: rgba(217, 75, 114, 0.16);
    --border-card: rgba(0, 0, 0, 0.07);
    --border-hover: rgba(217, 75, 114, 0.4);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 45px rgba(217, 75, 114, 0.12);
    --shadow-rose: 0 10px 25px rgba(217, 75, 114, 0.2);
}

/* Arabic Mode Typography Override */
html[dir="rtl"] {
    font-family: var(--font-arabic), var(--font-body);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .brand-logo,
html[dir="rtl"] .section-badge {
    font-family: var(--font-arabic), var(--font-heading);
}

html[dir="rtl"] .hero-title {
    line-height: 1.55;
    letter-spacing: normal;
}

html[dir="rtl"] .hero-highlight,
html[dir="rtl"] .hero-highlight.gradient-text {
    line-height: 1.55;
    padding-top: 0.18em;
    padding-bottom: 0.28em;
    padding-inline: 0.06em;
    overflow: visible;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--rose-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ==========================================================================
   Background Ambiance & Effects
   ========================================================================== */

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    transition: opacity 0.5s ease;
}

.glow-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: 10%;
    background: radial-gradient(circle, var(--rose-primary) 0%, rgba(244, 167, 185, 0) 70%);
}

.glow-2 {
    width: 450px;
    height: 450px;
    top: 40%;
    left: -150px;
    background: radial-gradient(circle, var(--mauve-accent) 0%, rgba(192, 132, 252, 0) 70%);
    opacity: 0.3;
}

.glow-3 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--rose-deep) 0%, rgba(226, 132, 157, 0) 70%);
    opacity: 0.25;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(244, 167, 185, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(244, 167, 185, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

main {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md), 0 0 20px var(--rose-subtle);
}

/* Gradient & Typography Helpers */
.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 20%, var(--rose-primary) 65%, var(--mauve-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-top: 0.12em;
    padding-bottom: 0.22em;
    padding-inline: 0.05em;
    overflow: visible;
}

.text-accent {
    color: var(--rose-primary);
}

.text-center {
    text-align: center;
}

/* Section Common Styling */
.section {
    padding: 6.5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--rose-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Buttons & Interactive UI Tokens
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-primary) 0%, #e06d8b 100%);
    color: #0b0e14;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(244, 167, 185, 0.45);
    background: linear-gradient(135deg, #ffb3c6 0%, #eb7997 100%);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    transition: transform 0.7s;
}

.btn-glow:hover::after {
    transform: rotate(30deg) translate(50%, 50%);
}

.btn-outline {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.icon-btn:hover {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    transform: translateY(-1px);
}

.lang-toggle,
.icon-btn.lang-toggle {
    width: auto !important;
    min-width: 74px !important;
    height: 38px !important;
    padding: 0 0.75rem !important;
    gap: 0.45rem !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.lang-toggle .lang-text {
    display: inline-block !important;
    font-size: 0.82rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.lang-toggle i {
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
}

.navbar-container.scrolled {
    padding: 0.65rem 0;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .navbar-container.scrolled {
    background: rgba(248, 249, 252, 0.88);
}

.navbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    gap: 0.15rem;
}

.logo-symbol {
    color: var(--rose-primary);
}

.logo-slash {
    color: var(--mauve-accent);
}

.logo-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.45rem;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--rose-primary);
    margin-left: 0.5rem;
}

html[dir="rtl"] .logo-tag {
    margin-left: 0;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: var(--bg-card);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border-card);
    backdrop-filter: blur(12px);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link .nav-icon,
.nav-link .nav-arrow {
    display: none;
}

.mobile-nav-footer,
.mobile-menu-backdrop {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-primary);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cv {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    padding-top: 9.5rem;
    padding-bottom: 5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.hero-intro {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-family: var(--font-body);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.2rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    background: var(--rose-subtle);
    transform: translateY(-1px);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-card);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.social-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    transition: all var(--transition-fast);
}

.social-link:hover .social-icon-box {
    background: var(--rose-primary);
    color: #0b0e14;
    border-color: var(--rose-primary);
    transform: translateY(-2px);
}

.social-link:hover .social-label {
    color: var(--text-primary);
}

/* ==========================================================================
   Hero Visual Interactive Code Card
   ========================================================================== */

.hero-visual {
    perspective: 1000px;
}

.code-visual-card {
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 20, 32, 0.85);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 167, 185, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.code-card-header {
    background: rgba(10, 14, 24, 0.9);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-card);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.win-btn {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.win-close { background: #ff5f56; }
.win-min { background: #ffbd2e; }
.win-max { background: #27c93f; }

.window-title {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.window-title i {
    color: var(--rose-primary);
}

.window-tag {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    padding: 0.15rem 0.5rem;
    background: var(--rose-subtle);
    border-radius: 4px;
    color: var(--rose-primary);
}

.code-card-body {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: rgba(8, 12, 20, 0.6);
}

.line-num {
    color: #475569;
    margin-right: 1.2rem;
    user-select: none;
}

.code-keyword { color: #f472b6; font-weight: 600; }
.code-var { color: #38bdf8; }
.code-type { color: #c084fc; }
.code-prop { color: #f8fafc; }
.code-string { color: #86efac; }
.code-func { color: #fbbf24; font-weight: 600; }

.code-card-footer {
    padding: 0.85rem 1.25rem;
    background: rgba(10, 14, 24, 0.85);
    border-top: 1px solid var(--border-card);
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-family: var(--font-mono);
}

.hud-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #64748b;
}

.hud-dot.active {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.hud-label {
    color: var(--text-muted);
}

.hud-val {
    color: var(--rose-primary);
    font-weight: 600;
}

/* ==========================================================================
   Metrics Ribbon
   ========================================================================== */

.metrics-ribbon {
    padding: 2.5rem 0;
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.metric-card {
    padding: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.metric-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--rose-primary);
    flex-shrink: 0;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.metric-plus, .metric-unit {
    color: var(--rose-primary);
    font-size: 1.6rem;
    margin-left: 0.15rem;
}

.metric-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.metric-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-grid {
    display: flex;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.about-story {
    padding: 2.5rem;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
}

.story-heading i {
    color: var(--rose-primary);
}

.about-story p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.about-story strong {
    color: var(--text-primary);
}

.about-highlights {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--border-card);
    padding-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
}

.highlight-item i {
    color: var(--rose-primary);
    margin-top: 0.25rem;
    font-size: 1rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-card {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.pillar-content p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   Featured Projects Section — Categorized Rails (Mobile Sliders & Desktop Grid)
   ========================================================================== */

/* Desktop Quick Category Navigation (Laptops Only) */
.desktop-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3.5rem;
}

.cat-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.cat-nav-pill i {
    color: var(--rose-primary);
    font-size: 0.95rem;
}

.cat-nav-pill .cat-count {
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.cat-nav-pill:hover,
.cat-nav-pill.active {
    background: var(--rose-primary);
    color: #0b0e14;
    border-color: var(--rose-primary);
    box-shadow: 0 4px 15px rgba(244, 167, 185, 0.35);
    transform: translateY(-2px);
}

.cat-nav-pill:hover i,
.cat-nav-pill.active i {
    color: #0b0e14;
}

.cat-nav-pill:hover .cat-count,
.cat-nav-pill.active .cat-count {
    background: rgba(0, 0, 0, 0.22);
    color: #0b0e14;
    font-weight: 700;
}

/* Category Block */
.project-category-block {
    margin-bottom: 4.5rem;
    scroll-margin-top: 100px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-card);
}

.cat-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.cat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.category-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.category-sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cat-meta-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cat-badge-count {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cat-badge-count .num {
    color: var(--rose-primary);
    font-family: var(--font-mono);
    font-weight: 700;
}

.mobile-swipe-hint {
    display: none;
    font-size: 0.75rem;
    color: var(--rose-primary);
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ==========================================================================
   Creative Project Card Styles (Desktop & Mobile)
   ========================================================================== */

.project-card {
    position: relative;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Spotlight Border Glow on Desktop */
.project-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244, 167, 185, 0.6), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 167, 185, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 28px var(--rose-subtle);
}

/* Flagship Bento Highlight */
.project-card.flagship {
    border: 1px solid rgba(244, 167, 185, 0.42);
    background: linear-gradient(180deg, rgba(244, 167, 185, 0.05) 0%, var(--bg-card) 45%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22), 0 0 24px rgba(244, 167, 185, 0.12);
}

.flagship-badge {
    display: none !important;
}

/* Realistic Device Mockup Header Bars */
.project-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #080c14;
}

.device-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 26px;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: rgba(10, 14, 24, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .device-bar {
    background: rgba(240, 243, 248, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.browser-bar {
    justify-content: space-between;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-url {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

[data-theme="light"] .browser-url {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-bar {
    justify-content: center;
    gap: 8px;
}

.mobile-speaker {
    width: 34px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.mobile-camera {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

[data-theme="light"] .mobile-speaker,
[data-theme="light"] .mobile-camera {
    background: rgba(0, 0, 0, 0.2);
}

.os-bar {
    justify-content: space-between;
}

.os-title {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 26px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    inset: 26px 0 0 0;
    background: rgba(10, 14, 24, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-badge {
    display: none !important;
}

.project-body {
    padding: 1.65rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-bottom: 0.6rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.project-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.highlight-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.highlight-bullet i {
    color: var(--rose-primary);
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

.project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    margin-bottom: 1.4rem;
}

.stack-pill {
    padding: 0.2rem 0.55rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 6px;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border-card);
}

.project-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   VIEW MODES: LAPTOP GRID vs MOBILE SLIDER RAILS
   ========================================================================== */

/* Laptop & Desktop (min-width: 769px): Grid Layout */
@media (min-width: 769px) {
    .projects-track {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Devices (max-width: 768px): Slider Only Rails */
@media (max-width: 768px) {
    .desktop-category-nav {
        display: none !important;
    }

    .category-header {
        margin-bottom: 1.25rem;
    }

    .cat-title-wrap {
        gap: 0.75rem;
    }

    .cat-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .category-heading {
        font-size: 1.15rem;
    }

    .category-sub {
        font-size: 0.8rem;
    }

    .mobile-swipe-hint {
        display: inline-flex !important;
    }

    .projects-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.15rem;
        padding: 0.5rem 0.25rem 1.5rem 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .projects-track::-webkit-scrollbar {
        display: none;
    }

    .projects-track .project-card {
        flex: 0 0 84vw;
        max-width: 330px;
        min-width: 275px;
        scroll-snap-align: center;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    }

    .project-card .project-media {
        aspect-ratio: 16 / 9;
        max-height: 145px;
    }

    .project-card .device-bar {
        height: 22px;
        padding: 0 0.5rem;
    }

    .project-card .browser-dots span {
        width: 5px;
        height: 5px;
    }

    .project-card .browser-url {
        font-size: 0.6rem;
        padding: 0 5px;
    }



    .project-card .project-body {
        padding: 0.85rem 0.95rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .project-card .project-meta {
        margin-bottom: 0.25rem;
        font-size: 0.72rem;
    }

    .project-card .project-title {
        font-size: 1.02rem;
        line-height: 1.3;
        margin-bottom: 0.35rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .project-card .project-desc {
        font-size: 0.78rem;
        line-height: 1.45;
        margin-bottom: 0.55rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: var(--text-secondary);
    }

    /* Hide heavy bullet points on mobile - accessible in full via case study modal */
    .project-card .project-highlights,
    .project-card .project-points {
        display: none !important;
    }

    .project-card .project-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }

    .project-card .stack-pill {
        font-size: 0.68rem;
        padding: 0.15rem 0.45rem;
        border-radius: 4px;
    }

    .project-card .stack-pill:nth-child(n+5) {
        display: none !important;
    }

    .project-card .project-actions {
        margin-top: auto;
        padding-top: 0.35rem;
    }

    .project-card .open-case-study-btn {
        width: 100%;
        min-height: 38px;
        height: 38px;
        font-size: 0.82rem;
        justify-content: center;
        border-radius: 8px;
    }
}

/* ==========================================================================
   Architecture & Tech Mastery Section
   ========================================================================== */

.tech-domains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.domain-card {
    padding: 2rem;
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-card);
}

.domain-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--rose-primary);
    flex-shrink: 0;
}

.domain-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.domain-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.skill-item:hover {
    border-color: var(--border-subtle);
    background: var(--rose-subtle);
    transform: translateX(4px);
}

html[dir="rtl"] .skill-item:hover {
    transform: translateX(-4px);
}

.skill-name {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.skill-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.philosophy-box {
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border-left: 4px solid var(--rose-primary);
}

html[dir="rtl"] .philosophy-box {
    border-left: 1px solid var(--border-card);
    border-right: 4px solid var(--rose-primary);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--rose-primary);
    opacity: 0.8;
    line-height: 1;
}

.quote-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.quote-content p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.quote-author {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose-primary);
}

/* ==========================================================================
   Terminal / CLI Section
   ========================================================================== */

.terminal-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(244, 167, 185, 0.08);
}

.terminal-bar {
    background: rgba(10, 14, 24, 0.95);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-card);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.terminal-body {
    background: #080c14;
    padding: 1.5rem;
    min-height: 280px;
    max-height: 420px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.86rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.terminal-line {
    margin-bottom: 0.75rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.welcome-msg {
    color: var(--text-muted);
    border-bottom: 1px dashed var(--border-card);
    padding-bottom: 0.85rem;
}

.cmd-highlight {
    color: var(--rose-primary);
    font-weight: 700;
}

.terminal-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.terminal-prompt {
    color: var(--rose-primary);
    font-weight: 700;
    user-select: none;
    white-space: nowrap;
}

.terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f8fafc;
    font-family: var(--font-mono);
    font-size: 0.86rem;
}

.terminal-shortcuts {
    background: rgba(10, 14, 24, 0.95);
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shortcut-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.chip {
    padding: 0.25rem 0.65rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--rose-primary);
    transition: all var(--transition-fast);
}

.chip:hover {
    background: var(--rose-primary);
    color: #0b0e14;
    border-color: var(--rose-primary);
}

/* ==========================================================================
   Experience Timeline Section
   ========================================================================== */

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose-primary), var(--mauve-accent), transparent);
}

html[dir="rtl"] .timeline::before {
    left: auto;
    right: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 55px;
}

html[dir="rtl"] .timeline-item {
    padding-left: 0;
    padding-right: 55px;
}

.timeline-dot {
    position: absolute;
    top: 24px;
    left: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 3px solid var(--rose-primary);
    box-shadow: 0 0 10px var(--rose-primary);
    z-index: 2;
}

html[dir="rtl"] .timeline-dot {
    left: auto;
    right: 12px;
}

.timeline-content {
    padding: 1.75rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.timeline-role {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-company {
    font-size: 0.88rem;
    color: var(--rose-primary);
    font-weight: 600;
    display: block;
}

.timeline-period {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.2rem 0.65rem;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--rose-primary);
    font-weight: 600;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.timeline-tags span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.15rem 0.55rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 4px;
    color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-card);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.15rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-card {
    padding: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.method-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.method-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.link-val {
    color: var(--rose-primary);
}

.link-val:hover {
    text-decoration: underline;
}

.copy-mini-btn {
    padding: 0.25rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.copy-mini-btn:hover {
    color: var(--rose-primary);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 3px var(--rose-subtle);
}

.form-status {
    font-size: 0.88rem;
    text-align: center;
    font-weight: 600;
}
.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-card);
    background: var(--bg-surface);
    position: relative;
    z-index: 2;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--rose-primary);
}

/* ==========================================================================
   Modals (Case Studies & CV)
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-spring);
}

.modal-backdrop.active .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-card);
}

.modal-badge {
    font-size: 0.78rem;
    font-family: var(--font-mono);
    color: var(--rose-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.modal-close {
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--rose-primary);
}

.modal-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.modal-section {
    margin-bottom: 1.75rem;
}

.modal-section h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h4 i {
    color: var(--rose-primary);
}

.modal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

.modal-metric-card {
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    text-align: center;
}

.modal-metric-num {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--rose-primary);
}

.modal-metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    background: #080c14;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.modal-gallery-item:hover {
    transform: translateY(-4px);
    border-color: var(--rose-primary);
}

.modal-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.modal-gallery-caption {
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border-top: 1px solid var(--border-card);
}

.modal-video-container {
    margin: 1.5rem 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    background: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

.modal-video {
    width: 100%;
    max-height: 440px;
    display: block;
    object-fit: contain;
    background: #050505;
}

.modal-video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--rose-primary);
    color: var(--rose-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    pointer-events: none;
}

[dir="rtl"] .modal-video-badge {
    right: auto;
    left: 12px;
}

/* ==========================================================================
   CV Modal - Executive Modern Redesign & Mobile Responsive Tabs
   ========================================================================== */
.cv-modal-dialog {
    max-width: 720px;
    width: 92%;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    padding: 2.25rem 2.5rem;
    position: relative;
    max-height: 88vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.cv-modal-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.cv-doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.25);
    color: var(--rose-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.cv-modal-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Mobile Segmented Language Switcher */
.cv-lang-switcher {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 1.25rem;
    gap: 6px;
}

.cv-switcher-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cv-switcher-btn i {
    font-size: 0.95rem;
}

.cv-switcher-btn.active {
    background: var(--rose-primary);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 4px 14px var(--rose-glow);
}

.cv-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
    .cv-modal-dialog {
        padding: 1.4rem 1rem !important;
        width: 95% !important;
        max-height: 90vh !important;
        border-radius: 20px !important;
    }

    .cv-modal-header {
        padding-bottom: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .cv-modal-header .modal-title {
        font-size: 1.25rem;
    }

    .cv-modal-intro {
        font-size: 0.82rem;
        margin-bottom: 0.9rem;
        line-height: 1.45;
    }

    .cv-lang-switcher {
        display: flex;
    }

    .cv-options-grid {
        display: block;
        margin-bottom: 1rem;
    }

    .cv-option-card {
        display: none !important;
        padding: 1.35rem 1rem 1.15rem !important;
        border-radius: 16px !important;
    }

    .cv-option-card.active-mobile {
        display: flex !important;
        animation: fadeInCvTab 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes fadeInCvTab {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .cv-icon-container {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.35rem !important;
        margin: 0.35rem 0 0.75rem !important;
    }

    .cv-option-info h4 {
        font-size: 1.05rem !important;
        margin-bottom: 0.35rem !important;
    }

    .cv-option-info p {
        font-size: 0.8rem !important;
        min-height: auto !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .cv-meta-chips {
        margin-bottom: 1.1rem !important;
        gap: 5px !important;
    }

    .cv-meta-chips span {
        font-size: 0.68rem !important;
        padding: 0.2rem 0.45rem !important;
    }

    .cv-option-actions {
        gap: 0.55rem !important;
    }

    .cv-btn-preview,
    .cv-btn-download {
        height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.82rem !important;
    }

    .cv-trust-footer {
        font-size: 0.72rem !important;
        padding-top: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

.cv-option-card {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.cv-option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 29, 72, 0.35);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.45), 0 0 20px rgba(225, 29, 72, 0.12);
}

.cv-card-top-tag {
    position: absolute;
    top: -11px;
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cv-card-top-tag.cv-tag-ar {
    background: #1e1b4b;
    border-color: rgba(129, 140, 248, 0.3);
    color: #c7d2fe;
}

.cv-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.6rem;
    margin: 0.5rem 0 1rem;
    position: relative;
    box-shadow: inset 0 0 15px rgba(225, 29, 72, 0.08);
}

.cv-ext-label {
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.cv-option-info h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}

.cv-option-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 1rem;
    min-height: 38px;
}

.cv-meta-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.35rem;
}

.cv-meta-chips span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cv-option-actions {
    display: flex;
    gap: 0.65rem;
    width: 100%;
}

.cv-btn-preview {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
}

.cv-btn-download {
    flex: 1.25;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 14px var(--rose-glow);
}

.cv-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.cv-trust-footer i {
    color: #10b981;
    font-size: 0.95rem;
}

/* Light Theme Adaptations for CV Modal */
[data-theme="light"] .cv-modal-dialog {
    background: #ffffff !important;
    border-color: rgba(217, 75, 114, 0.2) !important;
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .cv-modal-intro {
    color: #475569 !important;
}

[data-theme="light"] .cv-lang-switcher {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(217, 75, 114, 0.18) !important;
}

[data-theme="light"] .cv-switcher-btn {
    color: #475569 !important;
}

[data-theme="light"] .cv-switcher-btn.active {
    background: var(--rose-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(217, 75, 114, 0.3) !important;
}

[data-theme="light"] .cv-option-card {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.09) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .cv-option-card:hover {
    border-color: rgba(217, 75, 114, 0.45) !important;
    box-shadow: 0 16px 36px -10px rgba(217, 75, 114, 0.15), 0 0 20px rgba(217, 75, 114, 0.1) !important;
}

[data-theme="light"] .cv-card-top-tag {
    background: #0f172a !important;
    color: #ffffff !important;
}

[data-theme="light"] .cv-card-top-tag.cv-tag-ar {
    background: #831843 !important;
    color: #fdf2f8 !important;
}

[data-theme="light"] .cv-icon-container {
    background: rgba(217, 75, 114, 0.08) !important;
    border-color: rgba(217, 75, 114, 0.25) !important;
    color: var(--rose-primary) !important;
}

[data-theme="light"] .cv-meta-chips span {
    background: rgba(217, 75, 114, 0.07) !important;
    color: #334155 !important;
    border-color: rgba(217, 75, 114, 0.18) !important;
}

[data-theme="light"] .cv-btn-preview {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .cv-btn-preview:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--rose-primary) !important;
    color: var(--rose-primary) !important;
}

[data-theme="light"] .cv-trust-footer {
    color: #64748b !important;
}

/* ==========================================================================
   Creative Architectural Splash Screen
   ========================================================================== */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #080c14;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.splash-screen.splash-dismissed {
    display: none !important;
    opacity: 0;
    transform: scale(1.04);
    filter: blur(12px);
    pointer-events: none;
}

.splash-ambient-mesh {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 40%, rgba(225, 29, 72, 0.16) 0%, rgba(15, 23, 42, 0) 55%),
                radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, rgba(8, 12, 20, 0) 45%),
                radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.08) 0%, rgba(8, 12, 20, 0) 45%);
    animation: splashAmbientPulse 7s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes splashAmbientPulse {
    0% { transform: scale(0.95) rotate(0deg); }
    100% { transform: scale(1.05) rotate(3deg); }
}

.splash-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 440px;
    width: 90%;
}

/* Hologram Cyber Monogram */
.splash-monogram-box {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.splash-ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(225, 29, 72, 0.45);
    animation: splashSpinClockwise 16s linear infinite;
}

.splash-ring-mid {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--rose-primary);
    border-bottom-color: #38bdf8;
    animation: splashSpinCounter 10s linear infinite;
}

.splash-nodes-orbit {
    position: absolute;
    inset: 0;
    animation: splashSpinClockwise 8s linear infinite;
}

.splash-orbit-node {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 10px #e11d48, 0 0 20px #e11d48;
}
.splash-orbit-node.node-a { top: -3.5px; left: 50%; transform: translateX(-50%); }
.splash-orbit-node.node-b { bottom: 12px; left: 10px; background: #38bdf8; box-shadow: 0 0 10px #38bdf8; }
.splash-orbit-node.node-c { bottom: 12px; right: 10px; }

@keyframes splashSpinClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes splashSpinCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.splash-core-symbol {
    position: relative;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.splash-core-symbol .splash-bracket-left,
.splash-core-symbol .splash-bracket-right {
    color: #64748b;
    font-size: 1.3rem;
    font-weight: 400;
}

.splash-core-symbol .splash-initials {
    background: linear-gradient(135deg, #ffffff 20%, #fda4af 60%, #e11d48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(225, 29, 72, 0.6));
}

/* Identity Typography */
.splash-identity-wrap {
    margin-bottom: 2.25rem;
}

.splash-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.splash-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.splash-chip {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fda4af;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.3);
    padding: 0.18rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 1px;
}

.splash-divider {
    color: #475569;
}

.splash-subrole {
    color: #94a3b8;
    font-weight: 500;
}

/* Progress & Status */
.splash-loader-box {
    width: 100%;
    max-width: 320px;
}

.splash-progress-track {
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.splash-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e11d48, #f43f5e, #38bdf8);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.9), 0 0 20px rgba(56, 189, 248, 0.5);
    border-radius: 10px;
    transition: width 0.12s ease-out;
}

.splash-status-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono, monospace);
    font-size: 0.72rem;
    color: #64748b;
}

.splash-status-log {
    color: #94a3b8;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    text-align: left;
}

[dir="rtl"] .splash-status-log {
    text-align: right;
}

.splash-status-percent {
    color: #fda4af;
    font-weight: 700;
}

/* Skip Trigger */
.splash-skip-trigger {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    z-index: 10;
}

.splash-skip-trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

[dir="rtl"] .splash-skip-trigger {
    right: auto;
    left: 1.75rem;
}
[dir="rtl"] .splash-skip-trigger:hover {
    transform: translateX(-2px);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */

.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #101522;
    border: 1px solid var(--rose-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--rose-glow);
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-spring);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #22c55e;
    font-size: 1.15rem;
}

html[dir="rtl"] .toast-notification {
    right: auto;
    left: 2rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */


/* ==========================================================================
   Creative Section Enhancements & Interactive Components
   ========================================================================== */

/* --- 1. About Profile Card --- */
.about-profile-card {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.about-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-primary), var(--mauve-accent));
}

.profile-header-visual {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.profile-avatar-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--rose-primary), var(--mauve-accent));
    flex-shrink: 0;
}

.about-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-surface);
}

.avatar-verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-live);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    border: 2px solid var(--bg-surface);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.profile-identity {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.profile-role-tag {
    font-size: 0.85rem;
    color: var(--rose-primary);
    font-weight: 600;
}

.profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.profile-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.profile-credentials-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-card);
}

.cred-chip {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.88rem;
}

.cred-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cred-chip strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.88rem;
    margin-bottom: 0.15rem;
}

.cred-chip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.profile-quote-box {
    background: linear-gradient(145deg, rgba(244, 167, 185, 0.08) 0%, var(--bg-surface) 65%);
    border: 1px solid rgba(244, 167, 185, 0.28);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.profile-quote-box .quote-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.profile-quote-box .quote-mark {
    font-size: 1.25rem;
    color: var(--rose-primary);
    opacity: 0.75;
    margin-bottom: 0;
    display: inline-block;
}

.profile-quote-box .quote-badge {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    background: var(--rose-subtle);
    color: var(--rose-primary);
    font-weight: 700;
    border: 1px solid var(--border-subtle);
}

.profile-quote-box .quote-body-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.profile-quote-box .quote-author-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border-card);
}

.profile-quote-box .quote-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid var(--rose-primary);
}

.profile-quote-box .quote-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-quote-box .quote-author-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.profile-quote-box .quote-author-role {
    font-size: 0.7rem;
    color: var(--rose-primary);
    display: block;
}



/* --- 2. Modernized Creative Tech Domains & Capability Capsules --- */
.tech-domains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-bottom: 2.75rem;
}

.domain-card {
    padding: 1.85rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-primary), var(--mauve-accent));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 167, 185, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 25px var(--rose-subtle);
}

.domain-card:hover::before {
    opacity: 1;
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--border-card);
}

.domain-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(244, 167, 185, 0.2), rgba(168, 85, 247, 0.15));
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--rose-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(244, 167, 185, 0.16);
}

.domain-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.domain-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 11px;
    transition: all var(--transition-fast);
    gap: 0.6rem;
}

.skill-item:hover {
    border-color: rgba(244, 167, 185, 0.45);
    background: rgba(244, 167, 185, 0.06);
    transform: translateX(4px);
}

html[dir="rtl"] .skill-item:hover {
    transform: translateX(-4px);
}

.skill-item-main {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--rose-subtle);
    color: var(--rose-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.skill-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skill-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.18rem 0.55rem;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

[data-theme="light"] .skill-meta {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
}

/* --- Architectural Philosophy Quote Card --- */
.philosophy-box {
    position: relative;
    overflow: hidden;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(244, 167, 185, 0.08) 0%, rgba(168, 85, 247, 0.06) 50%, var(--bg-card) 100%);
    border: 1px solid rgba(244, 167, 185, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 30px rgba(244, 167, 185, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.quote-watermark {
    position: absolute;
    top: -15px;
    right: 25px;
    font-size: 6.5rem;
    color: var(--rose-primary);
    opacity: 0.06;
    pointer-events: none;
    line-height: 1;
}

html[dir="rtl"] .quote-watermark {
    right: auto;
    left: 25px;
}

.quote-tag-row {
    margin-bottom: 0.15rem;
}

.philo-badge {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
    background: var(--rose-subtle);
    color: var(--rose-primary);
    border: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
}

.philo-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.philo-quote-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.85rem;
}

.philosophy-box .quote-author-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-card);
}

.quote-author-name {
    font-weight: 800;
    color: var(--text-primary);
}

.author-sep {
    color: var(--rose-primary);
    opacity: 0.7;
}

.quote-author-role {
    color: var(--rose-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

/* --- 3. Executive Career KPI Bar --- */
.career-kpi-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.career-kpi-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border: 1px solid var(--border-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.career-kpi-card:hover {
    transform: translateY(-2px);
    border-color: var(--rose-primary);
}

.kpi-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kpi-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.kpi-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* --- 4. Live Palestine Timezone Widget & Project Scope Chips --- */
.live-tz-widget {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-subtle);
    margin-top: 1.5rem;
}

.tz-pulse-indicator {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tz-pulse-core {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-live);
}

.tz-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.4);
    animation: pulse-green 1.8s infinite;
}

.tz-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tz-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tz-time {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rose-primary);
    letter-spacing: 1px;
}

.tz-status-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.scope-chips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.scope-chip {
    padding: 0.65rem 0.85rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

html[dir="rtl"] .scope-chip {
    text-align: right;
}

.scope-chip:hover {
    border-color: var(--rose-primary);
    color: var(--text-primary);
}

.scope-chip.active {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    box-shadow: 0 0 12px var(--rose-glow);
}


/* ==========================================================================
   Comprehensive Responsive Breakpoints (Zero-Overflow Mobile System)
   ========================================================================== */

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

@media (max-width: 1080px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .career-kpi-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-section {
        padding-top: 6.5rem;
        padding-bottom: 3.5rem;
        overflow: hidden;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .topology-inspector {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .tech-domains-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-card {
        padding: 1.75rem;
    }
    .cv-options-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Menu Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-fast), visibility var(--transition-fast);
    }

    .mobile-menu-backdrop.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Nav Menu Drawer - Complete Theme Responsiveness */
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0.85rem;
        right: 0.85rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(16, 21, 34, 0.97) !important;
        backdrop-filter: blur(28px) saturate(190%);
        -webkit-backdrop-filter: blur(28px) saturate(190%);
        padding: 1rem 0.85rem;
        border-radius: 20px;
        display: none;
        gap: 0.45rem;
        border: 1px solid rgba(244, 167, 185, 0.22) !important;
        box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(244, 167, 185, 0.15) !important;
        z-index: 1000;
        transform: translateY(-8px);
        opacity: 0;
        transition: transform var(--transition-smooth), opacity var(--transition-smooth);
    }

    [data-theme="light"] .nav-menu {
        background: rgba(255, 255, 255, 0.98) !important;
        border-color: rgba(217, 75, 114, 0.24) !important;
        box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.16), 0 0 35px rgba(217, 75, 114, 0.12) !important;
    }
    
    .nav-menu.open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav Link Items - High Contrast & High Clickability */
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        font-size: 0.98rem;
        font-weight: 600;
        color: #ffffff !important; /* Crisp high contrast white in dark mode */
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.07);
        transition: all var(--transition-fast);
        width: 100%;
        text-align: inherit;
    }

    [data-theme="light"] .nav-menu .nav-link {
        color: #0f172a !important; /* Deep dark slate in light mode */
        background: rgba(0, 0, 0, 0.035);
        border-color: rgba(0, 0, 0, 0.07);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus,
    .nav-menu .nav-link.active {
        color: var(--rose-primary) !important;
        background: var(--rose-subtle) !important;
        border-color: var(--border-subtle) !important;
        transform: translateX(4px);
    }

    html[dir="rtl"] .nav-menu .nav-link:hover,
    html[dir="rtl"] .nav-menu .nav-link:focus,
    html[dir="rtl"] .nav-menu .nav-link.active {
        transform: translateX(-4px);
    }

    .nav-menu .nav-link::after {
        display: none !important;
    }

    .nav-link .nav-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 9px;
        background: var(--rose-subtle);
        color: var(--rose-primary);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .nav-link .nav-text {
        flex: 1;
        font-family: var(--font-heading);
    }

    .nav-link .nav-arrow {
        display: inline-flex !important;
        color: var(--text-muted);
        font-size: 0.75rem;
        transition: transform var(--transition-fast);
    }

    html[dir="rtl"] .nav-link .nav-arrow {
        transform: rotate(180deg);
    }

    .nav-menu .nav-link:hover .nav-arrow {
        color: var(--rose-primary);
        transform: translateX(3px);
    }

    html[dir="rtl"] .nav-menu .nav-link:hover .nav-arrow {
        transform: rotate(180deg) translateX(3px);
    }

    .mobile-nav-footer {
        display: block;
        margin-top: 0.35rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-card);
    }

    .btn-mobile-cv {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0.8rem 1rem;
        font-size: 0.92rem;
        font-weight: 700;
        border-radius: 12px;
        box-shadow: var(--shadow-rose);
        height: 46px;
    }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        padding: 7px;
        border-radius: 10px;
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        cursor: pointer;
        transition: all var(--transition-fast);
    }

    .mobile-toggle .bar {
        width: 100%;
        height: 2px;
        background: var(--text-primary) !important;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transform-origin: center;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--rose-primary) !important;
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--rose-primary) !important;
    }
    
    .btn-cv {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar-inner {
        padding: 0 0.85rem;
    }
    .brand-logo {
        font-size: 1.15rem;
    }
    .logo-tag {
        display: none !important;
    }
    .nav-actions {
        gap: 0.4rem;
    }
    .icon-btn {
        width: 36px;
        height: 36px;
    }
    .icon-btn.lang-toggle {
        width: auto !important;
        min-width: 68px !important;
        height: 36px !important;
        padding: 0 0.6rem !important;
        gap: 0.35rem !important;
        font-size: 0.78rem !important;
    }
    
    /* Hero Section Mobile Perfection */
    .hero-section {
        padding-top: 4.85rem !important;
        padding-bottom: 2rem !important;
    }

    .status-badge {
        font-size: 0.74rem !important;
        padding: 0.28rem 0.65rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: clamp(1.22rem, 4.6vw, 1.65rem) !important;
        line-height: 1.35 !important;
        margin-bottom: 0.75rem !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    html[dir="rtl"] .hero-title {
        font-size: clamp(1.2rem, 4.4vw, 1.6rem) !important;
        line-height: 1.45 !important;
    }

    .hero-intro {
        font-size: 0.9rem !important;
        margin-bottom: 0.35rem !important;
        display: block !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1rem !important;
        color: var(--text-secondary) !important;
    }

    .hero-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        margin-bottom: 1.25rem !important;
    }

    .tech-tag {
        font-size: 0.72rem !important;
        padding: 0.22rem 0.55rem !important;
        border-radius: 6px !important;
    }

    /* Harmonious 2-Column Hero Actions + Secondary Pill */
    .hero-cta-group {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.6rem !important;
        width: 100% !important;
        margin-bottom: 1.15rem !important;
    }

    .hero-cta-group a.btn-primary {
        grid-column: 1 / 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 44px !important;
        height: 44px !important;
        font-size: 0.82rem !important;
        padding: 0 0.45rem !important;
        justify-content: center !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .hero-cta-group #heroCvBtn {
        grid-column: 2 / 3 !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 44px !important;
        height: 44px !important;
        font-size: 0.82rem !important;
        padding: 0 0.45rem !important;
        justify-content: center !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .hero-cta-group #copyEmailHero {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-height: 38px !important;
        height: 38px !important;
        font-size: 0.82rem !important;
        padding: 0 0.75rem !important;
        justify-content: center !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid var(--border-card) !important;
    }

    [data-theme="light"] .hero-cta-group #copyEmailHero {
        background: rgba(0, 0, 0, 0.04) !important;
    }

    .hero-socials {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.45rem !important;
        justify-content: center !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid var(--border-card) !important;
        margin-top: 0.25rem !important;
    }

    .social-link {
        font-size: 0.78rem !important;
        padding: 0.32rem 0.6rem !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid var(--border-card) !important;
    }

    .social-icon-box {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.78rem !important;
    }

    /* Code Visual Card Mobile */
    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .code-visual-card {
        border-radius: 14px !important;
        width: 100% !important;
        max-height: 230px !important;
        overflow: hidden !important;
    }

    .code-card-header {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .window-tag {
        font-size: 0.7rem !important;
    }

    .code-card-body {
        padding: 0.65rem 0.75rem !important;
        max-height: 130px !important;
        overflow-y: auto !important;
    }

    .code-lines {
        font-size: 0.68rem !important;
        line-height: 1.4 !important;
    }

    .code-card-footer {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
        padding: 0.65rem 0.75rem !important;
        justify-content: space-between !important;
    }

    .hud-item {
        font-size: 0.68rem !important;
        gap: 0.25rem !important;
    }

    /* --- Executive Profile Card Mobile Perfection (Fixed Width & Spacing) --- */
    .about-profile-card {
        padding: 1.25rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        border-radius: 16px !important;
        gap: 1.15rem !important;
    }

    .profile-header-visual {
        gap: 0.85rem !important;
        align-items: center !important;
    }

    .profile-avatar-wrap {
        width: 66px !important;
        height: 66px !important;
        padding: 2px !important;
        flex-shrink: 0 !important;
    }

    .avatar-verified-badge {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.65rem !important;
        bottom: 0px !important;
        right: 0px !important;
    }

    html[dir="rtl"] .avatar-verified-badge {
        right: auto !important;
        left: 0px !important;
    }

    .profile-name {
        font-size: 1.12rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.15rem !important;
    }

    .profile-role-tag {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }

    .profile-meta-row {
        gap: 0.65rem !important;
        font-size: 0.75rem !important;
    }

    .profile-credentials-list {
        padding-top: 0.75rem !important;
        gap: 0.65rem !important;
    }

    .cred-chip {
        gap: 0.65rem !important;
        font-size: 0.82rem !important;
    }

    .cred-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.82rem !important;
        border-radius: 8px !important;
        flex-shrink: 0 !important;
    }

    .cred-chip strong {
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.1rem !important;
    }

    .cred-chip span {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }



    /* --- Grids & Tech Stack on Mobile --- */
    .tech-domains-grid {
        grid-template-columns: 1fr !important;
        gap: 1.15rem !important;
    }

    .domain-card {
        padding: 1.25rem 1.1rem !important;
        border-radius: 16px !important;
    }

    .domain-header {
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.85rem !important;
    }

    .domain-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.15rem !important;
    }

    .domain-title {
        font-size: 1.05rem !important;
    }

    .domain-sub {
        font-size: 0.76rem !important;
    }

    .skill-item {
        padding: 0.6rem 0.75rem !important;
    }

    .skill-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
    }

    .skill-name {
        font-size: 0.82rem !important;
    }

    .skill-meta {
        font-size: 0.68rem !important;
        padding: 0.12rem 0.45rem !important;
    }

    .philosophy-box {
        padding: 1.25rem 1.15rem !important;
        border-radius: 16px !important;
    }

    .philo-heading {
        font-size: 1.1rem !important;
    }

    .philo-quote-text {
        font-size: 0.86rem !important;
        line-height: 1.6 !important;
    }

    /* --- Career KPI Impact Bar (2x2 Grid on Mobile) --- */
    .career-kpi-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        margin-bottom: 2rem !important;
    }

    .career-kpi-card {
        padding: 0.75rem 0.65rem !important;
        gap: 0.55rem !important;
        border-radius: 12px !important;
    }

    .kpi-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    .kpi-num {
        font-size: 1.15rem !important;
    }

    .kpi-label {
        font-size: 0.68rem !important;
    }

    /* --- Timeline Mobile RoadMap --- */
    .timeline {
        padding: 0.5rem 0 !important;
    }

    .timeline::before {
        left: 14px !important;
    }

    html[dir="rtl"] .timeline::before {
        left: auto !important;
        right: 14px !important;
    }

    .timeline-item {
        padding-left: 34px !important;
        padding-right: 0 !important;
        margin-bottom: 1.35rem !important;
    }

    html[dir="rtl"] .timeline-item {
        padding-left: 0 !important;
        padding-right: 34px !important;
    }

    .flightpath-timeline .timeline-item {
        padding-left: 40px !important;
        padding-right: 0 !important;
    }

    html[dir="rtl"] .flightpath-timeline .timeline-item {
        padding-left: 0 !important;
        padding-right: 40px !important;
    }

    .timeline-dot {
        left: 7px !important;
        width: 15px !important;
        height: 15px !important;
        top: 18px !important;
    }

    .flightpath-timeline .timeline-dot {
        left: 2px !important;
        width: 24px !important;
        height: 24px !important;
        top: 16px !important;
    }

    html[dir="rtl"] .timeline-dot {
        left: auto !important;
        right: 7px !important;
    }

    html[dir="rtl"] .flightpath-timeline .timeline-dot {
        left: auto !important;
        right: 2px !important;
    }

    .flightpath-timeline .dot-inner-num {
        font-size: 0.58rem !important;
    }

    .timeline-content {
        padding: 1rem 1.1rem !important;
        border-radius: 14px !important;
    }

    .timeline-header {
        gap: 0.35rem !important;
        margin-bottom: 0.55rem !important;
    }

    .timeline-role {
        font-size: 0.98rem !important;
        line-height: 1.3 !important;
    }

    .timeline-company {
        font-size: 0.78rem !important;
    }

    .timeline-period {
        font-size: 0.7rem !important;
        padding: 0.15rem 0.5rem !important;
    }

    .timeline-desc {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.65rem !important;
    }

    .timeline-tags span {
        font-size: 0.68rem !important;
        padding: 0.12rem 0.45rem !important;
    }

    /* Other Mobile Grids */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .scope-chips-grid {
        grid-template-columns: 1fr;
    }
    .modal-metrics-grid {
        grid-template-columns: 1fr;
    }
    .modal-dialog {
        padding: 1.25rem;
    }
    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
    }
}

/* ==========================================================================
   Creative Section Enhancements & Adobe-Style Motion System
   ========================================================================== */

/* --- 1. Adobe-Style Motion & Reveal Physics --- */
.motion-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.motion-slide-right {
    opacity: 0;
    transform: translateX(42px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

html[dir="rtl"] .motion-slide-right {
    transform: translateX(-42px);
}

.motion-slide-left {
    opacity: 0;
    transform: translateX(-42px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

html[dir="rtl"] .motion-slide-left {
    transform: translateX(42px);
}

.motion-scale-up {
    opacity: 0;
    transform: scale(0.94) translateY(24px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

.motion-revealed {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}
/* --- 2. Differentiated Tech Stack & Cyber Runway Showcase --- */
.tech-runway-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.tech-runway-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tech-category-tabs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.25rem 0;
}

.tech-category-tabs::-webkit-scrollbar {
    display: none;
}

.tech-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tech-tab:hover {
    border-color: var(--rose-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tech-tab.active {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    box-shadow: 0 0 16px var(--rose-glow);
}

.tech-runway-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.runway-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.runway-nav-btn:hover {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    box-shadow: 0 0 12px var(--rose-glow);
    transform: scale(1.05);
}

.runway-counter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rose-primary);
    padding: 0.35rem 0.75rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 8px;
}

.counter-sep {
    color: var(--text-muted);
    margin: 0 0.25rem;
}

/* Horizontal Snapping Track */
.tech-runway-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.75rem 0.25rem 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tech-runway-track::-webkit-scrollbar {
    display: none;
}

/* Domain Blade (Futuristic Hex-Chamfer Silhouette) */
.domain-blade {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    min-width: 380px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 2.2rem 2rem;
    border: 1px solid var(--border-card);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.blade-notch-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
}

html[dir="rtl"] .blade-notch-corner {
    right: auto;
    left: 0;
    transform: scaleX(-1);
}

.domain-card:hover {
    transform: translateY(-5px);
}

/* Floating Watermark Icons in Card Background */
.domain-bg-watermark {
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 7.5rem;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

html[dir="rtl"] .domain-bg-watermark {
    right: auto;
    left: -10px;
}

.domain-card:hover .domain-bg-watermark {
    opacity: 0.07;
    transform: scale(1.08) rotate(-4deg);
}

.domain-header-text {
    flex: 1;
    min-width: 0;
}

.domain-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

/* Domain Telemetry Badges */
.domain-telemetry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
}

.badge-cyan {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #38bdf8;
}

.badge-rose {
    background: rgba(244, 114, 182, 0.12);
    border: 1px solid rgba(244, 114, 182, 0.35);
    color: var(--rose-primary);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
}

.badge-amber {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

.pulse-dot-cyan {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 8px #06b6d4;
    animation: pulse-green 1.8s infinite;
}

/* Individual Domain Aesthetics */
.domain-backend::before {
    background: linear-gradient(90deg, #06b6d4, #10b981) !important;
}
.domain-backend:hover {
    border-color: rgba(6, 182, 212, 0.45) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 25px rgba(6, 182, 212, 0.18) !important;
}

.domain-frontend::before {
    background: linear-gradient(90deg, #f472b6, #c084fc) !important;
}
.domain-frontend:hover {
    border-color: rgba(244, 114, 182, 0.45) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 25px rgba(244, 114, 182, 0.18) !important;
}

.domain-database::before {
    background: linear-gradient(90deg, #3b82f6, #6366f1) !important;
}
.domain-database:hover {
    border-color: rgba(59, 130, 246, 0.45) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 25px rgba(59, 130, 246, 0.18) !important;
}

.domain-cloud::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444) !important;
}
.domain-cloud:hover {
    border-color: rgba(245, 158, 11, 0.45) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 25px rgba(245, 158, 11, 0.18) !important;
}

/* Individual Skill Icon Neon Highlights */
.skill-icon.icon-cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.skill-icon.icon-red { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.skill-icon.icon-green { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.skill-icon.icon-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.skill-icon.icon-purple { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.skill-icon.icon-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.skill-icon.icon-rose { background: rgba(244, 114, 182, 0.12); color: var(--rose-primary); }

/* --- Unclipped, 100% Legible Skill Items --- */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    gap: 0.85rem;
    transition: all var(--transition-fast);
}

.skill-item:hover {
    background: rgba(244, 167, 185, 0.06);
    border-color: rgba(244, 167, 185, 0.35);
    transform: translateX(4px);
}

html[dir="rtl"] .skill-item:hover {
    transform: translateX(-4px);
}

.skill-item-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.skill-item-titles {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.skill-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.35;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: break-word;
}

.skill-meta {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
    white-space: normal;
    background: transparent;
    border: none;
    padding: 0;
}

.skill-tier-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--rose-primary);
    background: var(--rose-subtle);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- 3. Differentiated Career Flightpath & Bilateral Alternating Timeline --- */
.flightpath-timeline {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: 3rem 0;
}

.flightpath-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--rose-primary) 0%, #00f0ff 45%, var(--mauve-accent) 85%, transparent 100%);
    box-shadow: 0 0 16px rgba(244, 167, 185, 0.35);
    z-index: 1;
}

.flightpath-timeline .timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 3.5rem;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.flightpath-timeline .timeline-item:hover {
    transform: translateY(-4px);
}

/* Bilateral Zigzag (LTR Layout) */
.flightpath-timeline .timeline-item.item-left {
    left: 0;
    padding-right: 50px;
    padding-left: 0;
}

.flightpath-timeline .timeline-item.item-left .timeline-dot {
    right: -16px;
    left: auto;
}

.flightpath-timeline .timeline-item.item-right {
    left: 50%;
    padding-left: 50px;
    padding-right: 0;
}

.flightpath-timeline .timeline-item.item-right .timeline-dot {
    left: -16px;
    right: auto;
}

/* Bilateral Zigzag (RTL Arabic Layout) */
html[dir="rtl"] .flightpath-timeline .timeline-item.item-right {
    right: 0;
    left: auto;
    padding-right: 0;
    padding-left: 50px;
    text-align: right;
}

html[dir="rtl"] .flightpath-timeline .timeline-item.item-right .timeline-dot {
    left: -16px;
    right: auto;
}

html[dir="rtl"] .flightpath-timeline .timeline-item.item-left {
    right: 50%;
    left: auto;
    padding-right: 50px;
    padding-left: 0;
    text-align: right;
}

html[dir="rtl"] .flightpath-timeline .timeline-item.item-left .timeline-dot {
    right: -16px;
    left: auto;
}

/* Numbered Timeline Step Node */
.flightpath-timeline .timeline-dot {
    width: 32px;
    height: 32px;
    top: 20px;
    background: var(--bg-card);
    border: 2px solid var(--rose-primary);
    box-shadow: 0 0 16px var(--rose-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 4;
}

.dot-inner-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--rose-primary);
    line-height: 1;
}

.milestone-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border-card);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.milestone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
}

.badge-frontier {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--green-live);
}

.badge-logistics {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.badge-gaming {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
}

.badge-edtech {
    background: rgba(244, 114, 182, 0.12);
    border: 1px solid rgba(244, 114, 182, 0.4);
    color: var(--rose-primary);
}

.badge-academic {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-live);
    box-shadow: 0 0 6px var(--green-live);
    animation: pulse-green 1.8s infinite;
}

/* Featured Milestone Highlight (Item 1) */
.milestone-frontier .timeline-content {
    border-color: rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.04), var(--bg-card));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22), 0 0 20px rgba(34, 197, 94, 0.08);
}

/* Distinct KPI Stat Cards */
.career-kpi-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.kpi-revenue .kpi-icon { background: rgba(245, 158, 11, 0.12); color: #f59e0b; border-color: rgba(245, 158, 11, 0.25); }
.kpi-platforms .kpi-icon { background: rgba(56, 189, 248, 0.12); color: #38bdf8; border-color: rgba(56, 189, 248, 0.25); }
.kpi-latency .kpi-icon { background: rgba(34, 197, 94, 0.12); color: #22c55e; border-color: rgba(34, 197, 94, 0.25); }
.kpi-rating .kpi-icon { background: rgba(244, 114, 182, 0.12); color: var(--rose-primary); border-color: rgba(244, 114, 182, 0.25); }

/* --- 4. Executive Testimonials Horizontal Scroll Carousel --- */
.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
}

.testimonials-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.testimonials-indicator-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.pulse-dot-rose {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-primary);
    box-shadow: 0 0 8px var(--rose-primary);
    animation: pulse-green 1.8s infinite;
}

.testi-sub-badge {
    font-family: var(--font-heading);
    color: var(--text-secondary);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.85rem;
}

.testi-nav-btn:hover {
    background: var(--rose-subtle);
    border-color: var(--rose-primary);
    color: var(--rose-primary);
    box-shadow: 0 0 12px var(--rose-glow);
    transform: scale(1.05);
}

.testi-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-card);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testi-dot.active {
    width: 24px;
    border-radius: 8px;
    background: var(--rose-primary);
    box-shadow: 0 0 10px var(--rose-glow);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.25rem 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonials-track .testimonial-card {
    flex: 0 0 380px;
    max-width: 380px;
    scroll-snap-align: start;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem 1.85rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.quote-bg-watermark {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 3.5rem;
    opacity: 0.06;
    pointer-events: none;
    color: var(--text-primary);
    line-height: 1;
}

html[dir="rtl"] .quote-bg-watermark {
    right: auto;
    left: 18px;
}

.testimonial-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.testimonial-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
}

.chip-rating {
    color: #fbbf24;
}

/* Featured Center VIP Testimonial Card */
.card-quote-featured {
    border: 1.5px solid rgba(244, 114, 182, 0.45) !important;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.06), var(--bg-card)) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), 0 0 30px rgba(244, 114, 182, 0.15) !important;
}

.featured-collab-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid var(--rose-primary);
    color: var(--rose-primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.chip-featured {
    border-color: rgba(244, 114, 182, 0.4);
    background: rgba(244, 114, 182, 0.08);
}

.avatar-ecommerce { background: rgba(56, 189, 248, 0.12); color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); }
.avatar-featured { background: rgba(244, 114, 182, 0.15); color: var(--rose-primary); border-color: var(--rose-primary); box-shadow: 0 0 12px var(--rose-glow); }
.avatar-startup { background: rgba(168, 85, 247, 0.12); color: #c084fc; border-color: rgba(168, 85, 247, 0.3); }

/* --- 5. High-Impact Direct Contact Terminal (Non-Traditional & Zero-Friction) --- */
.terminal-connect-capsule {
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(244, 114, 182, 0.24);
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.88) 0%, rgba(10, 14, 25, 0.96) 100%);
    box-shadow: 0 30px 75px -15px rgba(0, 0, 0, 0.55), 0 0 50px -10px rgba(244, 114, 182, 0.1);
    border-radius: 26px;
    padding: 3.2rem 2.8rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.capsule-ambient-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.14) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

html[dir="rtl"] .capsule-ambient-glow {
    right: auto;
    left: -120px;
}

.capsule-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.capsule-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #4ade80;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    letter-spacing: 0.3px;
}

.capsule-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
    letter-spacing: -0.5px;
}

.capsule-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Direct Instant Gateway Grid (3 Fast Touch Tiles) */
.direct-gateways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin: 2rem 0 2.2rem;
    position: relative;
    z-index: 1;
}

.gateway-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.gateway-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.gateway-whatsapp .gateway-icon-box {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.gateway-whatsapp:hover {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.09);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.2);
}

.gateway-whatsapp:hover .gateway-icon-box {
    transform: scale(1.08);
}

.gateway-email .gateway-icon-box {
    background: rgba(244, 114, 182, 0.12);
    color: var(--rose-primary);
    border: 1px solid rgba(244, 114, 182, 0.25);
}

.gateway-email:hover {
    border-color: var(--rose-primary);
    background: rgba(244, 114, 182, 0.09);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(244, 114, 182, 0.2);
}

.gateway-email:hover .gateway-icon-box {
    transform: scale(1.08);
}

.gateway-mostaql .gateway-icon-box {
    background: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.gateway-mostaql:hover {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.09);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.2);
}

.gateway-mostaql:hover .gateway-icon-box {
    transform: scale(1.08);
}

.gateway-info {
    flex: 1;
    min-width: 0;
}

.gateway-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.72;
    display: block;
    margin-bottom: 0.15rem;
}

.gateway-whatsapp .gateway-tag { color: #4ade80; }
.gateway-email .gateway-tag { color: var(--rose-primary); }
.gateway-mostaql .gateway-tag { color: #38bdf8; }

.gateway-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.15rem 0;
}

.gateway-detail {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: left;
}

html[dir="rtl"] .gateway-detail {
    text-align: right;
}

.gateway-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.gateway-card:hover .gateway-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
    color: var(--text-primary);
}

html[dir="rtl"] .gateway-card:hover .gateway-arrow {
    transform: translate(-2px, -2px);
}

/* Non-Traditional Quick Dispatch Box */
.quick-dispatch-box {
    background: rgba(13, 18, 33, 0.75);
    border: 1px solid rgba(244, 167, 185, 0.18);
    border-radius: 20px;
    padding: 1.85rem 2rem;
    margin-bottom: 1.85rem;
    position: relative;
    z-index: 1;
}

.dispatch-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    flex-wrap: wrap;
}

.dispatch-header-label {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--rose-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.dispatch-intent-pills {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.intent-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.intent-pill:hover,
.intent-pill.active {
    background: rgba(244, 114, 182, 0.15);
    border-color: var(--rose-primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(244, 114, 182, 0.25);
}

.rapid-input-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 1.15rem;
    margin-bottom: 1.35rem;
}

.rapid-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.rapid-field-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.rapid-input {
    width: 100%;
    background: rgba(18, 25, 44, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    font-size: 0.92rem;
    color: #fff;
    transition: all 0.25s ease;
    box-sizing: border-box;
    font-family: var(--font-body);
}

.rapid-input:focus {
    border-color: var(--rose-primary);
    background: rgba(18, 25, 44, 0.98);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.18), 0 8px 20px rgba(0, 0, 0, 0.3);
    outline: none;
}

.rapid-textarea {
    resize: vertical;
    min-height: 52px;
    line-height: 1.5;
}

.rapid-actions-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rapid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-whatsapp-action {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.44);
    filter: brightness(1.06);
}

.btn-email-action {
    background: linear-gradient(135deg, var(--rose-primary) 0%, #e11d48 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(244, 114, 182, 0.32);
}

.btn-email-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(244, 114, 182, 0.46);
    filter: brightness(1.06);
}

.rapid-status-feedback {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
    text-align: center;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

/* Live HUD Footer Bar (Palestine Time + SLA) */
.capsule-footer-hud {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.hud-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hud-clock-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-primary);
    box-shadow: 0 0 8px var(--rose-primary);
    animation: pulseDot 2s infinite;
}

.hud-time-item {
    color: var(--text-primary);
    font-weight: 700;
}

.hud-tz-tag {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.hud-sla-item {
    color: #38bdf8;
}

/* ==========================================================================
   Mobile Responsive Adjustments for Runway, Timeline, Carousel & Contact
   ========================================================================== */
@media (max-width: 768px) {
    .domain-blade {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 1.35rem 1.15rem !important;
        border-radius: 16px !important;
    }

    .skill-item {
        padding: 0.75rem 0.85rem !important;
        gap: 0.6rem !important;
    }

    .skill-name {
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    .skill-meta {
        font-size: 0.72rem !important;
        white-space: normal !important;
    }

    .skill-tier-badge {
        font-size: 0.62rem !important;
        padding: 0.15rem 0.45rem !important;
    }

    /* Alternating mobile timeline with centered spine or graceful alignment */
    .flightpath-timeline {
        padding: 1rem 0 !important;
    }

    .flightpath-timeline::before {
        left: 20px !important;
        transform: none !important;
    }

    html[dir="rtl"] .flightpath-timeline::before {
        left: auto !important;
        right: 20px !important;
        transform: none !important;
    }

    .flightpath-timeline .timeline-item {
        width: 100% !important;
        left: 0 !important;
        right: auto !important;
        margin-bottom: 1.5rem !important;
    }

    .flightpath-timeline .timeline-item.item-left,
    .flightpath-timeline .timeline-item.item-right {
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    html[dir="rtl"] .flightpath-timeline .timeline-item.item-left,
    html[dir="rtl"] .flightpath-timeline .timeline-item.item-right {
        padding-right: 50px !important;
        padding-left: 0 !important;
        text-align: right !important;
    }

    .flightpath-timeline .timeline-dot {
        left: 6px !important;
        right: auto !important;
        width: 28px !important;
        height: 28px !important;
        top: 18px !important;
    }

    html[dir="rtl"] .flightpath-timeline .timeline-dot {
        left: auto !important;
        right: 6px !important;
    }

    .flightpath-timeline .dot-inner-num {
        font-size: 0.62rem !important;
    }

    /* Mobile Testimonials Carousel */
    .testimonials-track .testimonial-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 1.5rem 1.25rem !important;
    }

    /* Mobile Direct Contact Capsule */
    .terminal-connect-capsule {
        padding: 1.65rem 1.15rem !important;
        border-radius: 18px !important;
    }

    .capsule-status-pill {
        font-size: 0.72rem !important;
        padding: 0.25rem 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .capsule-title {
        font-size: 1.45rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.45rem !important;
    }

    .capsule-sub {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .direct-gateways-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin: 1.4rem 0 !important;
    }

    .quick-dispatch-box {
        padding: 1.35rem 1.1rem !important;
        border-radius: 16px !important;
    }

    .rapid-input-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .rapid-actions-bar {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .capsule-footer-hud {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem !important;
        padding: 0.95rem 1.15rem !important;
    }
}

