@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', Arial, sans-serif;
    background: #fafbfc;
    color: #232323;
    direction: rtl;
    text-align: right;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding-bottom: 60px;
    position: relative;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 700px) {
    .header-top {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }
}

.site-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 1.6rem;
    margin: 3px 0;
}

.subtitle {
    font-size: 1.15rem;
    color: #e0e0e0;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 30px;
    padding: 13px 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.11);
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 10px;
    position: relative;
}

.whatsapp-btn .fa-whatsapp {
    margin-left: 8px;
    font-size: 1.3em;
    vertical-align: middle;
}

.phone-number {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 7px;
    direction: ltr;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.04);
}

.main-headline {
    font-size: 2.6rem;
    font-weight: 900;
    margin: 35px 0 18px 0;
    text-align: center;
    line-height: 1.3;
}

.highlight {
    color: #ffd700;
    font-size: 1.2em;
}

.main-desc {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 45px 0 35px 0;
}

.feature-card {
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    min-width: 160px;
    max-width: 210px;
    padding: 30px 23px 17px 23px;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 14px 0 rgba(80, 80, 160, 0.07);
    transition: transform 0.18s;
}
.feature-card:hover {
    transform: translateY(-7px) scale(1.04);
    background: rgba(255,255,255,0.18);
}
.feature-card i {
    font-size: 2.3rem;
    margin-bottom: 14px;
    color: #fff;
    display: block;
}
.feature-title {
    font-size: 1.14rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.feature-desc {
    font-size: 1rem;
    color: #ffd700;
}

.main-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    padding: 15px 45px;
    box-shadow: 0 3px 12px 0 rgba(255, 204, 51, 0.18);
    transition: background 0.18s, transform 0.14s;
    text-align: center;
}

.main-cta:hover {
    background: linear-gradient(90deg, #e2a03b 0%, #eec400 100%);
    transform: scale(1.045);
}

.services-section {
    background: #fafbfc;
    padding: 60px 0 30px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #232323;
    margin-bottom: 15px;
    text-align: center;
}

.section-desc {
    color: #555;
    font-size: 1.18rem;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .main-headline {
        font-size: 1.5rem;
    }
    .site-title {
        font-size: 1.3rem;
    }
    .features {
        flex-direction: column;
        gap: 15px;
    }
    .feature-card {
        min-width: 100px;
        max-width: 100%;
        padding: 22px 10px 10px 10px;
    }
    .main-cta {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .section-title {
        font-size: 1.2rem;
    }
}