/* Base Styles */
body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    color: #1f2937;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 6rem 0;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #10b981;
        outline: none;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

/* Trust Bar */
.trust-bar {
    padding: 1rem 0;
    font-weight: 500;
}

/* FAQ Items */
.faq-item {
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: #10b981;
    }

/* Sticky CTA */
.sticky-cta {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .feature-card {
        margin-bottom: 1rem;
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .form-group label,
[dir="rtl"] .flex.items-center label {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}
