:root {
    --primary-color: #0d6efd;
    --danger-color: #dc3545;
    --dark-color: #212529;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.promo-section {
    background-color: #f8f9fa !important;
}

.promo-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-section .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-section .card:hover .card-img-top {
    transform: scale(1.1);
    /* تكبير الصورة عند المرور */
}

.promo-section .card-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.promo-section .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #004d80;
    /* لون أزرق غامق */
}

.promo-section .card-text {
    font-size: 1rem;
    color: #6c757d;
    height: 60px;
    /* توحيد ارتفاع النصوص */
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1rem auto;
}

.price-box {
    border: 3px dashed var(--danger-color);
    padding: 20px;
    border-radius: 10px;
}

.price-label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--dark-color);
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--danger-color);
    animation: pulse 1.5s infinite;
}

.features-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.feature-icon {
    color: green;
    font-weight: bold;
    margin-left: 10px;
}

.order-form-section {
    background-color: #ffffff;
    border-top: 5px solid var(--primary-color);
}

.price-summary {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: .375rem;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.price-summary hr {
    margin: 0.5rem 0;
}

.total-price-final {
    color: var(--danger-color);
    animation: pulse 2s infinite;
}

.btn-order {
    background-color: #28a745;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border: none;
    transition: transform 0.2s;
}

.btn-order:hover {
    transform: scale(1.03);
    color: white;
    background-color: #218838;
}

footer {
    background-color: var(--dark-color);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .price {
        font-size: 3rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}