        /* Scoped Container for WordPress/Elementor */
        #startpass-app {
            --primary: #0d4d54;
            --secondary: #1b2a2f;
            --accent: #fbc531;
            --text: #1b2a2f;
            --text-muted: #666666;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --card-bg: #ffffff;
            --border-color: #ddd;
            --font-en: 'Poppins', sans-serif;
            --font-ar: 'Tajawal', sans-serif;
            
            font-family: var(--font-en);
            color: var(--text);
            line-height: 1.6;
            width: 100%;
            position: relative;
            background: var(--white); /* Ensure default bg */
            transition: background 0.3s, color 0.3s;
        }

        /* Dark Theme */
        #startpass-app.theme-dark {
            --primary: #4db6ac; /* Lighter Teal */
            --secondary: #e0f2f1;
            --accent: #fbc531;
            --text: #e0e0e0;
            --text-muted: #b0bec5;
            --light-bg: #1e272e;
            --white: #2f3640; /* Main BG becomes dark */
            --card-bg: #353b48; /* Cards slightly lighter */
            --border-color: #576574;
        }
        
        /* Grey Theme */
        #startpass-app.theme-grey {
            --primary: #607d8b;
            --secondary: #cfd8dc;
            --accent: #ffb74d;
            --text: #37474f;
            --text-muted: #546e7a;
            --light-bg: #eceff1;
            --white: #cfd8dc; 
            --card-bg: #f5f5f5;
            --border-color: #b0bec5;
        }

        #startpass-app * {
            box-sizing: border-box;
        }

        /* RTL Support within scope */
        #startpass-app.rtl {
            font-family: var(--font-ar);
            direction: rtl;
            text-align: right;
        }

        #startpass-app a { text-decoration: none; color: inherit; transition: 0.3s; }
        #startpass-app ul { list-style: none; padding: 0; margin: 0; }
        #startpass-app img { max-width: 100%; }

        /* Container */
        #startpass-app .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        #startpass-app header {
            background: var(--card-bg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            position: fixed; /* Note: In elementor this might need to be sticky or absolute relative to the iframe/container if heavily nested, but usually fixed works for 'full page' mode */
            width: 100%;
            top: 0;
            left: 0; /* Reset for fixed positioning */
            z-index: 1000;
            height: 80px;
            display: flex;
            align-items: center;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo img {
            height: 55px; /* Increased size */
            width: auto;
        }

        .nav-menu ul {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-menu a {
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
        }

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

        .btn-nav {
            background: var(--primary);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 50px;
            box-shadow: 0 4px 10px rgba(13, 107, 114, 0.2);
        }

        .btn-nav:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .lang-switcher, .theme-switcher {
            display: flex;
            gap: 10px;
            border-left: 1px solid var(--border-color);
            padding-left: 15px;
        }

        #startpass-app.rtl .lang-switcher, #startpass-app.rtl .theme-switcher {
            border-left: none;
            border-right: 1px solid var(--border-color);
            padding-left: 0;
            padding-right: 15px;
        }
        
        .theme-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text);
            opacity: 0.6;
            transition: 0.3s;
        }
        
        .theme-switcher button:hover { opacity: 1; color: var(--accent); }

        .lang-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #888;
            font-family: inherit;
        }

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

        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

        /* Hero */
        #startpass-app .hero {
            margin-top: 80px;
            background: var(--light-bg); /* Use var for theming */
            color: var(--text);
            padding: 100px 0;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .hero-text {
            flex: 1;
            z-index: 2;
        }
        
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            perspective: 1000px;
        }

        .brand-subtitle {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--text);
        }
        
        .highlight-text {
            color: var(--accent);
            display: inline-block;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 600px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .hero-btns {
            display: flex;
            justify-content: flex-start;
            gap: 20px;
        }
        
        /* 3D Passport Card */
        .passport-card-3d {
            width: 380px;
            height: 380px;
            background: #fff;
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            transform-style: preserve-3d;
            transform: rotateY(-15deg) rotateX(10deg);
            transition: transform 0.5s ease-out;
            padding: 30px;
            border: 8px solid #fcefc7; /* Pale yellow border */
        }
        
        .passport-card-3d:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }
        
        .card-logo {
            font-size: 3rem;
            font-weight: 800;
            color: #0d4d54; /* Dark Teal */
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .card-logo span { font-family: 'Poppins', sans-serif; letter-spacing: -2px; }
        
        .vip-badge {
            position: absolute;
            top: 40px;
            right: 30px;
            background: #1e3a8a; /* Dark Blue */
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .card-lines {
            margin-bottom: 40px;
        }
        
        .line-placeholder {
            height: 12px;
            background: #f0f4f8;
            border-radius: 6px;
            margin-bottom: 12px;
            width: 100%;
        }
        
        .line-placeholder.short { width: 60%; }
        
        .boarding-ready {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .boarding-icon {
            width: 50px;
            height: 50px;
            background: #1e3a8a;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fbc531;
            font-size: 1.5rem;
        }
        
        .boarding-text h4 {
            color: #1b2a2f;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .boarding-text span {
            font-size: 0.65rem;
            color: #1e3a8a;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--accent);
            color: #1b2a2f; /* Dark text on yellow button */
            box-shadow: 0 10px 20px rgba(251, 197, 49, 0.3);
            font-weight: 700;
        }

        .btn-primary:hover {
            background: #e1b12c;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(251, 197, 49, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #ddd;
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* Sections */
        .section { padding: 80px 0; }
        .bg-light { background-color: var(--light-bg); }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-top: 15px;
        }

        /* About & Definition */
        .definition-box {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            margin-bottom: 50px;
            border-top: 5px solid var(--accent);
        }

        .vm-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            flex: 1;
            text-align: center;
            transition: transform 0.3s;
        }

        .vm-card:hover { transform: translateY(-10px); }
        .vision-mission { display: flex; gap: 30px; }

        /* Journey (Timeline) with 3D Passport Animation */
        .journey-container {
            display: flex;
            position: relative;
            gap: 40px;
        }

        .journey-passport-tracker {
            width: 350px;
            position: sticky;
            top: 100px;
            height: 500px;
            display: none; /* Hidden on mobile */
            perspective: 1000px;
        }
        
        .tracker-passport {
            width: 100%;
            height: 450px;
            background: #fff; /* Passport always white */
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            padding: 30px;
            border: 5px solid var(--accent);
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }
        
        .stamp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        
        .stamp-slot {
            height: 80px;
            border: 2px dashed #ddd;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .stamp-slot.active {
            border-color: var(--primary);
            background: #e0f2f1;
            color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .timeline {
            flex: 1;
            position: relative;
            padding-left: 30px;
            border-left: 4px solid #ddd;
        }
        
        body.rtl .timeline {
            padding-left: 0;
            padding-right: 30px;
            border-left: none;
            border-right: 4px solid #ddd;
        }

        .timeline-item {
            margin-bottom: 60px;
            position: relative;
            opacity: 0.3; /* Dimmed by default */
            transition: all 0.5s;
            transform: translateX(20px);
        }
        
        .timeline-item.active-step {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-marker {
            position: absolute;
            left: -44px; /* Adjust based on border and padding */
            width: 24px;
            height: 24px;
            background: #ddd;
            border: 4px solid #fff;
            border-radius: 50%;
            top: 20px;
            transition: all 0.3s;
        }
        
        .timeline-item.active-step .timeline-marker {
            background: var(--accent);
            transform: scale(1.3);
        }
        
        #startpass-app.rtl .timeline::after { right: 50%; left: auto; margin-right: -2px; }

        .timeline-content {
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .timeline-content h3 { color: var(--primary); margin-bottom: 5px; font-weight: 700; font-size: 1.5rem; }
        .timeline-content h4 { color: var(--accent); margin-bottom: 15px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .timeline-content p { font-size: 1rem; color: var(--text-muted); margin-bottom: 15px; }
        
        @media (min-width: 992px) {
            .journey-passport-tracker { display: block; }
        }
        
        .badge {
            background: #e0f2f1;
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: #e0f7fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
            transition: 0.3s;
        }

        .service-card:hover .icon-circle {
            background: var(--primary);
            color: var(--white);
        }

        /* Packs & Programs */
        .packs-grid, .programs-grid, .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pack-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary);
            display: flex;
            flex-direction: column;
        }

        .pack-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.4rem; }
        .pack-card ul { margin-bottom: 25px; flex-grow: 1; }
        .pack-card li { margin-bottom: 12px; padding-left: 30px; position: relative; }
        .pack-card li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        #startpass-app.rtl .pack-card li { padding-left: 0; padding-right: 30px; }
        #startpass-app.rtl .pack-card li::before { left: auto; right: 0; }

        .btn-outline {
            display: block;
            text-align: center;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px;
            border-radius: 50px;
            font-weight: 600;
        }
        .btn-outline:hover { background: var(--primary); color: var(--white); }

        .program-item {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .program-content { padding: 25px; }
        .program-content h3 { color: var(--secondary); margin-bottom: 10px; }

        /* Events */
        .event-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .event-date {
            background: var(--primary);
            color: var(--white);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            min-width: 80px;
        }
        .event-date span { display: block; font-size: 1.5rem; font-weight: 700; }

        /* Footer */
        footer {
            background: #1a252f;
            color: var(--white);
            padding: 80px 0 30px;
        }
        .footer-content { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
        .footer-col h3 { color: var(--accent); margin-bottom: 25px; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-logo { 
            height: 60px; 
            margin-bottom: 20px; 
            filter: brightness(0) invert(1); /* Make logo white for dark footer */
        }
        .footer-bottom { border-top: 1px solid #34495e; padding-top: 30px; text-align: center; margin-top: 50px; color: #7f8c8d; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            #startpass-app.rtl .nav-menu { left: auto; right: 0; }
            .nav-menu.active { display: block; }
            .nav-menu ul { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; }
            .vision-mission { flex-direction: column; }
            
            /* Timeline Mobile */
            #startpass-app .timeline::after { left: 31px; }
            #startpass-app.rtl .timeline::after { right: 31px; left: auto; }
            
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
            #startpass-app.rtl .timeline-item { padding-right: 70px; padding-left: 25px; }
            
            .timeline-item:nth-child(even) { left: 0; }
            #startpass-app.rtl .timeline-item:nth-child(even) { right: 0; }
            
            .timeline-icon-box { left: 6px; }
            .timeline-item:nth-child(even) .timeline-icon-box { left: 6px; }
            
            #startpass-app.rtl .timeline-icon-box { right: 6px; left: auto; }
            #startpass-app.rtl .timeline-item:nth-child(even) .timeline-icon-box { right: 6px; left: auto; }
            
            .hero-btns { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
        }
