/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #1a0b33 0%, #2d1b69 25%, #1e3a8a 50%, #3730a3 75%, #1a0b33 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.pulse { animation: pulse 2s infinite; }
.bounce { animation: bounce 2s infinite; }

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fbbf24, #fde68a, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #93c5fd;
    margin-top: 16px;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #16a34a;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
}

.phone-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.4);
}

.consultation-text {
    color: #fbbf24;
    font-weight: 600;
}

/* Buttons */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #16a34a;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.whatsapp-text {
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .whatsapp-text {
        display: none;
    }
}

/* Sections */
.about, .services, .testimonials, .features, .contact {
    padding: 64px 0;
}

.about {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.services {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonials {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(147, 51, 234, 0.5));
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 48px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-cta {
    display: flex;
    justify-content: center;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(59, 130, 246, 0.5));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    position: relative;
    margin-bottom: 16px;
}

.service-icon svg {
    color: #fbbf24;
    margin-bottom: 16px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge.urgent {
    background: #dc2626;
    color: white;
    animation: pulse 1.5s infinite;
}

.badge.popular {
    background: #16a34a;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    background: #16a34a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: #15803d;
}

.services-summary {
    text-align: center;
    margin-top: 32px;
}

.summary-card {
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 16px;
}

.summary-text {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
}

.summary-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.summary-icon svg {
    color: #fbbf24;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.stars {
    display: flex;
    margin-bottom: 12px;
}

.star {
    color: #fbbf24;
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.testimonial-text {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    color: #fbbf24;
    font-weight: 600;
}

.testimonials-summary {
    text-align: center;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    color: #fbbf24;
    margin-bottom: 16px;
}

.feature-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

/* Contact Section */
.contact {
    background: linear-gradient(45deg, rgba(22, 163, 74, 0.5), rgba(59, 130, 246, 0.5));
    backdrop-filter: blur(10px);
}

.contact-content {
    text-align: center;
}

.contact-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.main-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #16a34a;
    color: white;
    padding: 24px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
}

.main-contact-btn:hover {
    background: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(22, 163, 74, 0.5);
}

.contact-text {
    text-align: right;
}

.phone-number {
    font-size: 0.875rem;
    opacity: 0.9;
}

.availability-text {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    max-width: 600px;
    width: 100%;
    margin-top: 32px;
}

.contact-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-feature svg {
    color: #fbbf24;
}

.contact-feature p {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 16px;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .about, .services, .testimonials, .features, .contact {
        padding: 48px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .main-contact-btn {
        padding: 20px 32px;
        font-size: 1.125rem;
    }
    
    .phone-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .about, .services, .testimonials, .features, .contact {
        padding: 32px 0;
    }
    
    .about-card, .summary-card, .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .main-contact-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}