/* ——————————————————————
   خلفية ثابتة — بدون تغبيش نهائياً
—————————————————————— */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none !important;              /* ❗ حذف التغبيش بالكامل */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: -1;
    pointer-events: none;
}

/* ——————————————————————
   الصفحة
—————————————————————— */
body {
    margin: 0;
    padding: 0;
    background: none !important; /* لأن الخلفية الآن من .fixed-bg */
}

/* الحاوية الرئيسية */
.page-container {
    width: 92%;
    max-width: 850px;
    margin: 30px auto;
    position: relative;
    z-index: 5;
}

/* العناوين */
.main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #e8d3b5;
    margin-bottom: 5px;
}

.sub-title {
    text-align: center;
    font-size: 20px;
    color: #e8d3b5;
    margin-bottom: 35px;
    font-weight: 600;
}

/* ——————————————————————
   صناديق الخدمات — شفافة جداً وواضحة
—————————————————————— */
.services-box {
    background: rgba(255, 255, 255, 0.12); /* شفافية فقط */
    backdrop-filter: blur(3px);            /* تغبيش خفيف للصندوق نفسه */
    -webkit-backdrop-filter: blur(3px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 35px;
}

/* عناوين الأقسام */
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #e8d3b5;
    margin-bottom: 15px;
}
/* العناوين الفرعية داخل الأقسام مثل: ألوان الجل – الجل اكستنشن */
.sub-head {
    font-size: 19px;
    font-weight: 600;
    color: #e8d3b5;   /* ← لون واضح وواضح جداً */
    margin: 18px 0 10px;
}
/* عنصر الخدمة */
.item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 17px;
    color: #2B1C10;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.item:last-child {
    border-bottom: none;
}

.price img {
    width: 17px;
    height: 17px;
}

/* زر العودة */
.back-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 20px;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 12px;
    background: #b79d7e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
