/* ============================================================
                   CSS VARIABLES & RESET
                   ============================================================ */
        :root {
            --bg-primary: #08080f;
            --bg-secondary: #0e0e1a;
            --bg-card: rgba(18, 18, 35, 0.75);
            --bg-glass: rgba(255, 255, 255, 0.04);
            --gold: #d4a843;
            --gold-light: #f0d68a;
            --gold-dark: #a8862e;
            --gold-glow: rgba(212, 168, 67, 0.25);
            --gold-glow-strong: rgba(212, 168, 67, 0.45);
            --text-primary: #ffffff;
            --text-secondary: #b0b0c8;
            --text-muted: #6a6a82;
            --border-gold: rgba(212, 168, 67, 0.25);
            --shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.12);
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 10px;
            --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            --font-ar: 'Cairo', sans-serif;
            --font-en-head: 'Playfair Display', serif;
            --font-en-body: 'Inter', sans-serif;
            --navbar-height: 80px;
            --section-padding: 100px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: clip;
        }

        body {
            font-family: var(--font-ar);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            transition: background 0.3s ease;
        }

        body.en {
            font-family: var(--font-en-body);
        }

        body.en h1,
        body.en h2,
        body.en h3,
        body.en .headline-font {
            font-family: var(--font-en-head);
        }

        body.ar h1,
        body.ar h2,
        body.ar h3,
        body.ar .headline-font {
            font-family: var(--font-ar);
        }

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

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

        ul {
            list-style: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 30px;
            width: 100%;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(212, 168, 67, 0.10);
            padding: 6px 18px;
            border-radius: 50px;
            border: 1px solid rgba(212, 168, 67, 0.15);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 18px;
        }

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

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.8;
        }

        .section-desc.centered {
            margin: 0 auto;
            text-align: center;
        }

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

        .text-gold {
            color: var(--gold);
        }

        /* ---- Buttons ---- */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 38px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #0a0a14;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: 0 4px 24px rgba(212, 168, 67, 0.30);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            opacity: 0;
            transition: opacity var(--transition);
            border-radius: 60px;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(212, 168, 67, 0.40);
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary i {
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover i {
            transform: translateX(4px);
        }

        body[dir="rtl"] .btn-primary:hover i {
            transform: translateX(-4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 34px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1rem;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 60px;
            cursor: pointer;
            transition: all var(--transition);
            backdrop-filter: blur(6px);
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(212, 168, 67, 0.06);
            transform: translateY(-2px);
        }

        .btn-secondary i {
            font-size: 0.85rem;
        }

        /* ============================================================
                   NAVBAR
                   ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 30px;
            height: var(--navbar-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(8, 8, 15, 0.88);
            backdrop-filter: blur(20px) saturate(1.2);
            border-bottom: 1px solid rgba(212, 168, 67, 0.08);
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
        }

        .navbar .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            z-index: 10;
        }

        .navbar .logo .logo-icon {
            font-size: 1.8rem;
            color: var(--gold);
        }

        .navbar .logo .logo-text {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.en .navbar .logo .logo-sub {
            font-family: var(--font-en-head);
            font-weight: 400;
            font-size: 0.65rem;
            letter-spacing: 2px;
            opacity: 0.6;
            -webkit-text-fill-color: var(--text-secondary);
            background: none;
            display: block;
            margin-top: -2px;
        }

        body.ar .navbar .logo .logo-sub {
            font-size: 0.6rem;
            opacity: 0.6;
            -webkit-text-fill-color: var(--text-secondary);
            background: none;
            display: block;
            margin-top: -2px;
        }

        .navbar .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .navbar .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color var(--transition);
            position: relative;
        }

        .navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width var(--transition);
        }

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

        .navbar .nav-links a:hover::after {
            width: 100%;
        }

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

        /* ---- Language Switcher ---- */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 40px;
            padding: 4px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .lang-switcher button {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 30px;
            cursor: pointer;
            transition: all var(--transition);
            font-family: inherit;
            letter-spacing: 0.5px;
        }

        .lang-switcher button.active {
            background: var(--gold);
            color: #0a0a14;
            box-shadow: 0 2px 16px rgba(212, 168, 67, 0.30);
        }

        .lang-switcher button:hover:not(.active) {
            color: var(--text-primary);
        }

        /* ---- Mobile Menu Toggle ---- */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 10;
        }

        .menu-toggle span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================================
                   HERO
                   ============================================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: var(--navbar-height) 0 60px;
            background: var(--bg-primary);
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 20px;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 168, 67, 0.10);
            border: 1px solid rgba(212, 168, 67, 0.15);
            padding: 8px 20px 8px 24px;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-bottom: 28px;
            backdrop-filter: blur(6px);
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(0.7);
            }
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6.5vw, 4.8rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
        }

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

        body.en .hero h1 {
            font-family: var(--font-en-head);
        }

        body.ar .hero h1 {
            font-family: var(--font-ar);
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 520px;
            line-height: 1.9;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-bottom: 48px;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hero-trust .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-trust .stat-item .number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
            font-family: var(--font-en-body);
        }

        .hero-trust .stat-item .label {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .hero-trust .divider {
            width: 1px;
            height: 32px;
            background: rgba(255, 255, 255, 0.08);
        }

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

        .hero-visual .visual-container {
            position: relative;
            width: 100%;
            max-width: 560px;
            aspect-ratio: 1/0.9;
        }

        .hero-visual .floating-card {
            position: absolute;
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(212, 168, 67, 0.10);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: transform 0.6s ease;
            animation: float 6s ease-in-out infinite;
        }

        .hero-visual .floating-card:nth-child(1) {
            top: 5%;
            right: 5%;
            width: 44%;
            animation-delay: 0s;
        }

        .hero-visual .floating-card:nth-child(2) {
            bottom: 8%;
            left: 2%;
            width: 38%;
            animation-delay: -2s;
        }

        .hero-visual .floating-card:nth-child(3) {
            top: 38%;
            left: 28%;
            width: 32%;
            animation-delay: -4s;
            background: rgba(212, 168, 67, 0.08);
            border-color: rgba(212, 168, 67, 0.15);
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-14px) rotate(1.5deg);
            }
        }

        .hero-visual .floating-card .card-icon {
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 8px;
            display: block;
        }

        .hero-visual .floating-card h4 {
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        body.en .hero-visual .floating-card h4 {
            font-family: var(--font-en-head);
        }

        .hero-visual .floating-card p {
            font-size: 0.7rem;
            color: var(--text-secondary);
            margin: 0;
            opacity: 0.7;
        }

        .hero-visual .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-visual .glow-orb.gold {
            width: 300px;
            height: 300px;
            background: var(--gold-glow);
            top: 10%;
            right: -10%;
            animation: orb-pulse 8s ease-in-out infinite;
        }

        .hero-visual .glow-orb.blue {
            width: 200px;
            height: 200px;
            background: rgba(60, 120, 255, 0.12);
            bottom: 0%;
            left: -5%;
            animation: orb-pulse 10s ease-in-out infinite reverse;
        }

        @keyframes orb-pulse {
            0%,
            100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.4;
            }
            50% {
                transform: scale(1.3) translate(10px, -10px);
                opacity: 0.6;
            }
        }

        .hero-visual .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-visual .floating-shapes .shape {
            position: absolute;
            border: 1.5px solid rgba(212, 168, 67, 0.08);
            border-radius: 50%;
            animation: shape-drift 20s linear infinite;
        }

        .hero-visual .floating-shapes .shape:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: -20px;
            animation-duration: 25s;
        }

        .hero-visual .floating-shapes .shape:nth-child(2) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: -10px;
            animation-duration: 18s;
            animation-delay: -5s;
            border-color: rgba(212, 168, 67, 0.05);
        }

        .hero-visual .floating-shapes .shape:nth-child(3) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 20%;
            animation-duration: 30s;
            animation-delay: -10s;
            border-color: rgba(212, 168, 67, 0.03);
        }

        @keyframes shape-drift {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(20px, -30px) rotate(90deg) scale(1.05);
            }
            50% {
                transform: translate(-10px, 20px) rotate(180deg) scale(0.95);
            }
            75% {
                transform: translate(30px, 10px) rotate(270deg) scale(1.02);
            }
            100% {
                transform: translate(0, 0) rotate(360deg) scale(1);
            }
        }

        /* ---- Hero RTL adjustments ---- */
        body[dir="rtl"] .hero p {
            margin-left: 0;
            margin-right: 0;
        }

        /* ============================================================
                   SECTIONS - Shared
                   ============================================================ */
        section {
            padding: var(--section-padding);
            position: relative;
        }

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

        .section-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            border-radius: 4px;
            margin: 16px 0 24px;
        }

        .section-divider.centered {
            margin: 16px auto 24px;
        }

        /* ---- Reveal animations ---- */
        .js .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

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

        .js .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .js .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .js .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .js .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .js .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .js .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================
                   ABOUT
                   ============================================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid rgba(212, 168, 67, 0.06);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-image .glow-ring {
            position: absolute;
            inset: -4px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(212, 168, 67, 0.08);
            pointer-events: none;
        }

        .about-content .section-desc {
            margin-bottom: 28px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 8px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .about-features li i {
            color: var(--gold);
            font-size: 0.9rem;
        }

        /* ============================================================
                   SERVICES - Bento Grid
                   ============================================================ */
        .services-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

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

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(212, 168, 67, 0.06);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            transition: all var(--transition);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

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

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 168, 67, 0.15);
            box-shadow: var(--shadow-gold);
        }

        .service-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(212, 168, 67, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 20px;
            transition: all var(--transition);
        }

        .service-card:hover .icon-wrap {
            background: rgba(212, 168, 67, 0.16);
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        body.en .service-card h3 {
            font-family: var(--font-en-head);
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        .service-card .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            transition: gap var(--transition);
        }

        .service-card:hover .learn-more {
            gap: 14px;
        }

        /* Card sizes for bento feel */
        .service-card.large {
            grid-column: span 2;
        }

        .service-card.tall {
            grid-row: span 2;
        }

        .service-card.small {
            grid-column: span 1;
        }

        /* ============================================================
                   WHY US / FEATURES
                   ============================================================ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 16px;
        }

        .feature-item {
            display: flex;
            gap: 18px;
            padding: 28px 24px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid rgba(212, 168, 67, 0.04);
            transition: all var(--transition);
        }

        .feature-item:hover {
            border-color: rgba(212, 168, 67, 0.12);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }

        .feature-item .icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(212, 168, 67, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--gold);
        }

        .feature-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* ============================================================
                   STATS
                   ============================================================ */
        .stats-section {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(212, 168, 67, 0.04);
            border-bottom: 1px solid rgba(212, 168, 67, 0.04);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-block .number {
            font-size: clamp(2.6rem, 4vw, 3.6rem);
            font-weight: 900;
            font-family: var(--font-en-body);
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.1;
        }

        .stat-block .label {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 4px;
            font-weight: 400;
        }

        /* ============================================================
                   PROCESS
                   ============================================================ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 12px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid rgba(212, 168, 67, 0.04);
            transition: all var(--transition);
            position: relative;
        }

        .process-step:hover {
            border-color: rgba(212, 168, 67, 0.12);
            transform: translateY(-6px);
        }

        .process-step .step-number {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--gold);
            background: rgba(212, 168, 67, 0.10);
            padding: 4px 14px;
            border-radius: 40px;
            margin-bottom: 16px;
            font-family: var(--font-en-body);
            letter-spacing: 0.5px;
        }

        .process-step .step-icon {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 16px;
            display: block;
            opacity: 0.7;
        }

        .process-step h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        .process-step .arrow-connector {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            color: rgba(212, 168, 67, 0.15);
            font-size: 1.2rem;
        }

        body[dir="rtl"] .process-step .arrow-connector {
            right: auto;
            left: -20px;
            transform: translateY(-50%) scaleX(-1);
        }

        /* ============================================================
                   PORTFOLIO
                   ============================================================ */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 12px;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid rgba(212, 168, 67, 0.04);
            aspect-ratio: 4/3;
            transition: all var(--transition);
            cursor: pointer;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.06);
        }

        .portfolio-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(8, 8, 15, 0.85) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            opacity: 0;
            transition: opacity var(--transition);
        }

        .portfolio-item:hover .overlay {
            opacity: 1;
        }

        .portfolio-item .overlay h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .portfolio-item .overlay p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .portfolio-item .overlay .tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--gold);
            background: rgba(212, 168, 67, 0.12);
            padding: 2px 14px;
            border-radius: 40px;
            margin-top: 8px;
            align-self: flex-start;
        }

        /* ============================================================
                   TESTIMONIALS
                   ============================================================ */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 12px;
        }

        .testimonial-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 32px 28px;
            border: 1px solid rgba(212, 168, 67, 0.04);
            transition: all var(--transition);
        }

        .testimonial-card:hover {
            border-color: rgba(212, 168, 67, 0.10);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }

        .testimonial-card .stars {
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .testimonial-card blockquote {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-card .author .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(212, 168, 67, 0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold);
            flex-shrink: 0;
            border: 1.5px solid rgba(212, 168, 67, 0.10);
        }

        .testimonial-card .author .info .name {
            font-weight: 700;
            font-size: 0.9rem;
        }

        .testimonial-card .author .info .role {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ============================================================
                   FAQ
                   ============================================================ */
        .faq-grid {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(212, 168, 67, 0.04);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(212, 168, 67, 0.08);
        }

        .faq-item .question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            gap: 20px;
            user-select: none;
        }

        .faq-item .question:hover {
            color: var(--gold);
        }

        .faq-item .question .icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(212, 168, 67, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--gold);
            transition: all var(--transition);
        }

        .faq-item.active .question .icon {
            transform: rotate(180deg);
            background: rgba(212, 168, 67, 0.12);
        }

        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease;
            padding: 0 24px;
        }

        .faq-item.active .answer {
            max-height: 300px;
            padding: 0 24px 24px;
        }

        .faq-item .answer p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.8;
            margin: 0;
        }

        /* ============================================================
                   CTA
                   ============================================================ */
        .cta-section {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(212, 168, 67, 0.04);
            border-bottom: 1px solid rgba(212, 168, 67, 0.04);
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(212, 168, 67, 0.04), rgba(212, 168, 67, 0.01));
            border: 1px solid rgba(212, 168, 67, 0.08);
            border-radius: var(--radius-lg);
            padding: 60px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box .glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--gold-glow);
            filter: blur(120px);
            top: -200px;
            right: -100px;
            pointer-events: none;
            opacity: 0.3;
        }

        .cta-box h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-box p {
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto 32px;
            font-size: 1.05rem;
            position: relative;
        }

        .cta-box .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            position: relative;
        }

        /* ============================================================
                   FOOTER
                   ============================================================ */
        footer {
            padding: 60px 0 30px;
            background: var(--bg-primary);
            border-top: 1px solid rgba(212, 168, 67, 0.04);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-brand .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-brand .logo .logo-icon {
            font-size: 1.6rem;
            color: var(--gold);
        }

        .footer-brand .logo .logo-text {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            max-width: 300px;
            line-height: 1.8;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--text-primary);
        }

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

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .footer-socials {
            display: flex;
            gap: 14px;
            margin-top: 16px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition);
            font-size: 0.9rem;
        }

        .footer-socials a:hover {
            background: rgba(212, 168, 67, 0.10);
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-3px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--gold);
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .service-card.large {
                grid-column: span 1;
            }
            .service-card.tall {
                grid-row: span 1;
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-step .arrow-connector {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero p {
                margin: 0 auto 30px;
            }

            .hero-actions {
                justify-content: center;
            }
            .hero-trust {
                justify-content: center;
            }

            .hero-visual .visual-container {
                max-width: 440px;
                margin: 0 auto;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-features {
                grid-template-columns: 1fr 1fr;
            }

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

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

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

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

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

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .cta-box {
                padding: 40px 30px;
            }

            .navbar .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(8, 8, 15, 0.97);
                backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 32px;
                padding: 60px 30px;
                z-index: 5;
            }

            .navbar .nav-links.open {
                display: flex;
            }

            .navbar .nav-links a {
                font-size: 1.3rem;
                font-weight: 600;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-visual .floating-card:nth-child(1) {
                width: 50%;
                top: 0%;
                right: 0%;
            }
            .hero-visual .floating-card:nth-child(2) {
                width: 44%;
                bottom: 2%;
                left: 0%;
            }
            .hero-visual .floating-card:nth-child(3) {
                width: 38%;
                top: 30%;
                left: 20%;
            }
        }

        @media (max-width: 640px) {
            :root {
                --navbar-height: 68px;
                --section-padding: 60px 0;
            }

            .container {
                padding: 0 18px;
            }

            .hero {
                min-height: 92vh;
                padding-top: var(--navbar-height);
            }

            .hero h1 {
                font-size: clamp(2rem, 10vw, 2.8rem);
            }
            .hero p {
                font-size: 0.95rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .hero-trust {
                gap: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-trust .divider {
                display: none;
            }

            .hero-visual .visual-container {
                max-width: 320px;
            }
            .hero-visual .floating-card {
                padding: 14px 16px;
            }
            .hero-visual .floating-card:nth-child(1) {
                width: 55%;
                top: 0%;
                right: 0%;
            }
            .hero-visual .floating-card:nth-child(2) {
                width: 48%;
                bottom: 0%;
                left: 0%;
            }
            .hero-visual .floating-card:nth-child(3) {
                display: none;
            }
            .hero-visual .floating-card .card-icon {
                font-size: 1.2rem;
            }
            .hero-visual .floating-card h4 {
                font-size: 0.7rem;
            }
            .hero-visual .floating-card p {
                font-size: 0.6rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-block .number {
                font-size: 2rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .cta-box {
                padding: 30px 20px;
            }
            .cta-box .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            .cta-box .cta-actions .btn-primary,
            .cta-box .cta-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .navbar {
                padding: 0 16px;
            }
            .navbar .logo {
                font-size: 1rem;
            }
            .navbar .logo .logo-icon {
                font-size: 1.4rem;
            }
            .navbar .logo .logo-sub {
                font-size: 0.5rem !important;
            }

            .lang-switcher button {
                font-size: 0.65rem;
                padding: 4px 10px;
            }

            .faq-item .question {
                font-size: 0.85rem;
                padding: 16px 18px;
            }
            .faq-item .answer p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .hero-visual .visual-container {
                max-width: 260px;
            }
            .hero-visual .floating-card:nth-child(1),
            .hero-visual .floating-card:nth-child(2) {
                width: 60%;
            }
            .hero-trust .stat-item .number {
                font-size: 1.1rem;
            }
            .hero-trust .stat-item .label {
                font-size: 0.65rem;
            }
        }

        /* ---- RTL overrides ---- */
        body[dir="rtl"] .section-divider {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold));
        }

        body[dir="rtl"] .service-card::before {
            transform-origin: right;
        }

        body[dir="rtl"] .service-card:hover::before {
            transform-origin: right;
        }

        body[dir="rtl"] .navbar .nav-links a::after {
            left: auto;
            right: 0;
        }

        body[dir="rtl"] .hero-visual .floating-card:nth-child(1) {
            right: 5%;
            left: auto;
        }
        body[dir="rtl"] .hero-visual .floating-card:nth-child(2) {
            left: 2%;
            right: auto;
        }
        body[dir="rtl"] .hero-visual .floating-card:nth-child(3) {
            left: 28%;
            right: auto;
        }

        @media (max-width: 992px) {
            body[dir="rtl"] .hero-visual .floating-card:nth-child(1) {
                right: 0%;
                left: auto;
            }
            body[dir="rtl"] .hero-visual .floating-card:nth-child(2) {
                left: 0%;
                right: auto;
            }
            body[dir="rtl"] .hero-visual .floating-card:nth-child(3) {
                left: 20%;
                right: auto;
            }
        }

        /* ---- Scrollbar ---- */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }

        /* ---- Selection ---- */
        ::selection {
            background: var(--gold);
            color: #0a0a14;
        }

        /* ---- Reduced motion ---- */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .reveal,
            .reveal-left,
            .reveal-right,
            .reveal-scale {
                opacity: 1 !important;
                transform: none !important;
            }
            .hero-visual .floating-card {
                animation: none !important;
            }
            .hero-visual .glow-orb {
                animation: none !important;
            }
            .hero-visual .floating-shapes .shape {
                animation: none !important;
            }
        }
