body {
    font-family: 'Cairo', Arial, sans-serif;
    background: #f7f9fb;
    color: #222;
    margin: 0;
    direction: rtl;
}

.hero {
    background: linear-gradient(120deg, #0d2346 60%, #ffc72c 100%);
    color: #fff;
    padding: 3.5rem 1rem 2.5rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon img {
    width: 120px;
    height: auto;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: #ffc72c;
    color: #0d2346;
    font-weight: bold;
    border-radius: 30px;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #0001;
    cursor: pointer;
}

.cta-btn:hover {
    background: #0d2346;
    color: #ffc72c;
}

.main-cta {
    font-size: 1.2rem;
    padding: 1.1rem 3rem;
    margin-top: 0.5rem;
}

.section {
    padding: 2.5rem 1rem 2rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    color: #0d2346;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.features-cards,
.sectors-cards,
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card,
.sector-card,
.pricing-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0d234610;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover,
.sector-card:hover,
.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #0d234620;
}

.feature-card img,
.sector-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.feature-card:hover img,
.sector-card:hover img {
    transform: scale(1.05);
}

.feature-card h3,
.sector-card h3,
.pricing-card h3 {
    color: #0d2346;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-card p,
.sector-card p {
    font-size: 1rem;
    color: #444;
}

.pricing-card {
    border: 2px solid #ffc72c44;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid #ffc72c;
    box-shadow: 0 8px 32px #ffc72c33;
}

.pricing-card .price {
    font-size: 2rem;
    color: #ffc72c;
    font-weight: bold;
    margin-bottom: 0.7rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    text-align: right;
    width: 100%;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1rem;
    padding-right: 1.2rem;
    position: relative;
}

.pricing-card ul li::before {
    content: '\2714';
    color: #25d366;
    position: absolute;
    right: 0;
    font-size: 1.1rem;
}

.pricing-card .cta-btn {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    justify-content: center;
}

.map-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0d234610;
    border: 2px solid #ffc72c33;
}

.map-note {
    text-align: center;
    color: #0d2346;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}

.contact-form textarea {
    min-height: 90px;
}

.contact-form button {
    background: #0d2346;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #ffc72c;
    color: #0d2346;
}

.contact-intro {
    text-align: center;
    color: #0d2346;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    text-align: center;
    color: #0d2346;
    font-size: 1.1rem;
}

.contact-info a {
    color: #0d2346;
    text-decoration: underline;
    margin: 0 0.5rem;
}

.main-footer {
    background: #0d2346;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0 1rem 0;
    font-size: 1rem;
    margin-top: 2rem;
}

.feature-card div[style*="font-size"] {
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px #ffd54f55);
}

.sector-card div[style*="font-size"] {
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px #8e24aa33);
}

.contact-cta-box {
    background: #fffbe7;
    border-radius: 18px;
    box-shadow: 0 4px 24px #ffc72c22;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.contact-cta-box .cta-btn {
    display: inline-block;
    margin: 1rem 0.5rem 0.5rem 0.5rem;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 32px;
    font-weight: bold;
    box-shadow: 0 2px 12px #ffd54f33;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta-whatsapp {
    background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
    color: #fff;
}

.cta-whatsapp:hover {
    background: #fff;
    color: #128c7e;
    border: 2px solid #25d366;
}

.cta-email {
    background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%);
    color: #fff;
}

.cta-email:hover {
    background: #fff;
    color: #1976d2;
    border: 2px solid #1976d2;
}

.or-sep {
    display: block;
    color: #bdb76b;
    font-weight: bold;
    margin: 1.2rem 0 0.5rem 0;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.global-presence {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.global-presence h3 {
    color: #0d2346;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.global-presence p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.country-item {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    box-shadow: 0 2px 8px #ffc72c22;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ffc72c33;
}

.country-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px #ffc72c44;
}

.country-item .flag-icon {
    display: block;
    width: 48px;
    height: 36px;
    margin: 0 auto 0.5rem auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
}

.country-item .country-name {
    display: block;
    font-size: 0.9rem;
    color: #0d2346;
    font-weight: 500;
}

.about-company {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.about-company .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-company h2 {
    text-align: center;
    color: #0d2346;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.company-info {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.company-logo h3 {
    text-align: center;
    color: #ffc72c;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffc72c, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.company-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {

    .features-cards,
    .sectors-cards,
    .pricing-cards {
        flex-direction: column;
        gap: 1.2rem;
    }

    .feature-card,
    .sector-card,
    .pricing-card {
        min-width: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.1rem;
    }
}