:root {
    --primary: #E1522A;
    --text: #1a1a1a;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --border: #eeeeee;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

body.rtl {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

body.rtl * {
    font-family: 'Cairo', sans-serif;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Header/Language Switcher */
.lang-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}

body.rtl .lang-switcher {
    right: auto;
    left: 2rem;
}

.lang-switcher button {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}

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

/* Logo */
.logo-box {
    background-color: var(--primary);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    border-radius: 0; /* Square as requested */
}

.logo-text {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    padding: 20px;
}

body.rtl .logo-text {
    font-weight: 700;
    font-size: 2.5rem;
}

/* Hero Content */
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.badge {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    font-size: 0.9rem;
}

/* Services */
.services {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.services h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.service-item {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.ai-item {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: 5rem;
    padding-bottom: 2rem;
}

footer #contact-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer .email {
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: var(--transition);
}

footer .email:hover {
    color: var(--primary);
}

footer .copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 6rem;
    }

    .lang-switcher {
        top: 1.5rem;
        right: 0;
        left: 0;
        justify-content: center;
        width: 100%;
    }

    body.rtl .lang-switcher {
        left: 0;
        right: 0;
    }

    .logo-box { 
        width: 120px; 
        height: 120px; 
        margin-bottom: 2rem;
    }

    .logo-text { 
        font-size: 1.5rem; 
        padding: 10px;
    }

    body.rtl .logo-text {
        font-size: 1.8rem;
    }

    .hero h1 { 
        font-size: 1.8rem; 
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .badge {
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    .services {
        padding-top: 2rem;
    }

    .services-grid {
        flex-direction: column;
        gap: 0.8rem;
    }

    footer {
        margin-top: 3rem;
    }

    footer .email { 
        font-size: 1.1rem; 
    }
}
