/* Base Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #45a049;
    --text-primary: #2c3e50;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Heebo', sans-serif;
}

/* RTL Base Layout */
.rtl-content {
    direction: rtl;
    text-align: right;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    padding: 40px;
    overflow: hidden;
    text-align: center;
}

.hero-section h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-section p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-showcase {
    margin: 40px 0;
}

.feature-section {
    margin-bottom: 40px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-content {
    padding: 40px;
    overflow: hidden;
}

.feature-section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-section p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Screenshots Base Styles */
.screenshot-img,
.screenshot-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    padding: 10px;
    background: white;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-img:hover,
.screenshot-card img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Feature Screenshot Container */
.feature-screenshot {
    margin: 20px auto;
    text-align: center;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 600px;
    justify-content: center;
    align-items: start;
}

/* Screenshot Card */
.screenshot-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    max-width: 250px;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.screenshot-caption {
    padding: 16px;
    background: white;
    border-radius: 0 0 12px 12px;
    text-align: right;
}

.screenshot-caption h4 {
    color: var(--text-primary);
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.screenshot-caption p {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

/* Feature Highlight */
.feature-highlight {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-highlight h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlight li {
    margin: 10px 0;
    padding-right: 25px;
    font-size: 0.95em;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    margin: 40px 0;
    padding: 30px;
    border-radius: var(--border-radius);
}

.cta-content h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1em;
    margin-bottom: 25px;
}

.button {
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rtl-content {
        padding: 10px;
    }

    .hero-section {
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .hero-section p {
        font-size: 0.95em;
        line-height: 1.4;
    }

    .feature-content {
        padding: 20px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 250px;
    }

    .screenshot-card {
        max-width: 220px;
    }

    .cta-section {
        padding: 25px 15px;
    }
} 