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

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #eff6ff 0%, #fed7aa 100%);
    min-height: 100vh;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section {
    padding: 5rem 0;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    background: linear-gradient(135deg, #2563eb, #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.logo-text {
    font-weight: bold;
    font-size: 1.25rem;
}

.partner {
    color: #6b7280;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-link-mobile {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 0;
    text-align: right;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2410c, #b91c1c);
}

.btn-header {
    padding: 0.5rem 1.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-orange {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #c2410c, #b91c1c);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
}

.btn-white {
    background: white;
    color: #ea580c;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #ea580c;
}

.btn-full {
    width: 100%;
}

.btn-cta {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ea580c);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge .badge {
    background: #fb923c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.text-orange {
    color: #fed7aa;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60a5fa, #fb923c);
    border-radius: 1.5rem;
    filter: blur(3rem);
    opacity: 0.3;
}

.hero-img {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header.text-white .section-title {
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-header.text-white .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.bg-white {
    background: white;
}

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

.about-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.card-blue {
    border-color: #dbeafe;
}

.card-blue:hover {
    border-color: #93c5fd;
}

.card-orange {
    border-color: #fed7aa;
}

.card-orange:hover {
    border-color: #fdba74;
}

.card-purple {
    border-color: #e9d5ff;
}

.card-purple:hover {
    border-color: #c4b5fd;
}

.card-green {
    border-color: #d1fae5;
}

.card-green:hover {
    border-color: #a7f3d0;
}

.about-icon {
    margin-bottom: 1rem;
}

.about-icon .icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
}

.card-blue .icon {
    color: #2563eb;
}

.card-orange .icon {
    color: #ea580c;
}

.card-purple .icon {
    color: #7c3aed;
}

.card-green .icon {
    color: #059669;
}

.about-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-blue .about-title {
    color: #1e40af;
}

.card-orange .about-title {
    color: #c2410c;
}

.card-purple .about-title {
    color: #6d28d9;
}

.card-green .about-title {
    color: #047857;
}

.about-text {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.about-subtext {
    font-size: 0.875rem;
    color: #9ca3af;
}

.font-semibold {
    font-weight: 600;
}

.card-orange .font-semibold {
    color: #ea580c;
}

/* Benefits Section */
.bg-gradient {
    background: linear-gradient(135deg, #eff6ff, #f3e8ff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.bg-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

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

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

.bg-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.bg-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-white {
    width: 2rem;
    height: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-container {
    max-width: 64rem;
    margin: 0 auto;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.requirements-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-right: 4px solid;
}

.req-green {
    background: #f0fdf4;
    border-color: #22c55e;
}

.req-blue {
    background: #eff6ff;
    border-color: #3b82f6;
}

.req-purple {
    background: #faf5ff;
    border-color: #8b5cf6;
}

.req-orange {
    background: #fff7ed;
    border-color: #f97316;
}

.req-red {
    background: #fef2f2;
    border-color: #ef4444;
}

.req-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.req-green .req-icon {
    color: #16a34a;
}

.req-blue .req-icon {
    color: #2563eb;
}

.req-purple .req-icon {
    color: #7c3aed;
}

.req-orange .req-icon {
    color: #ea580c;
}

.req-red .req-icon {
    color: #dc2626;
}

.req-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.req-green .req-title {
    color: #15803d;
}

.req-blue .req-title {
    color: #1d4ed8;
}

.req-purple .req-title {
    color: #6d28d9;
}

.req-orange .req-title {
    color: #c2410c;
}

.req-red .req-title {
    color: #b91c1c;
}

.req-text {
    color: #374151;
}

.req-green .req-text {
    color: #166534;
}

.req-blue .req-text {
    color: #1e40af;
}

.req-purple .req-text {
    color: #581c87;
}

.req-orange .req-text {
    color: #9a3412;
}

.req-red .req-text {
    color: #991b1b;
}

/* Pricing Section */
.bg-purple-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.pricing-container {
    max-width: 28rem;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    color: #1f2937;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    padding: 2rem;
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-large {
    width: 3rem;
    height: 3rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #fed7aa;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ea580c;
}

.price-currency {
    font-size: 1.25rem;
    color: #6b7280;
    margin-right: 0.5rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: right;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    margin-left: 0.5rem;
}

/* Certificates Section */
.certificates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.certificates-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.certificates-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.certificates-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cert-icon {
    width: 2rem;
    height: 2rem;
    color: #ea580c;
}

.cert-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.cert-subtitle {
    color: #6b7280;
}

.certificates-image {
    position: relative;
}

.cert-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60a5fa, #fb923c);
    border-radius: 1.5rem;
    filter: blur(2rem);
    opacity: 0.2;
}

.cert-img {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

/* Final CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316, #dc2626, #ec4899);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
}

/* Participate CTA layout */
.participate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: right;
}

.cta-image {
    position: relative;
    max-width: 22rem;
    margin: 0 auto;
}

.participate-img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.6);
}

#cta-participate .cta-content {
    max-width: 100%;
    margin: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
}

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

.footer-logo {
    background: linear-gradient(135deg, #2563eb, #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: #374151;
    padding: 0.75rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-facebook {
    background: #2563eb;
}

.social-facebook:hover {
    background: #1d4ed8;
}

.social-whatsapp {
    background: #16a34a;
}

.social-whatsapp:hover {
    background: #15803d;
}

.social-youtube {
    background: #dc2626;
}

.social-youtube:hover {
    background: #b91c1c;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 3.5rem;
    }

    .certificates-grid {
        grid-template-columns: 1fr 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .participate-grid {
        grid-template-columns: auto 1fr;
        text-align: right;
    }

    .cta-image {
        margin: 0;
        justify-self: start;
    }

    .participate-img {
        height: 18rem;
    }
}

@media (max-width: 767px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .requirements-column {
        min-width: auto;
    }

    .requirement-item {
        margin: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.opacity-90 {
    opacity: 0.9;
}

.opacity-20 {
    opacity: 0.2;
}

/* Animation */
.icon, .btn, .about-card, .benefit-card, .nav-link, .footer-link, .social-link {
    transition: all 0.3s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile menu animation */
.nav-mobile.show {
    display: flex !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}