@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #D4A574;
    --primary-dark: #C4956A;
    --text-color: #1a1a2e;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 120, 255, 0.15);
    --radius: 16px;
}

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

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--white);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.app-stores {
    display: flex;
    gap: 16px;
}

.store-btn img {
    height: 48px;
    border-radius: 8px;
}

.coming-soon {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-light);
    border-radius: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-screenshots {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero-screenshots img {
    height: 520px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid #1a1a2e;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.clothes-icon {
    position: absolute;
    top: 20%;
    right: -20px;
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
}

.heart-icon {
    position: absolute;
    bottom: 30%;
    left: -30px;
    font-size: 36px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer {
    background: var(--white);
    color: var(--text-color);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.copyright {
    font-weight: 600;
}

.developer {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.page-content {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 80vh;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.policy-content {
    max-width: 700px;
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: var(--text-color);
}

.policy-content ul {
    list-style: none;
    margin: 15px 0;
}

.policy-content li {
    padding: 8px 0;
    padding-right: 20px;
    position: relative;
    color: var(--text-light);
}

.policy-content li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

.form-container {
    max-width: 400px;
}

.account-list {
    margin-top: 30px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.account-item:hover {
    background: #eee;
}

.account-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
}

.account-info {
    display: flex;
    flex-direction: column;
}

.account-name {
    font-weight: 600;
}

.account-email {
    font-size: 0.9rem;
    color: var(--text-light);
}

.account-divider {
    text-align: center;
    margin: 30px 0;
    color: var(--text-light);
    position: relative;
}

.account-divider::before,
.account-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.account-divider::before { left: 0; }
.account-divider::after { right: 0; }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.lang-container {
    max-width: 400px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.lang-option:hover {
    border-color: var(--primary-color);
}

.lang-option.active {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
}

.lang-flag {
    font-size: 1.5rem;
}

.lang-name {
    flex: 1;
    font-weight: 500;
}

.lang-check {
    color: var(--primary-color);
    font-weight: bold;
}

.features-list {
    max-width: 800px;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 24px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .sub-headline {
        margin: 0 auto 24px;
        font-size: 1rem;
    }

    .app-stores {
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-btn img {
        height: 44px;
    }

    .coming-soon {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-screenshots {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .hero-screenshots img {
        height: 380px;
        border-radius: 32px;
        border-width: 6px;
    }

    .decorative-elements {
        display: none;
    }

    .footer {
        padding: 32px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        gap: 16px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo img {
        height: 40px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .sub-headline {
        font-size: 0.95rem;
    }

    .store-btn img {
        height: 40px;
    }

    .hero-screenshots img {
        height: 320px;
        border-radius: 28px;
        border-width: 5px;
    }

    .page-content {
        padding-top: 100px;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .form-container,
    .lang-container,
    .policy-content {
        max-width: 100%;
    }
}
