/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Amiri', serif;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-phone {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation: glow 2s ease-in-out infinite;
}

.btn-whatsapp {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.btn-whatsapp:hover {
    background: #f59e0b;
    color: #4c1d95;
}

.btn-service {
    background: #10b981;
    color: white;
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.btn-service:hover {
    background: #059669;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4c1d95, #5b21b6, #4c1d95);
    color: white;
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    text-align: center;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.header-title i {
    color: #f59e0b;
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.header-title h1 {
    font-size: 2.5rem;
    color: #f59e0b;
    margin: 0;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .header-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    color: #4c1d95;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #f59e0b;
}

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

.feature-card i {
    font-size: 48px;
    color: #5b21b6;
    margin-bottom: 16px;
}

.feature-card p {
    font-weight: 600;
    color: #1f2937;
}

.consultation-card {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.consultation-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.consultation-card p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.consultation-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .consultation-info {
        flex-direction: row;
        justify-content: center;
    }
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.availability {
    background: white;
    color: #d97706;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2rem;
    color: #4c1d95;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.pink-gradient { background: linear-gradient(135deg, #ec4899, #ef4444); }
.purple-gradient { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.green-gradient { background: linear-gradient(135deg, #10b981, #059669); }
.orange-gradient { background: linear-gradient(135deg, #f59e0b, #d97706); }
.blue-gradient { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.red-gradient { background: linear-gradient(135deg, #ef4444, #ec4899); }

.service-card h3 {
    font-size: 1.25rem;
    color: #4c1d95;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #d97706;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    color: #059669;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.services-guarantee {
    background: linear-gradient(135deg, #5b21b6, #4c1d95);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(91, 33, 182, 0.3);
}

.services-guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.services-guarantee p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #4c1d95, #5b21b6);
    color: white;
}

.testimonials .section-header h2 {
    color: #f59e0b;
}

.testimonials .section-header p {
    color: #fbbf24;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-header i {
    color: #f59e0b;
    font-size: 32px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
    margin-left: 4px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-footer {
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding-top: 16px;
}

.testimonial-footer strong {
    color: #f59e0b;
    display: block;
    margin-bottom: 4px;
}

.testimonial-footer span {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonials-stats {
    text-align: center;
}

.stats-card {
    background: #f59e0b;
    color: #4c1d95;
    padding: 24px 48px;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.contact .section-header h2 {
    color: #4c1d95;
}

.contact .section-header p {
    color: #4b5563;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    padding: 32px 24px;
    border-radius: 16px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.green-contact {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blue-contact {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.purple-contact {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-header i {
    font-size: 32px;
}

.contact-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.contact-card p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.btn-contact-phone,
.btn-contact-whatsapp {
    background: white;
    color: #059669;
    font-weight: bold;
    font-size: 1.125rem;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-whatsapp {
    color: #2563eb;
}

.btn-contact-phone:hover,
.btn-contact-whatsapp:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guarantee-card {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.guarantee-card i {
    font-size: 64px;
    margin-bottom: 16px;
    animation: spin 4s linear infinite;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-card p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.success-rate {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.info-card i {
    font-size: 32px;
    color: #5b21b6;
    margin-bottom: 12px;
}

.info-card h4 {
    color: #4c1d95;
    margin-bottom: 8px;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

.special-offer {
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.special-offer h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.special-offer p {
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4c1d95, #5b21b6, #4c1d95);
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    color: #f59e0b;
    margin-bottom: 24px;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-title i {
    color: #f59e0b;
    font-size: 32px;
}

.footer-section p {
    color: #fbbf24;
    line-height: 1.6;
    margin-bottom: 24px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-badge i {
    background: #f59e0b;
    padding: 8px;
    border-radius: 50%;
}

.guarantee-badge span {
    color: #f59e0b;
    font-weight: bold;
}

.services-list {
    list-style: none;
}

.services-list li {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-contact {
    margin-bottom: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #10b981;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: #059669;
}

.footer-contact-item:last-child {
    background: #3b82f6;
}

.footer-contact-item:last-child:hover {
    background: #2563eb;
}

.footer-contact-item i {
    font-size: 20px;
}

.money-back-guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.guarantee-title {
    color: #f59e0b;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
}

.guarantee-text {
    color: #fbbf24;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #fbbf24;
    margin-bottom: 16px;
}

.footer-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-features span {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinning {
    animation: spin 4s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .header-title {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-title i {
        font-size: 24px;
    }
    
    .header-title h1 {
        font-size: 1.75rem;
    }
    
    .consultation-info {
        flex-direction: column;
    }
}