.featured-service {
    padding: 20px 0 20px;
}

.featured-service-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.featured-service-content h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.service-includes {
    text-align: left;
    margin: 30px 0;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-includes i {
    color: var(--success-color);
    margin-right: 10px;
}

.service-price {
    margin: 30px auto;  /* Changed margin to center and add consistent spacing */
    position: relative;
    padding: 30px;
    background: var(--section-bg-light);
    border-radius: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    width: 100%;
    max-width: 400px;
}

.original-price {
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    height: 3px;
    background-color: var(--danger-color);
    transform: rotate(-8deg);
}

.original-price .price {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    opacity: 0.7;
}

.offer-price {
    margin-top: 5px;
}

.offer-price .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.period {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-left: 5px;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--danger-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transform: rotate(2deg);
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    padding: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    max-width: 400px;
}

.price-note i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .featured-service-content {
        padding: 20px;
    }
}

/* RTL Support - Only for specific elements */
[dir="rtl"] .service-includes {
    text-align: right;
}

[dir="rtl"] .service-includes ul {
    padding-right: 0;
    direction: rtl;
}

[dir="rtl"] .service-includes li {
    display: flex;
    align-items: center;
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .service-includes li i {
    margin-right: 0;
    margin-left: 10px;
    float: none;
}

[dir="rtl"] .service-includes h4 {
    text-align: right;
}

/* Remove these to keep other elements in their natural alignment */
[dir="rtl"] .featured-service-content {
    direction: inherit;
    text-align: center;
}

[dir="rtl"] .description,
[dir="rtl"] .service-price,
[dir="rtl"] .featured-service-content h3 {
    text-align: center;
}

[dir="rtl"] .discount-badge {
    right: auto;
    left: 20px;
}

.featured-service-content .btn-primary {
    margin-top: 0;  /* Remove top margin since price box has bottom margin */
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}
