@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;800&display=swap');

.dark-cta-section {
    background-color: var(--helperColor);
    padding: 80px 20px;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.inner-container {
    background-color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.tag {
    background-color: var(--primaryColor);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.dark-cta-section h2 {
    color: #333333;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
}

.inner-container p {
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {

    background-color: var(--primaryColor);
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    flex-grow: 1;
    max-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button i {

    color: var(--white);
    font-size: 20px;
    margin-left: 10px;

}

.cta-button span {
    font-weight: 400;
}

/* تأثير التمرير (Hover) */
.call-btn:hover,
.location-btn:hover {
    background-color: var(--primaryColor);
}

.whatsapp-btn:hover {
    background-color: #25D366;

}

@media (max-width: 992px) {
    .inner-container {
        padding: 50px 30px;
    }

    .dark-cta-section h2  {
        font-size: 32px;
    }

    .cta-button {
        min-width: unset;
        flex-basis: calc(33.33% - 15px);

    }
}

@media (max-width: 576px) {
    .dark-cta-section {
        padding: 40px 15px;
    }

    .inner-container {
        padding: 30px 20px;
    }

    .dark-cta-section h2  {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .inner-container p {
        font-size: 15px;
    }

    .buttons-row {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 80%;
        font-size: 17px;
    }
}