
        :root {
            --navy: #1E3A5F;
            --gold: #C9A961;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --light-bg: #F8F9FA;
            --gray: #6B7280;
            --dark: #1F2937;
            --border: #E5E7EB;
            --success: #10B981;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.en {
            font-family: 'Roboto', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Language Toggle */
        .lang-toggle {
            position: fixed;
            top: 20px;
            left: 24px;
            z-index: 1001;
            background: var(--white);
            border: 2px solid var(--navy);
            border-radius: 50px;
            padding: 8px 20px;
            cursor: pointer;
            font-weight: 700;
            color: var(--navy);
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            font-size: 14px;
        }

        .lang-toggle:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
            padding: 12px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .brand {
            font-size: 28px;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }

        .logo-text .tagline {
            font-size: 11px;
            color: var(--gold);
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 15px;
        }

        .btn-primary {
            background: var(--orange);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #E55A2B;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--navy);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 24px;
            line-height: 1.1;
            animation: fadeInUp 0.8s ease;
        }

        .hero .subtitle {
            font-size: 28px;
            color: var(--gray);
            margin-bottom: 16px;
            font-weight: 600;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero .description {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-top: 80px;
            animation: fadeInUp 0.8s ease 0.8s backwards;
        }

        .stat-card {
            text-align: center;
            padding: 24px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--gray);
            font-weight: 600;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 60px;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            gap: 32px;
        }

        .service-category {
            background: var(--white);
            border-radius: var(--radius);
            border: 2px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
        }

        .service-category:hover {
            border-color: var(--orange);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .service-header {
            background: linear-gradient(135deg, var(--navy) 0%, #2D4A6F 100%);
            padding: 32px;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-header h3 {
            font-size: 28px;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .expand-icon {
            font-size: 32px;
            transition: var(--transition);
        }

        .service-category.active .expand-icon {
            transform: rotate(180deg);
        }

        .service-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .service-category.active .service-content {
            max-height: 2000px;
        }

        .service-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 32px;
        }

        .service-item {
            padding: 24px;
            background: var(--light-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .service-item:hover {
            background: var(--white);
            border-color: var(--orange);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .service-item h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-item h4::before {
            content: '⚡';
            font-size: 20px;
        }

        .service-item ul {
            list-style: none;
            padding-right: 0;
        }

        .service-item li {
            padding: 8px 0;
            color: var(--gray);
            font-size: 15px;
            display: flex;
            align-items: start;
            gap: 8px;
        }

        .service-item li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 48px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .features-list {
            display: grid;
            gap: 16px;
            margin-top: 32px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--orange) 0%, #E55A2B 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--white);
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        /* Workflow Section */
        .workflow {
            padding: 100px 0;
            background: var(--white);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .workflow-step {
            text-align: center;
            padding: 32px;
            background: var(--light-bg);
            border-radius: var(--radius);
            border: 2px solid var(--border);
            position: relative;
            transition: var(--transition);
        }

        .workflow-step:hover {
            border-color: var(--orange);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--orange) 0%, #E55A2B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 900;
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .step-icon {
            font-size: 64px;
            margin: 24px 0 16px;
        }

        .workflow-step h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .workflow-step p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30, 58, 95, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 24px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay p {
            color: var(--white);
            font-weight: 700;
            font-size: 18px;
        }

        /* Booking Section */
        .booking {
            padding: 100px 0;
            background: var(--white);
        }

        .booking-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .tab-btn {
            padding: 16px 32px;
            background: var(--light-bg);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-weight: 700;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--white);
        }

        .tab-content {
            display: none;
            max-width: 800px;
            margin: 0 auto;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .booking-card {
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 48px;
            box-shadow: var(--shadow-md);
        }

        .booking-card h3 {
            font-size: 32px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 24px;
            text-align: center;
        }

        .contact-info {
            display: grid;
            gap: 16px;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            border: 2px solid var(--border);
        }

        .contact-item:hover {
            border-color: var(--orange);
            transform: translateX(-8px);
            box-shadow: var(--shadow-md);
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--orange) 0%, #E55A2B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .contact-details p {
            font-size: 20px;
            font-weight: 700;
            color: var(--orange);
            margin: 0;
        }

        .booking-form {
            display: grid;
            gap: 20px;
        }

        .form-group {
            display: grid;
            gap: 8px;
        }

        .form-group label {
            font-weight: 700;
            color: var(--navy);
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 15px;
            transition: var(--transition);
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--navy) 0%, #2D4A6F 100%);
            color: var(--white);
            padding: 60px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand img {
            height: 60px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 20px;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--orange);
            transform: translateY(-4px);
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-right: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-address {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .footer-address strong {
            color: var(--gold);
            display: block;
            margin-bottom: 8px;
        }

        /* Floating Buttons */
        .floating-actions {
            position: fixed;
            bottom: 32px;
            left: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 999;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            text-decoration: none;
        }

        .float-btn.whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .float-btn.phone {
            background: linear-gradient(135deg, var(--orange) 0%, #E55A2B 100%);
        }

        .float-btn:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 400px;
                background: var(--white);
                flex-direction: column;
                padding: 100px 40px 40px;
                box-shadow: var(--shadow-lg);
                transition: var(--transition);
                align-items: flex-start;
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero .subtitle {
                font-size: 22px;
            }

            .section-title {
                font-size: 36px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .lang-toggle {
                top: 80px;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .booking-card {
                padding: 32px 24px;
            }
        }

        /* English Direction Overrides */
        html[dir="ltr"] .service-item li::before {
            content: '✓';
        }

        html[dir="ltr"] .contact-item:hover {
            transform: translateX(8px);
        }

        html[dir="ltr"] .footer-links a:hover {
            padding-left: 8px;
            padding-right: 0;
        }

        html[dir="ltr"] .floating-actions {
            left: auto;
            right: 32px;
        }

        html[dir="ltr"] .lang-toggle {
            left: auto;
            right: 24px;
        }
    