/* Custom Properties */
:root {
    --primary-color: #0088cc;
    --secondary-color: #e3f2fd;
    --dark-color: #333;
    --light-color: #f8f9fa;
}

/* General Styles */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img.logo {
    height: 40px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 60px;
    background-color: var(--light-color);
}

.policy-content {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.policy-content h1 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
}

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

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.app-screenshot {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

/* We Are Section */
.we-are {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-image {
    position: relative;
    padding: 20px;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.about-content {
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 1rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    margin: 0;
}

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

/* Products Section */
.products {
    padding: 80px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

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

    .app-screenshot {
        margin-top: 2rem;
        transform: none;
    }

    .navbar .download-buttons {
        margin-top: 1rem;
    }

    .floating-image {
        display: none;
    }

    .about-content {
        text-align: center;
        padding: 2rem 0;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-item i {
        margin: 0 0 1rem 0;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .products, .features, .we-are, .policy-content {
    animation: fadeIn 1s ease-out;
}