/* ===== أزرار — حالات إضافية ===== */
.btn--wa:hover { background: #0f6f63; }
.btn--accent:hover,
.btn--amber:hover { background: var(--amber-dark); color: #fff; }
.btn--brand:hover { background: var(--teal-deep); }
.btn--cream:hover { background: var(--cream-soft); }
.btn--lg { padding: 18px 30px; font-size: 22px; }

/* ===== عنوان قسم صغير (kicker) — تُستخدم في صفحات لم تُعاد صياغتها بعد ===== */
.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.section-kicker__bar {
    width: 26px;
    height: 3px;
    background: var(--amber);
    display: block;
    flex-shrink: 0;
}
.section-kicker span:last-child {
    font-weight: 800;
    font-size: 14px;
    color: var(--teal-darker);
    letter-spacing: .04em;
}
.section-kicker--dark span:last-child { color: #E9A05E; }

/* ===== كارت ملاحظة (منطقة/براند) — تبقى لصفحة المنطقة ===== */
.brand-note-card {
    background: var(--teal);
    color: #fff;
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brand-note-card__kicker {
    font-weight: 800;
    font-size: 14px;
    color: var(--teal-bg);
    letter-spacing: .04em;
}
.brand-note-card p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

/* ===== المعرض / لايت بوكس — تبقى لصفحة المنطقة والمعرض العام ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.gallery-item__tag {
    position: absolute;
    inset-inline-start: 8px;
    top: 8px;
    background: rgba(34, 31, 27, .75);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 12, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 200;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-overlay img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}
.lightbox-overlay__caption {
    color: var(--cream);
    text-align: center;
    margin-top: 12px;
    font-size: 15px;
}
.lightbox-overlay__close {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    background: rgba(245, 239, 229, .12);
    color: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
.lightbox-overlay__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 239, 229, .12);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.lightbox-overlay__nav:hover { background: rgba(245, 239, 229, .22); }
.lightbox-overlay__nav--prev { inset-inline-start: 20px; }
.lightbox-overlay__nav--next { inset-inline-end: 20px; }

/* ===== لماذا الفنّي الأفضل — تبقى للرئيسية ===== */
.grid--why {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}
@media (min-width: 960px) { .grid--why { grid-template-columns: repeat(3, 1fr); } }
.why-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.why-card b {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.4;
}
.why-card span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* ===== أكورديون الأسئلة الشائعة — تبقى للمنطقة/أرشيف الأسئلة ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 4px 18px;
    background: #fff;
}
.faq-item__q {
    padding: 16px 0;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
    content: '+';
    font-size: 22px;
    color: var(--teal-darker);
    flex-shrink: 0;
}
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a {
    padding-bottom: 16px;
    color: var(--ink-mute);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item__a p { margin: 0 0 .8em; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

/* ===== كارت خدمة — تبقى للرئيسية/الأرشيفات ===== */
.service-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.service-card__media {
    background: var(--line);
    aspect-ratio: 4 / 3;
}
.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, #EDE4D4 0 10px, #E5DBC8 10px 20px);
}
.service-card__body { padding: 16px; }
.service-card__kicker {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.service-card h3 {
    margin: 0;
    font-size: 18px;
}

/* ===== تمييز مجموعات التصنيف الثلاث (أمر 75): تركيب (افتراضي) · تفصيل (ذهبي) · تجاري (مؤسسي) ===== */
.service-card--custom { border-color: #B98A56; box-shadow: 0 2px 10px rgba(185,138,86,.14); }
.service-card__badge {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .3px;
    color: #fff; background: #B98A56; border-radius: 999px; padding: 3px 10px; margin-bottom: 8px;
}
.service-card--business { border-color: var(--teal-dark); }
/* أمر 79 ③: كارت هَب التفصيل المميّز — أبرز من كروت الفروع العادية */
.service-card--featured {
    border-color: #B98A56; border-width: 2px; box-shadow: 0 6px 20px rgba(185,138,86,.22);
}
.service-card__badge--featured { background: #B98A56; }

.section--group-custom { background: linear-gradient(180deg, #FBF6EC 0%, var(--cream-soft) 100%); }
.section--group-custom .section-kicker__bar { background: #B98A56; }
.section--group-custom .section-kicker span:last-child { color: #8A6636; }
.section--group-business { background: var(--teal-dark); }
.section--group-business .section-kicker__bar { background: var(--cream); }
.section--group-business .section-kicker span:last-child,
.section--group-business h2,
.section--group-business .lede { color: var(--cream); }
.section--group-business .service-card--business { border-color: var(--line); }
.section--group-business .link-more { color: var(--cream); }

/* ===== رأس الأرشيف ===== */
.archive-header { padding-top: 40px; }
.archive-header__intro {
    color: var(--ink-mute);
    font-size: 17px;
    max-width: 60ch;
}

/* ===== شريط البراندات — الرئيسية ===== */
.brand-strip__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.brand-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: var(--ink);
}
.brand-pill--muted { color: var(--ink-mute); }
a.brand-pill:hover { border-color: var(--teal); color: var(--teal-darker); }

/* ===== مقتطف التقييمات — الرئيسية/صفحة التقييمات ===== */
.reviews-snippet { background: var(--teal-bg); }
.reviews-snippet__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.reviews-snippet--page {
    background: var(--teal-bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.reviews-snippet__rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.reviews-snippet__num {
    font-size: 26px;
    font-weight: 700;
    color: var(--teal-darker);
}
.reviews-snippet__count { color: var(--ink-mute); font-size: 14px; }

/* ===== تقييمات حقيقية — سلايدر/كاروسيل (أمر 73) — بلا أي رابط ظاهر لملف جوجل =====
   سكرول أفقي أصلي + scroll-snap (بلا JS للحركة نفسها، بلا مكتبات) — ارتفاع كل كارت
   ثابت (min-height) فلا يتغيّر ارتفاع القسم عند التنقّل → CLS=0. */
.reviews-carousel {
    display: flex; flex-direction: column; gap: 24px; margin-top: 24px;
}
@media (min-width: 768px) {
    .reviews-carousel { flex-direction: row; align-items: flex-start; gap: 32px; }
}
.reviews-carousel__badge {
    flex: none; display: flex; flex-direction: column; gap: 6px;
    padding: 24px; background: var(--cream-soft); border-radius: var(--radius-lg);
}
@media (min-width: 768px) { .reviews-carousel__badge { width: 220px; } }
.reviews-carousel__stars { color: var(--amber); font-size: 20px; letter-spacing: 2px; }
.reviews-carousel__num { font-family: var(--ff-heading); font-weight: 900; font-size: 40px; color: var(--teal-darker); line-height: 1.1; }
.reviews-carousel__count { font-size: 14px; color: var(--ink-mute); margin: 0; }
.reviews-carousel__lede { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin: 10px 0 0; }

.reviews-carousel__viewport { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.reviews-carousel__track {
    display: flex; gap: 20px; flex: 1; min-width: 0;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px;
}
.reviews-carousel__track::-webkit-scrollbar { display: none; }
.reviews-carousel__track [data-reviews-slide] {
    flex: 0 0 100%; scroll-snap-align: start; min-width: 0;
}
@media (min-width: 768px) {
    .reviews-carousel__track [data-reviews-slide] { flex: 0 0 calc((100% - 40px) / 3); }
}
.reviews-carousel__arrow {
    flex: none; display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--cream); color: var(--teal-deep); cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.reviews-carousel__arrow:hover { background: #12211C; color: var(--cream); }
.reviews-carousel__arrow svg { width: 20px; height: 20px; }

.review-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 22px; display: flex; flex-direction: column; gap: 12px;
    min-height: 230px; box-sizing: border-box;
}
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.review-card__avatar {
    width: 36px; height: 36px; border-radius: 50%; background: var(--teal);
    color: #fff; font-family: var(--ff-heading); font-weight: 800; font-size: 15px;
    display: flex; align-items: center; justify-content: center; flex: none;
}
.review-card__stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.review-card__text { font-size: 15px; line-height: 1.8; color: var(--ink-soft); margin: 0; flex: 1; }
.review-card__who { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 12px; }
.review-card__name { font-family: var(--ff-heading); font-weight: 800; font-size: 15px; color: var(--ink); }
.review-card__meta { font-size: 13px; color: var(--ink-mute); }

/* ===== كارت منطقة (نص فقط) — الرئيسية ===== */
.area-pill-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    color: var(--ink);
    text-align: center;
}
.area-pill-card:hover { border-color: var(--teal); color: var(--teal-darker); }

/* ===== رابط "عرض المزيد" ===== */
.link-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    color: var(--teal-darker);
    text-decoration: underline;
}
.link-more::after { content: ' ←'; text-decoration: none; display: inline-block; }

/* ===== شارات الثقة (هيرو الرئيسية القديم/الأسئلة) ===== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-bg);
    color: var(--teal-darker);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
}
.badge--rating__stars { color: var(--amber); font-size: 13px; letter-spacing: 1.5px; }

/* أمر 99 H-01: نجوم صادقة — صف رمادي مطفأ كامل خلف صف ذهبي مقصوص بعرض النسبة الفعلية،
   يظهر بصرياً كنجوم كاملة + نجمة جزئية دقيقة بدل خمس نجوم كاملة ثابتة دائماً. */
.star-rating { position: relative; display: inline-flex; letter-spacing: 1.5px; line-height: 1; }
.star-rating__base { color: var(--line); }
.star-rating__fill {
    position: absolute; inset-inline-start: 0; top: 0; width: var(--star-pct, 100%);
    overflow: hidden; white-space: nowrap; color: var(--amber);
}

/* ===== روابط المحتوى ===== */
.entry-content a {
    color: var(--teal-darker);
    text-decoration: underline;
}

/* ===== قائمة الموبايل المنزلقة ===== */
.mobile-menu {
    background: #fff;
    border-top: 1px solid var(--line);
}
.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu__list a {
    display: block;
    padding: 12px 8px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
}
.mobile-menu__list a.is-active { color: var(--teal); }
.mobile-menu__list a:hover,
.mobile-menu__list a:focus {
    background: var(--cream);
}

/* أمر 97: حذف الميجا-مينيو نهائياً — كانت تسبّب تمدّداً أفقياً على كامل الموقع (اللوحة
   عرضها يتجاوز عرض الفيوبورت أحياناً فيوسّع مستند الصفحة كله). "خدماتنا" الآن رابط
   مفرد بسيط لأرشيف الخدمات — أرشيف الخدمات نفسه يعرض كل المجموعات بكروت. */

/* ===== 404 ===== */
.error-404 {
    text-align: center;
    padding: 80px 0;
}
.error-404 h1 {
    font-size: 64px;
    color: var(--teal);
}

/* ===== إتاحة الوصول ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--teal-deep);
    outline-offset: 2px;
}

/* =========================================================
   تصميم كلود ديزاين — قالب الخدمة (CMD-7)
   يُستخدم أيضًا عبر المكوّنات المشتركة: الهيرو/الفوتر/CTA/الشريط اللاصق
   ========================================================= */

/* ----- الهيرو (صورة full-bleed + شبكة عمودين فوقها) — حد أدنى للارتفاع لا ارتفاع ثابت،
   يكبر ليحتوي محتوى .hero__inner كاملاً (الأداة تكبّر الهيرو بدل ما تُقصّ منه). */
.hero { position: relative; background: var(--ink); }
.hero > img,
.hero > picture,
.hero > picture img,
.hero__media img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero__scrim {
    position: absolute; inset: 0;
    /* أغمق جهة النص (يمين، RTL) لضمان تباين أبيض واضح فوق أي صورة */
    background: linear-gradient(to left,
        rgba(15,20,25,.92) 0%, rgba(15,20,25,.72) 48%, rgba(15,20,25,.40) 100%);
}
.hero__inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 64px 24px; }
.hero__grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
    min-height: 84vh;
}
.hero__col--message {
    display: flex; flex-direction: column; gap: 14px; color: var(--cream);
}
/* صفحات بلا أداة (الأسعار/من نحن/تواصل/الضمان) — عمود واحد بعرض قراءة مريح، بلا عمود ثانٍ فارغ */
.hero__grid--single { grid-template-columns: 1fr; }
.hero__grid--single .hero__col--message { max-width: 640px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 9px; font-size: 14px; color: #B9AFA3; text-shadow: 0 1px 2px rgba(0,0,0,.35); margin-bottom: 8px; }
.crumbs a { color: #B9AFA3; }
.crumbs a:hover { color: var(--cream); }
.crumbs .sep { opacity: .5; }
.crumbs .now { color: var(--amber-light); }
.pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(14,140,123,.92); color: #fff;
    font-family: var(--ff-heading); font-weight: 800; font-size: 16px;
    padding: 9px 17px; border-radius: 999px; width: fit-content;
}
.pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber-light); }
/* أمر 95: 900 هو الوزن الموحّد لكل هيرو H1 على كل القوالب — كان 500 هنا (الأساس)
   بينما service-design.css/home-design.css يرفعانه لـ900 على الخدمات والرئيسية فقط،
   فبانت "من نحن"/"اتصل بنا"/المناطق أخفّ وزناً بلا سبب (لا تحمّل هاتين الطبقتين). */
.hero h1 { font-size: clamp(30px, 3.4vw, 48px); font-weight: 900; letter-spacing: -1px; line-height: 1.2; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hero__col--message p {
    margin: 0; font-size: 18px; line-height: 1.6; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.45);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* شارات المميزات الأربع — داخل كل هيرو */
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-trust__item {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px; padding: 5px 11px; font-size: 12.5px; font-weight: 600; color: var(--cream);
}
.hero-trust__item svg { width: 16px; height: 16px; flex: none; }

/* أمر 94: صف واتساب بالهيرو — يظهر فقط للصفحات بلا أداة هيرو (تجاري) حيث لا يوجد
   زر واتساب بديل داخل عمود الأداة. حذفنا زر "اتصال" العائم المنفصل (كان زائداً على
   كل الصفحات — التركيب له زر الأداة، والتفصيل له "اتصال مباشر" داخل consult-widget). */
.hero__cta-row { display: flex; align-items: center; gap: 12px; padding-top: 4px; }

/* أداة الهيرو (باني السعر/حجز الموعد) — كارت زجاجي موحّد فوق الصورة مباشرة */
.hero-tool__note { margin: 0; font-size: 13px; color: #C9BFB3; }

/* ----- لوحة الأداة premium (باني السعر + حجز الموعد) ----- */
.price-builder, .booking-pro {
    background: rgba(10,15,13,.55); border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px; padding: 20px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.price-builder__label, .booking-pro__label {
    margin: 0; font-family: var(--ff-heading); font-weight: 800; font-size: 16px; color: #fff;
}
.price-builder__subtitle, .booking-pro__subtitle {
    margin: -6px 0 0; font-size: 12.5px; color: #B8C4BE; line-height: 1.4;
}

/* شرائح مشتركة (وقت/يوم/فترة) */
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
    font: inherit; font-size: 13.5px; font-weight: 600; color: #fff;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px; padding: 8px 14px; min-height: 44px; cursor: pointer;
    transition: background .15s, border-color .15s;
}
.chip--sm { padding: 7px 12px; font-size: 12.5px; min-height: 40px; }
.chip:hover { background: rgba(255,255,255,.14); }
.chip.is-selected { background: var(--teal); border-color: var(--teal); color: #fff; }

/* باني السعر (الرئيسية) */
.price-builder__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 480px) { .price-builder__grid { grid-template-columns: repeat(4, 1fr); } }
.price-builder__card {
    background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 12px; padding: 9px 8px; text-align: center; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    min-height: 44px; transition: background .15s, border-color .15s;
}
.price-builder__card:hover { border-color: rgba(255,255,255,.3); }
.price-builder__card.is-selected { background: rgba(14,140,123,.28); border-color: var(--teal); }
.price-builder__icon svg { width: 18px; height: 18px; }
.price-builder__name { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.25; }
.price-builder__range { font-size: 11px; color: #B9C4BF; }
/* الستيبر محجوز مسبقاً بمساحته دائماً (visibility لا display) — بلا layout shift عند الاختيار */
.price-builder__stepper { display: flex; align-items: center; gap: 8px; margin-top: 1px; height: 26px; }
.price-builder__stepper[hidden] { display: flex; visibility: hidden; }
.price-builder__step {
    width: 26px; height: 26px; border-radius: 8px; border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1); color: #fff; font-size: 15px; font-weight: 800; line-height: 1;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.price-builder__step:hover { background: rgba(255,255,255,.2); }
.price-builder__qty { font-size: 13px; font-weight: 700; color: #fff; min-width: 16px; }
.price-builder__time { display: flex; flex-direction: column; gap: 6px; }
.price-builder__time-label, .booking-pro__row-label { font-size: 12.5px; font-weight: 700; color: #C9D4CF; }
.price-builder__total { margin: 0; font-size: 15px; font-weight: 800; color: #fff; min-height: 20px; }
.price-builder__error { margin: 0; font-size: 13px; color: #F2A469; font-weight: 700; min-height: 18px; }
.price-builder__error[hidden] { display: block; visibility: hidden; }
.price-builder__preview-toggle {
    align-self: flex-start; background: none; border: none; padding: 0;
    font: inherit; font-size: 12.5px; font-weight: 700; color: var(--amber-light);
    text-decoration: underline; text-underline-offset: 2px; cursor: pointer; min-height: 30px;
}
.price-builder__preview-toggle[hidden] { display: none; }
.price-builder__preview {
    background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.2);
    border-radius: 10px; padding: 8px 10px; display: flex; flex-direction: column; gap: 3px;
    max-height: 140px; overflow-y: auto;
}
.price-builder__preview[hidden] { display: none; }
.price-builder__preview-title { font-size: 12px; font-weight: 700; color: #9FB0AA; }
.price-builder__preview-text { margin: 0; font-size: 13px; color: #E4E9E6; white-space: pre-line; line-height: 1.6; }
.price-builder .btn { align-self: flex-start; }

/* حجز فني (صفحات الخدمة) */
.booking-pro__nearest {
    font: inherit; font-family: var(--ff-heading); font-weight: 800; font-size: 14.5px;
    color: #fff; background: var(--amber); border: 2px solid var(--amber);
    border-radius: 12px; padding: 12px 16px; min-height: 44px; cursor: pointer; text-align: center;
    transition: opacity .15s;
}
.booking-pro__nearest:not(.is-selected) { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; }
.booking-pro__row { display: flex; flex-direction: column; gap: 6px; }
.booking-pro__eta { margin: 0; font-size: 13.5px; color: #CFE0D9; line-height: 1.5; }
.booking-pro__eta b { color: var(--amber-light); }
.booking-pro .btn { align-self: flex-start; }

/* سطر ثقة قصير داخل كل أداة (حاسبة/حجز) */
.tool-trust-line { margin: 0; font-size: 12.5px; color: #9FB0AA; }

@media (max-width: 900px) {
    .hero__inner { padding: 32px 20px 28px; }
    .hero__scrim {
        background: linear-gradient(to top,
            rgba(15,20,25,.95) 0%, rgba(15,20,25,.78) 42%, rgba(15,20,25,.4) 78%, rgba(15,20,25,.22) 100%);
    }
    /* جوال: عمود واحد — الرسالة ثم كارت الأداة، يرصّ ويمرّر عادي */
    .hero__grid { grid-template-columns: 1fr; gap: 20px; min-height: auto; }
    .hero h1 { font-size: 32px; }
    .hero__col--message p { font-size: 17px; }
    .price-builder, .booking-pro { padding: 16px; }
    .price-builder__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__cta-row .btn { flex: 1 1 auto; }
}


/* ----- قسم/عنوان فرعي ----- */
.section--ink { background: var(--ink); color: var(--cream); }
.section--white { background: #fff; border-top: 1px solid var(--line); }
.section--ink .eyebrow { color: var(--amber-light); }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.3; }
.lede { margin: 0; font-size: 18px; line-height: 1.85; color: var(--ink-soft); max-width: 660px; }
.section--ink .lede { color: #A79C90; }

/* ----- عمودان: محتوى + بطاقة سعر لاصقة ----- */
.split { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.split__main { flex: 1 1 420px; display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.split__side { flex: 0 0 380px; position: sticky; top: 20px; display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 900px) {
    .split { flex-direction: column; }
    .split__side { position: static; flex-basis: auto; width: 100%; }
}

/* ----- شبكات الكروت ----- */
.grid-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 900px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.card svg { width: 34px; height: 34px; }
.card b { font-family: var(--ff-heading); font-weight: 900; font-size: 19px; }
.card span:not(.dot) { font-size: 15px; color: #6B6053; line-height: 1.7; }

/* ----- بطاقة السعر اللاصقة ----- */
.price-card {
    background: var(--teal-dark); color: var(--cream); border-radius: var(--radius-lg);
    padding: 30px 26px; display: flex; flex-direction: column; gap: 20px;
}
.price-card h3 { font-size: 27px; line-height: 1.25; }
.price-list {
    display: flex; flex-direction: column;
    background: rgba(245,239,229,.07); border: 1px solid rgba(245,239,229,.16);
    border-radius: var(--radius); overflow: hidden;
}
.price-list div {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 18px; border-bottom: 1px solid rgba(245,239,229,.12); font-size: 19px;
}
.price-list div:last-child { border-bottom: none; }
.price-list b { font-family: var(--ff-heading); font-weight: 900; color: var(--amber-light); }
.note { font-size: 14.5px; color: #9CC9C0; line-height: 1.8; margin: 0; }

/* ----- جدول أسعار عام (الرئيسية · /pricing/) — خلفية فاتحة ----- */
.price-table-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.price-table-note { font-size: 14px; color: var(--ink-soft); }
.price-table {
    display: flex; flex-direction: column; margin-top: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden;
}
.price-table__row {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 17px;
}
.price-table__row:last-child { border-bottom: none; }
.price-table__value { font-family: var(--ff-heading); font-weight: 800; color: var(--teal-deep); text-align: left; }

/* ----- خطوات العمل ----- */
.step {
    background: rgba(245,239,229,.06); border: 1px solid rgba(245,239,229,.12);
    border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.step--last { background: rgba(14,140,123,.16); border-color: rgba(14,140,123,.42); }
.step i {
    font-family: var(--ff-heading); font-weight: 900; font-size: 22px; color: var(--teal);
    background: var(--cream); width: 44px; height: 44px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center; font-style: normal;
}
.step--last i { background: var(--teal); color: #fff; }
.step b { font-family: var(--ff-heading); font-weight: 900; font-size: 21px; }
.step span { font-size: 15.5px; color: #A79C90; line-height: 1.8; }
.step--last span { color: #9CC9C0; }

/* ----- معرض الأعمال (استعراض سريع) ----- */
.gallery { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px; }
.gallery__stack { display: flex; flex-direction: column; gap: 14px; }
.shot { position: relative; border-radius: 18px; overflow: hidden; flex: 1 1 50%; margin: 0; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot em {
    position: absolute; bottom: 12px; inset-inline-end: 12px;
    background: rgba(18,16,14,.72); color: var(--cream);
    font-family: var(--ff-heading); font-weight: 800; font-size: 14px;
    padding: 6px 12px; border-radius: 999px; font-style: normal;
}
@media (max-width: 900px) {
    .gallery { grid-template-columns: 1fr 1fr; height: auto; }
    .gallery__stack { display: contents; }
    .shot { height: 160px; }
}
@media (min-width: 901px) { .gallery { height: 400px; } }

/* ----- بلوكات المحتوى (SEO) — سكشن مستقل عرض كامل، صورة+نص 50/50 بالتبادل ----- */
.content-figures { display: flex; flex-direction: column; gap: 56px; }
@media (min-width: 768px) { .content-figures { gap: 72px; } }
.content-figure { margin: 0; }
.content-figure__grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
@media (min-width: 768px) { .content-figure__grid { grid-template-columns: 1fr 1fr; gap: 44px; } }
.content-figure__media img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover; height: auto; border-radius: 18px;
    box-shadow: 0 10px 30px rgba(34,31,27,.12);
}
.content-figure__caption { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-mute); }
/* أمر 36: صور مصمَّمة بنص مطبوع داخلها (dismantle-reassemble/sofa-assembly/stores) —
   تظهر كاملة بنسبتها الأصلية بلا أي قصّ، بنفس بنية content-figure المرجعية (bedroom-assembly) */
.content-figures--contain .content-figure__media {
    aspect-ratio: 3 / 2; background: var(--cream); border-radius: 16px; overflow: hidden;
}
.content-figures--contain .content-figure__media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border-radius: 16px;
}
/* أمر 40: صور جريد/إنفوجرافيك (نسبة بعيدة عن 3:2 بعنوان مطبوع أعلاها) — كاملة بلا قصّ */
.content-figures--contain .content-figure__media.is-full img { object-fit: contain; }
.content-figure__text h2 { font-size: 26px; margin-bottom: 12px; }
/* أمر 63: روابط داخل نص المحتوى (فقرات) — كانت بلون النص نفسه فلا تُقرأ كروابط.
   #0E8C7B (نفس نعناعي علامات الـchecklist) بدل var(--teal) الحالي #0F3D2E القريب جداً
   من لون النص --ink #12211C بلا تباين كافٍ. لا تمسّ الأزرار/الهيدر/الفوتر/الـCTA. */
.content-figure__text a,
.content-figure a:not(.btn),
main p a:not(.btn) {
    color: #0E8C7B;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.content-figure__text a:hover,
main p a:not(.btn):hover {
    color: #0B6F62;
}
.content-figure--text-only .content-figure__grid { grid-template-columns: 1fr; }
/* تصحيح 41ج: كارت أبيض واحد كحدّ أقصى لكل صفحة — للخطّاف التعريفي الأول فقط (content-figure--hook)،
   لا لأي بلوك بلا صورة عموماً. الافتراضي لكل البلوكات (بصورة أو بدون) = نعناعي inline بلا كارت.
   استهداف circle مباشرة (لا svg) لأن fill يُضبط على العنصر نفسه ويتجاوز أي وراثة. */
.content-figure .checklist {
    background: transparent; box-shadow: none; padding: 0; border-radius: 0;
}
.content-figure .checklist li svg circle { fill: #0E8C7B; }
/* الخطّاف = أول بلوك محتوى بلا صورة فقط (content-figure--hook، يُضاف برمجياً) — كارت أبيض مرتفع، علامة غامقة */
.content-figure--hook .checklist {
    background: #fff; border-radius: 16px; box-shadow: 0 6px 24px rgba(0,0,0,.06);
    padding: 24px 28px;
}
.content-figure--hook .checklist li svg circle { fill: #12211C; }
/* الدوم دايماً [نص، وسيط] — التبادل يمين/يسار عبر order فقط، بلا اعتماد على ترتيب الدوم */
@media (min-width: 768px) {
    .content-figure--left .content-figure__media { order: 2; }
    .content-figure--left .content-figure__text { order: 1; }
    .content-figure--right .content-figure__media { order: 1; }
    .content-figure--right .content-figure__text { order: 2; }
}
/* ----- سلايدر قبل/بعد (بلوكات المحتوى، layout=before_after) — صورتان حقيقيتان، مقارنة بسحب ----- */
.ba-slider { width: 100%; direction: ltr; }
.ba-slider__frame {
    position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(34,31,27,.12); cursor: ew-resize; user-select: none; touch-action: pan-y;
    --ba-pos: 50%;
}
.ba-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-slider__before-wrap {
    position: absolute; inset: 0; z-index: 2;
    clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-slider__before-wrap .ba-slider__img--before { position: absolute; inset: 0; }
.ba-slider__line {
    position: absolute; inset-block: 0; left: var(--ba-pos); width: 3px; margin-inline-start: -1.5px;
    background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.08); z-index: 3; pointer-events: none;
}
.ba-slider__handle {
    position: absolute; top: 50%; left: var(--ba-pos); transform: translate(-50%, -50%);
    width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--ink, #12211C);
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.22);
    z-index: 4; pointer-events: none;
}
.ba-slider__tag {
    position: absolute; top: 12px; z-index: 3; background: rgba(18,33,28,.72); color: #fff;
    font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; pointer-events: none;
}
.ba-slider__tag--before { left: 12px; }
.ba-slider__tag--after { right: 12px; }
.ba-slider__range {
    width: 100%; margin-top: 12px; accent-color: var(--amber, #E1701A); cursor: ew-resize;
}
.checklist { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; }
.checklist li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.checklist li span { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

/* ----- سكشن الفيديو (ريل عمودي) ----- */
.section--video { background: var(--cream-soft); }
.video-vertical {
    display: block; margin-inline: auto;
    width: 100%; max-width: 360px; aspect-ratio: 9 / 16;
    height: auto; border-radius: var(--radius-lg); background: #000;
    box-shadow: 0 14px 34px rgba(34,31,27,.16);
}
.video-caption { text-align: center; max-width: 480px; margin: 12px auto 0; color: var(--ink-mute); font-size: 14px; }

/* ----- واجهة يوتيوب الكسولة (poster قابل للنقر — الفيديو الفعلي ما يتحمّلش إلا بعد الضغط) ----- */
.yt-lazy {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 720px; aspect-ratio: 16 / 9; margin-inline: auto;
    background: #000 center/cover no-repeat; border-radius: var(--radius-lg);
    box-shadow: 0 14px 34px rgba(34,31,27,.16); cursor: pointer; overflow: hidden; border: 0;
}
.yt-lazy__play {
    width: 68px; height: 68px; border-radius: 50%; background: rgba(14,140,123,.92);
    display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease;
}
.yt-lazy__play svg { width: 30px; height: 30px; fill: #fff; margin-inline-start: 3px; }
.yt-lazy:hover .yt-lazy__play, .yt-lazy:focus-visible .yt-lazy__play { transform: scale(1.08); background: var(--amber, #E1701A); }
.yt-lazy iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ----- الأسئلة الشائعة (ثابتة، بلا أكورديون) ----- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
    display: flex; flex-direction: column; gap: 8px;
}
.faq__item:first-child { background: var(--cream-soft); }
.faq__item b { font-family: var(--ff-heading); font-weight: 900; font-size: 19px; }
.faq__item span { font-size: 16px; color: var(--ink-soft); line-height: 1.85; }

/* ----- بطاقة جانبية (مناطق/خدمات قريبة) ----- */
.aside-card {
    background: var(--cream); border: 1px solid var(--line); border-radius: 20px;
    padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.aside-card h3 { font-size: 21px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 15px; }

/* أمر 89 ③: شريط "نخدم في" مضغوط بالرئيسية — كان قسماً كبيراً بمساحة زائدة */
.section--areas-compact { padding-block: 20px; }
.areas-compact__row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.areas-compact__label { font-weight: 700; color: var(--ink-mute); font-size: 14px; }
.area-pill-card {
    display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--line);
    border-radius: 999px; padding: 7px 16px; font-size: 14px; font-weight: 600; color: var(--ink);
    text-decoration: none; transition: border-color .15s ease, color .15s ease;
}
.area-pill-card:hover { border-color: var(--teal); color: var(--teal); }
.links { display: flex; flex-direction: column; gap: 10px; font-size: 16px; }
.links a { display: flex; justify-content: space-between; gap: 8px; }
.links a span:last-child { color: #B0A392; }

/* ----- CTA ختامي (موحّد على كل الموقع) ----- */
.cta { background: linear-gradient(90deg, var(--teal) 0%, var(--teal-deep) 100%); }
/* أمر 45: nowrap بدل wrap — العنوان الطويل كان يدفع الأزرار للف تحته بدل مقابله.
   min-width:0 على عمود النص يسمح للعنوان يلتفّ داخلياً (بدل ما يفرض عرضه الكامل
   ويدفع flexbox للف الكل)، وflex:0 0 auto على الأزرار يحافظ على حجمها الطبيعي. */
.cta .wrap {
    display: flex; align-items: center; justify-content: space-between; gap: 26px;
    flex-wrap: nowrap; padding-block: 48px;
}
.cta .wrap > :first-child { flex: 1 1 auto; min-width: 0; }
.cta h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 0; }
.cta p { margin: 8px 0 0; font-size: 17px; color: #CFEDE7; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; flex: 0 0 auto; }
@media (max-width: 640px) {
    .cta .wrap { flex-direction: column; align-items: stretch; }
}

/* ----- نموذج طلب عرض سعر (B2B) ----- */
.quote-form__wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .quote-form__wrap { grid-template-columns: 1fr; } }
.quote-form__intro h2 { color: #fff; margin: 0; font-size: clamp(22px, 3vw, 28px); }
.quote-form__intro .lede { margin-top: 12px; }
.quote-form__alt { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.quote-form__form {
    position: relative;
    background: #fff; border-radius: var(--radius-lg); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
}
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .quote-form__row { grid-template-columns: 1fr; } }
.quote-form__form label { display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; color: var(--ink); }
.quote-form__form input, .quote-form__form select, .quote-form__form textarea {
    font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
    background: var(--cream); color: var(--ink); min-height: 44px;
}
.quote-form__form textarea { min-height: 88px; resize: vertical; }
.quote-form__form input:focus, .quote-form__form select:focus, .quote-form__form textarea:focus {
    outline: 2px solid var(--teal-deep); outline-offset: 1px;
}
.quote-form__honeypot {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.quote-form__notice { margin: 0; padding: 12px 14px; border-radius: 10px; font-size: 15px; }
.quote-form__notice--ok { background: #E3F3EE; color: #146152; }
.quote-form__notice--err { background: #FBE7E4; color: #8A2E20; }

/* ----- الفوتر (موحّد) ----- */
.site-footer { background: #1A1714; color: var(--cream); padding: 44px 0 20px; }
.site-footer .brand b { color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer-grid h3 { margin: 0 0 4px; font-family: var(--ff-heading); font-weight: 800; font-size: 16px; color: #fff; }
.footer-grid p { max-width: 320px; }
.footer-grid a, .footer-grid p, .footer-grid span { font-size: 14.5px; color: #8C8178; line-height: 2; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--cream); text-decoration: underline; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.footer-social a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 2px; }
.footer-bottom {
    border-top: 1px solid #2A2521; margin-top: 30px; padding-top: 16px;
    display: flex; justify-content: space-between; font-size: 13px; color: #8C8178; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #8C8178; text-decoration: underline; }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 2px; }

/* ----- الشريط اللاصق (موبايل) ----- */
.sticky-cta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 40;
    background: rgba(26,23,20,.97);
    padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.sticky-cta .btn { flex: 1 1 auto; font-size: 18px; padding: 14px; }
.sticky-cta .btn--call {
    flex: none; width: 54px; height: 50px; padding: 0;
    background: var(--amber); color: var(--ink);
}
@media (min-width: 960px) { .sticky-cta { display: none; } }
@media (max-width: 959px) { body { padding-bottom: 86px; } }
