/* ===== CSS Variables ===== */
        :root {
            --primary: #1a1a1a;
            --secondary: #b8943c;
            --accent: #c9a96e;
            --light-gold: #e8dcc8;
            --bg-cream: #f7f4ee;
            --text-dark: #1e1e1e;
            --text-soft: #4a4a4a;
            --text-light: #ffffff;
            --gold-gradient: linear-gradient(135deg, #b8943c 0%, #e4cd8f 40%, #8a6f2a 100%);
            --shadow-soft: 0 20px 60px rgba(0,0,0,0.07), 0 10px 30px rgba(0,0,0,0.03);
            --shadow-strong: 0 30px 80px rgba(0,0,0,0.12), 0 15px 40px rgba(0,0,0,0.06);
            --shadow-gold: 0 20px 50px rgba(184, 148, 60, 0.25);
            --radius-card: 20px;
            --radius-btn: 8px;
            --transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            --font-ar: 'Almarai', 'Plus Jakarta Sans', sans-serif;
            --font-en: 'Plus Jakarta Sans', 'Almarai', sans-serif;
            --direction: rtl;
        }

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

        html {
            scroll-behavior: smooth;
            background: var(--bg-cream);
            overflow-x: clip;
        }

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

        /* ===== Preloader ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-cream);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        .preloader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(184, 148, 60, 0.12);
            border-top: 3px solid var(--secondary);
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar { width: 7px; }
        ::-webkit-scrollbar-track { background: var(--bg-cream); }
        ::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        /* ===== Typography ===== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        /* ===== Utility ===== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }
        .section-title .gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-sub {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            color: var(--text-soft);
            max-width: 600px;
            margin-bottom: 50px;
            font-weight: 400;
            opacity: 0.8;
        }
        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 38px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            font-family: inherit;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.02em;
        }
        .btn-primary {
            background: var(--gold-gradient);
            color: var(--primary);
            box-shadow: var(--shadow-gold);
        }
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 30px 60px rgba(184, 148, 60, 0.35);
        }
        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--secondary);
        }
        .btn-secondary:hover {
            background: var(--secondary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
            transform: translateY(-3px);
        }

        /* ===== Navbar ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 18px 0;
            z-index: 999;
            transition: all var(--transition);
            backdrop-filter: blur(0px);
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(247, 244, 238, 0.92);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
            padding: 12px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-logo .gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: width 0.4s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--secondary); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            padding: 6px 6px 6px 14px;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.85rem;
            font-family: inherit;
            color: var(--text-dark);
        }
        .lang-toggle:hover {
            background: rgba(255,255,255,0.8);
            box-shadow: var(--shadow-soft);
        }
        .lang-toggle .lang-indicator {
            background: var(--gold-gradient);
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.7rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 4px;
            transition: all 0.4s ease;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ===== Hero ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            overflow: hidden;
            background: var(--bg-cream);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 80%;
            height: 140%;
            background: radial-gradient(circle at 70% 50%, rgba(184, 148, 60, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-content {
            padding: 20px 0;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(184, 148, 60, 0.10);
            color: var(--secondary);
            padding: 8px 24px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 30px;
            border: 1px solid rgba(184, 148, 60, 0.12);
            backdrop-filter: blur(4px);
        }
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.6rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }
        .hero h1 .gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            color: var(--text-soft);
            max-width: 500px;
            margin-bottom: 40px;
            opacity: 0.8;
            line-height: 1.8;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 50px;
        }
        .hero-stats {
            display: flex;
            gap: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .hero-stats .stat h4 {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stats .stat p {
            font-size: 0.9rem;
            color: var(--text-soft);
            margin: 0;
            opacity: 0.7;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-visual .hero-img-wrapper {
            width: 100%;
            max-width: 600px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            position: relative;
            transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
            transition: transform 0.8s ease;
        }
        .hero-visual .hero-img-wrapper:hover {
            transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
        }
        .hero-visual .hero-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            aspect-ratio: 4/3;
        }
        .hero-visual .floating-card {
            position: absolute;
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(16px);
            padding: 16px 26px;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.2);
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: floatY 6s ease-in-out infinite alternate;
        }
        .hero-visual .floating-card:nth-child(2) {
            top: 10%;
            left: -10%;
            animation-delay: 0.5s;
        }
        .hero-visual .floating-card:nth-child(3) {
            bottom: 15%;
            right: -8%;
            animation-delay: 1s;
        }
        .hero-visual .floating-card .badge-icon {
            font-size: 1.4rem;
            line-height: 1;
        }
        @keyframes floatY {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-12px); }
        }

        /* ===== Services ===== */
        .services {
            background: var(--primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .services::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(184, 148, 60, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .services .section-title { color: #fff; }
        .services .section-sub { color: rgba(255,255,255,0.6); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        .service-card {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(4px);
            padding: 40px 30px;
            border-radius: var(--radius-card);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all var(--transition);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 0;
        }
        .service-card:hover::before { opacity: 0.06; }
        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(184, 148, 60, 0.25);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        .service-card .card-icon {
            font-size: 2.4rem;
            margin-bottom: 18px;
            display: inline-block;
            position: relative;
            z-index: 1;
            line-height: 1;
        }
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .service-card p {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        .service-card .learn-more {
            display: inline-block;
            margin-top: 20px;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .service-card .learn-more:hover { letter-spacing: 1px; opacity: 0.8; }

        /* ===== About / Stats ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            position: relative;
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .about-image .exp-badge {
            position: absolute;
            bottom: -16px;
            right: -16px;
            background: var(--gold-gradient);
            color: var(--primary);
            padding: 18px 28px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.8rem;
            box-shadow: var(--shadow-gold);
            line-height: 1.2;
            text-align: center;
            min-width: 110px;
        }
        .about-image .exp-badge small {
            display: block;
            font-size: 0.75rem;
            font-weight: 400;
            opacity: 0.8;
        }
        .about-text h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            margin-bottom: 20px;
        }
        .about-text p {
            color: var(--text-soft);
            margin-bottom: 30px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .about-features li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .about-features li::before {
            content: '◆';
            color: var(--secondary);
            font-size: 0.9rem;
        }

        /* ===== Portfolio / Gallery ===== */
        .portfolio {
            background: var(--bg-cream);
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .portfolio-item {
            border-radius: var(--radius-card);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
            transition: all var(--transition);
            aspect-ratio: 4/3;
        }
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .portfolio-item:hover img { transform: scale(1.04); }
        .portfolio-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(3px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .portfolio-item:hover .overlay { opacity: 1; }
        .portfolio-item .overlay h4 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 4px;
        }
        .portfolio-item .overlay p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        /* ===== Testimonials ===== */
        .testimonials {
            background: var(--primary);
            color: #fff;
        }
        .testimonials .section-sub { color: rgba(255,255,255,0.6); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background: rgba(255,255,255,0.03);
            padding: 35px 30px;
            border-radius: var(--radius-card);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all var(--transition);
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            border-color: rgba(184, 148, 60, 0.2);
        }
        .testimonial-card .stars {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .testimonial-card blockquote {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .testimonial-card .author img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--secondary);
        }
        .testimonial-card .author h5 {
            font-size: 1rem;
            margin-bottom: 2px;
        }
        .testimonial-card .author span {
            font-size: 0.8rem;
            opacity: 0.6;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 20px 0;
        }
        .faq-item button {
            width: 100%;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 12px 0;
            cursor: pointer;
            font-family: inherit;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        .faq-item button:hover { color: var(--secondary); }
        .faq-item button .icon {
            font-size: 1.4rem;
            transition: transform 0.4s ease;
            font-weight: 300;
        }
        .faq-item.active button .icon { transform: rotate(45deg); }
        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: var(--text-soft);
            line-height: 1.7;
        }
        .faq-item.active .answer {
            max-height: 300px;
            padding: 10px 0 20px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--gold-gradient);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: var(--primary);
            margin-bottom: 16px;
            font-weight: 800;
        }
        .cta-section p {
            color: rgba(0,0,0,0.6);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }
        .cta-section .btn {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .cta-section .btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .footer p { font-size: 0.95rem; line-height: 1.8; }
        .footer ul { list-style: none; }
        .footer ul li { margin-bottom: 12px; }
        .footer ul a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer ul a:hover { color: var(--secondary); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.9rem;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-visual .hero-img-wrapper { max-width: 100%; }
            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .section-padding { padding: 70px 0; }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 280px;
                background: rgba(247, 244, 238, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transform: translateX(100%);
                transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
                box-shadow: -10px 0 40px rgba(0,0,0,0.04);
                padding: 40px;
                z-index: 1000;
            }
            .nav-links.open { transform: translateX(0%); }
            .hamburger { display: flex; }
            .hero-stats { gap: 30px; flex-wrap: wrap; }
            .hero-visual .floating-card { display: none; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .hero-visual .hero-img-wrapper {
                transform: none !important;
            }
            .hero-visual .hero-img-wrapper:hover {
                transform: none !important;
            }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.4rem; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .btn { justify-content: center; padding: 14px 24px; }
            .hero-stats { flex-direction: column; gap: 14px; }
            .about-image .exp-badge { bottom: 10px; right: 10px; padding: 12px 18px; font-size: 1.4rem; min-width: 70px; }
        }

        /* ===== Animations ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== RTL Overrides ===== */
        html[dir="ltr"] .hero-visual .hero-img-wrapper {
            transform: perspective(1200px) rotateY(3deg) rotateX(2deg);
        }
        html[dir="ltr"] .hero-visual .hero-img-wrapper:hover {
            transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
        }
        html[dir="ltr"] .hero-visual .floating-card:nth-child(2) { left: auto; right: -10%; }
        html[dir="ltr"] .hero-visual .floating-card:nth-child(3) { right: auto; left: -8%; }
        html[dir="ltr"] .about-image .exp-badge { right: auto; left: -16px; }

        /* ===== Accessibility ===== */
        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
            .reveal { opacity: 1 !important; transform: none !important; }
            .reveal-left { opacity: 1 !important; transform: none !important; }
            .reveal-right { opacity: 1 !important; transform: none !important; }
            .hero-visual .floating-card { animation: none !important; }
        }

        /* ===== Image loading ===== */
        img { background: #e8e2d6; }
