/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #16a34a;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #16a34a;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
}

.btn-secondary {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    background: #f0fdf4;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: right;
}

.hero-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-title .highlight {
    color: #16a34a;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #16a34a;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-visual {
    position: relative;
}

.chat-demo {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    transform: rotate(3deg);
    transition: transform 0.3s;
}

.chat-demo:hover {
    transform: rotate(0deg) scale(1.02);
}

.chat-header {
    background: #16a34a;
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.message-auto {
    background: #f3f4f6;
    text-align: right;
    color: #374151;
}

.message-user {
    background: #dcfce7;
    text-align: left;
    color: #374151;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: #ddd6fe;
    color: #7c3aed;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    stroke: none;
    fill: none;
    stroke-width: 1.5;
    background: #dcfce7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: #16a34a;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #16a34a 0%, #3b82f6 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.cta-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-popular {
    border: 2px solid #16a34a;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111827;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
}

.price-period {
    color: #6b7280;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
}

.check-icon {
    color: #16a34a;
    font-weight: bold;
    margin-top: 2px;
}

.plan-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-button-primary {
    background: #16a34a;
    color: white;
}

.plan-button-primary:hover {
    background: #15803d;
}

.plan-button-secondary {
    background: #111827;
    color: white;
}

.plan-button-secondary:hover {
    background: #374151;
}

.custom-plan {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Integrations Section */
.integrations {
    padding: 5rem 0;
    background: #f9fafb;
    text-align: center;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.integration-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.integration-logo:hover {
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
    font-family: 'Cairo', sans-serif;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cairo', sans-serif;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #f9fafb;
    border: none;
    text-align: right;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Cairo', sans-serif;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    display: none;
    color: #6b7280;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-popular {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .integrations-logos {
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Icons using Unicode */
.icon-message::before { content: "💬"; }
.icon-users::before { content: "👥"; }
.icon-zap::before { content: "⚡"; }
.icon-bot::before { content: "🤖"; }
.icon-cart::before { content: "🛒"; }
.icon-chart::before { content: "📊"; }
.icon-clock::before { content: "🕐"; }
.icon-shield::before { content: "🛡️"; }
.icon-phone::before { content: "📱"; }
.icon-star::before { content: "⭐"; }
.icon-check::before { content: "✓"; }
.icon-whatsapp::before { content: "📱"; }
.icon-email::before { content: "📧"; }
.icon-location::before { content: "📍"; }
.icon-globe::before { content: "🌐"; }
.icon-settings::before { content: "⚙️"; }
.icon-support::before { content: "🎧"; }
.icon-file::before { content: "📄"; }
.icon-analytics::before { content: "📈"; }

/* Swiper styles for testimonials */
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stars {
    font-size: 1.2rem;
    color: #f5a623;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    margin-bottom: 4px;
}

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    justify-content: center;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
}

.footer-bottom p {
    margin: 0;
}