 :root {
            /* Colors: Tiffany/Turquoise Theme */
            --primary-color: #4DB6AC;
            --primary-dark: #00897B;
            --secondary-color: #004D40;
            --text-dark: #334155;
            --light-bg: #E0F2F1;
            --navbar-height: 80px;
        }

        /* Smooth Scroll Logic */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            color: var(--text-dark);
            background: #fff;
            direction: rtl;
        }

        body[lang="en"] {
            font-family: 'Inter', sans-serif;
            direction: ltr;
        }

        /* Language Logic */
        .lang-en {
            display: none;
        }

        body[lang="en"] .lang-ar {
            display: none !important;
        }

        body[lang="en"] .lang-en {
            display: block !important;
        }

        /* Inline language spans */
        span.lang-en {
            display: none;
        }

        body[lang="en"] span.lang-ar {
            display: none !important;
        }

        body[lang="en"] span.lang-en {
            display: inline !important;
        }

        /* --- WEBSITE STYLES --- */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            height: var(--navbar-height);
        }

        .logo-svg {
            width: 45px;
            height: 45px;
        }

        .brand-text {
            line-height: 1;
            margin: 0 10px;
        }

        .brand-text .sub {
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--primary-color);
            font-weight: bold;
            display: block;
        }

        .brand-text .main {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--secondary-color);
        }

        .nav-link {
            font-weight: 600;
            color: #475569 !important;
            margin: 0 5px;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* Scroll margin to prevent navbar overlapping */
        section {
            scroll-margin-top: var(--navbar-height);
        }

        .hero-section {
            padding-top: 100px;
            padding-bottom: 80px;
            background: linear-gradient(180deg, #F0FDFA 0%, #ffffff 100%);
        }

        .hero-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(77, 182, 172, 0.2);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
        }

        .section-title {
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: var(--primary-color);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 15px;
            padding: 25px;
            transition: 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }

        .f-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-top: 20px;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: #E0F2F1;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .legal-box {
            background: #f8fafc;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            padding: 30px;
            height: 500px;
            overflow-y: auto;
            text-align: justify;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .legal-box h5 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-top: 20px;
            position: sticky;
            top: 0;
            background: #f8fafc;
            padding: 10px 0;
            border-bottom: 2px solid #e2e8f0;
        }

        .legal-box p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 15px;
        }

        /* Legal Cards - Clickable Style */
        .legal-card-link {
            text-decoration: none;
            display: block;
        }

        .legal-clickable {
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .legal-clickable:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(77, 182, 172, 0.2);
            border-color: var(--primary-color);
        }

        .legal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }

        .legal-highlights {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .legal-highlights li {
            padding: 8px 0;
            color: #64748b;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legal-highlights li i {
            color: var(--primary-color);
            font-size: 0.8rem;
        }

        .legal-cta {
            background: var(--light-bg);
            margin: -25px -25px -25px -25px;
            padding: 15px 25px;
            text-align: center;
            color: var(--primary-dark);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .legal-clickable:hover .legal-cta {
            background: var(--primary-color);
            color: white;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            border-radius: 10px;
            padding: 12px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.2);
        }

        /* --- AUTH MODALS --- */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            background: #E0F2F1;
            border-bottom: none;
            padding: 20px 30px;
        }

        .modal-title {
            color: var(--secondary-color);
            font-weight: 800;
        }

        .modal-body {
            padding: 30px;
        }

        .auth-link {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
      
