:root {
    --primary-color: #009688;
    --primary-dark: #00796B;
    --dark-bg: #1B1725;
    --light-bg: #F5F5F5;
    --text-dark: #333;
    --text-light: #ffffff;
    --font-family: 'Tajawal', sans-serif; 
}

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

body {
    font-family: var(--font-family);
    line-height: 1.7; 
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--text-light);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 45px;
    height: 45px;
    margin-left: 15px;
}

header .logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #555;
}

.cta-button img {
    height: 60px;
    transition: transform 0.3s ease;
}

.cta-button:hover img {
    transform: scale(1.05);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Showcase Section */
.showcase {
    padding: 60px 0;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.screenshots img {
    max-width: 200px; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.screenshots img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
    background: var(--text-light);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-button.telegram {
    background-color: #2AABEE;
    color: white;
}
.contact-button.telegram:hover {
    background-color: #1a94d6;
}

.contact-button.email {
    background-color: #777;
    color: white;
}
.contact-button.email:hover {
    background-color: #555;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    color: #00c3b0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}

/* Privacy Page Content */
.page-content {
    padding: 60px 0;
    background: white;
}
.page-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.page-content h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
}
.page-content p, .page-content ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.page-content ul {
    padding-right: 20px;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: right;
    }
    .hero-content {
        flex: 1;
    }
    .hero-image {
        flex: 1;
    }
}
