:root {
    --primary: #1e3a8a;
    /* أزرق غامق */
    --secondary: #2563eb;
    /* أزرق فاتح */
    --accent: #f97316;
    /* برتقالي */
    --light: #f8fafc;
    --dark: #0f172a
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #fff
}
/* حاوية الجدول (Accordion) */
details.toc-box {
    background-color: #fcfcfc;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #007bff; /* لون أزرق مميز */
    border-radius: 8px;
    margin: 30px auto;
    max-width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* الشريط العلوي القابل للنقر */
summary.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    cursor: pointer;
    background-color: #fff;
    list-style: none;
    transition: background 0.2s;
}

summary.toc-header::-webkit-details-marker { display: none; }
summary.toc-header:hover { background-color: #f8f9fa; }

/* العنوان */
.toc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

/* أيقونة السهم الدوارة */
.toc-toggle-icon {
    font-size: 1.2rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

details[open] .toc-toggle-icon { transform: rotate(180deg); }

/* شبكة الروابط */
#toc-list {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* عمودين ليكون مناسباً لعدد العناصر الكبير */
    gap: 12px 20px;
    background-color: #fcfcfc;
}

/* روابط القائمة */
#toc-list li { position: relative; padding-right: 15px; }
#toc-list li::before {
    content: "◄";
    color: #38a169;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
}

#toc-list a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: block;
}

#toc-list a:hover { color: #007bff; transform: translateX(-3px); }

/* للموبايل */
@media (max-width: 768px) {
    #toc-list { grid-template-columns: 1fr; }
}
.brand-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px
}

.brand-figure {
    margin: 10px auto 20px;
    text-align: center;
    max-width: 300px
}

.brand-figure img {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto
}

footer#contact p, h3 {
    color: whitesmoke;
}

footer#contact h3 {
    color: whitesmoke;
}

/* تنسيق زر التخطي */
.skip-link {
    position: absolute;
    top: -100px;
    /* مخفي في الأعلى */
    right: 0;
    /* يظهر في اليمين لأن الموقع عربي */
    background: #f1f1f1;
    color: #000;
    padding: 10px 20px;
    z-index: 99999;
    /* لضمان ظهوره فوق القوائم */
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s;
    border-radius: 0 0 0 5px;
}

/* عند التركيز عليه (بالضغط على Tab) يظهر */
.skip-link:focus {
    top: 0;
    /* ينزل للأسفل ليصبح مرئياً */
    outline: 3px solid #005fcc;
}

/* تنسيق صندوق المحتويات */
.toc-container {
    background: #f8fbff;
    border: 2px solid #eef2f5;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.toc-header {
    font-size: 1.3rem;
    color: #0a2d61;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-contact-wrapper {
    display: none;
    /* مخفي بالموبايل يظهر بالميديا كويري */
}

.float-contact-label {
    color: #555;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    padding: 5px 15px;
}

.float-pulse-dot {
    color: #28a745;
    font-weight: bold;
    animation: floatPulse 1.5s infinite;
}

@keyframes floatPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

.float-contact-actions {
    display: flex;
    gap: 10px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    /* border-radius: 5px; */
    overflow: hidden;
    background: #fff;
}

.float-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    transition: transform .2s;
    border: none;
}

.float-contact-btn:active {
    transform: scale(.96);
}

.float-icon {
    margin-left: 8px;
    font-size: 18px;
}

.float-btn-call {
    background-color: #007bff;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0,123,255,.2);
}

.float-btn-whatsapp {
    background-color: #0e9e43;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(37,211,102,.2);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* عمودين للشاشات الكبيرة */
    gap: 10px 20px;
}

.toc-list li {
    position: relative;
    padding-right: 20px;
}

.toc-list li::before {
    content: "◄";
    position: absolute;
    right: 0;
    color: #006626;
    /* لون أخضر متناسق مع موقعك */
    font-size: 0.8rem;
    top: 5px;
}

.toc-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.toc-list a:hover {
    color: #d32f2f;
    /* يتغير للأحمر عند التحويم */
}

/* تحسين للموبايل */
@media (max-width: 768px) {
    .toc-list {
        grid-template-columns: 1fr;
        /* عمود واحد للموبايل */
    }
}

.yt-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    border: 2px solid rgba(255,255,255,0.75);
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.45), inset 0 0 0 4px rgba(255,255,255,0.15);
    z-index: 2;
}

/* تأثير hover */
.yt-lazy:hover .yt-play {
    transform: scale(1.08);
    background: rgba(0,0,0,0.65);
    box-shadow: 0 14px 32px rgba(0,0,0,0.6), inset 0 0 0 4px rgba(255,255,255,0.25);
}

/* إزالة الإطار الافتراضي */
.yt-play:focus {
    outline: none;
}

/* دعم الكيبورد */
.yt-play:focus-visible {
    outline: 3px solid #22c55e;
    outline-offset: 4px;
}

.brand-figure figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    font-weight: 600
}

h3.brand-title {
    color: #1e3a8a;
    margin-top: 20px;
    border-right: 4px solid #f97316;
    padding-right: 10px
}

/* --- الهيدر والقائمة --- */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo span {
    color: var(--accent)
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s
}

.nav-links li a:hover,.nav-links li a.active {
    color: var(--secondary)
}

.cta-header {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px
}

/* قائمة الموبايل */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer
}

@media (max-width: 768px) {
    .nav-links {
        display:none;
        flex-direction: column;
        width: 89%;
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        text-align: center
    }

    .nav-links.active {
        display: flex
    }

    .menu-toggle {
        display: block
    }
}

.faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
    direction: rtl
}

.faq-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0f172a
}

.faq-item {
    border: 1px solid rgba(15,23,42,.15);
    border-radius: 10px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden
}

.faq-item summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 15px;
    list-style: none;
    position: relative
}

.faq-item summary::marker {
    display: none
}

.faq-item summary::after {
    content: "＋";
    position: absolute;
    left: 16px;
    font-size: 18px;
    transition: transform .2s ease
}

.faq-item[open] summary::after {
    content: "−"
}

.faq-item p {
    padding: 0 16px 16px;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #334155
}

/* --- المحتوى الرئيسي --- */
.container {
    margin: 0 10%;
    max-width: 100%;
    padding: 20px
}

h1 {
    color: var(--primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px
}

h2 {
    color: var(--primary);
    border-right: 5px solid var(--accent);
    padding-right: 15px;
    margin-top: 50px;
    background: #f1f5f9;
    padding: 10px 15px 10px 0;
    border-radius: 4px
}

h3 {
    color: #334155;
    margin-top: 30px;
    font-weight: 700
}

p,li {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 15px
}

/* الصندوق الأزرق للاتصال */
.contact-hero {
    background: linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #bfdbfe
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px
}

.btn {
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1)
}

.btn-call {
    background: var(--primary)
}

.btn-wa {
    background: #25D366
}

.btn:hover {
    transform: translateY(-3px)
}

/* الصور والفيديو */
img {
    display: block;
    margin: auto !important;
    max-width: 100%;
    height: auto;
    border-radius: 12px
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1)
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

/* الأدوات والجداول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1)
}

th,td {
    border: 1px solid #e2e8f0;
    padding: 15px;
    text-align: right
}

th {
    background: #f8fafc;
    color: var(--primary)
}

.tool-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05)
}

.form-group {
    margin-bottom: 15px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem
}

.btn-tool {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold
}

.result-msg {
    margin-top: 15px;
    padding: 15px;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 8px;
    color: #9a3412;
    display: none
}

/* التقييمات */
.reviews-section {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
    margin-top: 20px
}

.review-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px
}

/* الفوتر */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 50px 0 20px;
    margin-top: 50px
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
    padding: 0 20px
}

.footer-col h4 {
    color: #fff;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col li {
    border-bottom: 1px solid #374151;
    padding: 10px 0
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #374151
}

/* =========================
   Washer Plans Layout
========================= */
.washer-plans {
    direction: rtl;
    font-family: Tahoma,"Segoe UI",system-ui,-apple-system,sans-serif;
    width: 100%
}

/* FIX: منع الضغط على الديسكتوب + إزالة التكرار الضار بدون حذف باقي ستايلك */
.washer-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    align-items: stretch;
    /* بدل الأعمدة الثابتة اللي بتضغط الكروت */
    grid-template-columns: repeat(auto-fit,minmax(360px,1fr))
}

/* نحافظ على ميديا كويري عندك لكن نخليها متسقة */
@media (max-width: 980px) {
    .washer-grid {
        grid-template-columns:repeat(auto-fit,minmax(320px,1fr))
    }
}

@media (max-width: 640px) {
    .container {
        margin:0 1%!important;
        max-width: 100%;
        padding: 20px
    }

    .washer-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        /* سيبه زي ما هو لو تحب، لكن مش ضروري */
    }
}

/* =========================
   Washer Card Base
========================= */
.washer {
    --top: #1f74c8;
    --accent: #1f74c8;
    background: #fff;
    border: 2px solid #0f172a;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 30px rgba(15,23,42,.14)
}

/* لون الخطة */
.washer--blue {
    --top: #1f74c8;
    --accent: #1f74c8;
    z-index: 5
}

.washer--dark {
    --top: #0f172a;
    --accent: #0f172a;
    z-index: 5
}

.washer--red {
    --top: #b71818;
    --accent: #b71818;
    z-index: 5
}

/* لمعان جسم الغسالة */
.washer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.22) 18%,rgba(255,255,255,0) 45%),linear-gradient(180deg,rgba(15,23,42,.06) 0%,rgba(15,23,42,0) 60%);
    pointer-events: none
}

/* قاعدة بسيطة أسفل */
.washer::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15,23,42,.10);
    opacity: .85;
    pointer-events: none
}

/* =========================
   Top Control Panel
========================= */
.washer__top {
    background: var(--top);
    color: #fff;
    padding: 16px 16px 18px;
    position: relative
}

/* FIX: رجّع درج المسحوق يشتغل (بدون حذف أي سطر، بس نفعّل اللي اتعطل) */
h3.washer__title {
    color: whitesmoke
}

/* خط فاصل */
.washer__top::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    background: rgba(255,255,255,.35);
    opacity: .75
}

.washer__title {
    margin: 0;
    font-size: 18px;
    font-weight: 900
}

.washer__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    position: relative;
    /* FIX: عشان float-pulse-dot لو عليه absolute يبقى داخل السعر */
}

.washer__num {
    font-size: 18px;
    font-weight: 900;
    opacity: .98
}

/* خلي السعر مايتكسرش */
.washer__cur {
    font-size: 26px;
    font-weight: 950;
    line-height: 1.05;
    white-space: nowrap
}

.washer__per {
    font-size: 14px;
    opacity: .92
}

/* =========================
   Body + Door Circle CTA
========================= */
.washer__body {
    position: relative;
    padding: 18px 16px 20px
}

/* باب الغسالة */
.washer__call {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    margin: 10px auto 18px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    background: radial-gradient(circle at 30% 30%,rgba(255,255,255,.80),rgba(255,255,255,0) 46%),radial-gradient(circle at 50% 55%,rgba(30,41,59,.55),rgba(15,23,42,.97) 70%);
    border: 10px solid rgba(15,23,42,.12);
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.28),0 18px 26px rgba(15,23,42,.18);
    transition: transform .16s ease,box-shadow .16s ease;
    overflow: hidden;
    /* FIX: يضمن شكل الحلة داخل الدائرة */
}

/* تنسيق الحاوية الرئيسية (الشبكة) */
.brands-container {
    display: grid;
    grid-template-columns: 1fr;
    /* عمود واحد للموبايل */
    gap: 20px;
    /* مسافة بين البطاقات */
    padding: 20px 0
}

/* تنسيق البطاقة الواحدة */
.brand-section {
    background: #fff;
    /* خلفية بيضاء */
    border: 1px solid #e2e8f0;
    /* إطار خفيف */
    border-radius: 12px;
    /* حواف دائرية */
    padding: 20px;
    text-align: center;
    /* توسيط المحتوى */
    transition: transform 0.3s ease,box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* ظل خفيف */
}

/* تأثير عند مرور الماوس (Hover) */
.brand-section:hover {
    transform: translateY(-5px);
    /* ترتفع البطاقة قليلاً */
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    /* ظل أقوى */
    border-color: #2563eb;
    /* يتغير لون الإطار للأزرق */
}

/* تنسيق العنوان داخل البطاقة */
.brand-title {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f97316;
    /* خط برتقالي تحت العنوان */
    display: inline-block;
    padding-bottom: 5px
}

/* تنسيق حاوية الصورة */
.brand-figure {
    margin: 0 0 15px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

/* تنسيق الصورة نفسها */
.brand-figure img {
    max-width: 250px;
    /* تحديد حجم الصورة حتى لا تكون كبيرة جداً */
    height: auto;
    object-fit: contain;
    margin-bottom: 10px
}

/* تنسيق وصف الصورة الصغير */
.brand-figure figcaption {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600
}

/* تنسيق النص (الفقرة) */
.brand-section p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0
}

/* --- نقاط التجاوب (Media Queries) --- */
/* للأجهزة اللوحية (Tablet) - عمودين */
@media (min-width: 600px) {
    .brands-container {
        grid-template-columns:repeat(2,1fr)
    }
}

/* للكمبيوتر واللابتوب (Desktop) - 4 أعمدة */
@media (min-width: 1024px) {
    .brands-container {
        grid-template-columns:repeat(3,1fr)
    }
}

/* ✅ FIX قوي: الحلة تدور فعلا */
.washer__call::before {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 50%;
    display: block;
    /* ملابس غير منتظمة + شفافة */
    background: /* بقع/قطع قماش غير منتظمة */ radial-gradient(60px 44px at 28% 36%,rgba(255,92,92,.55) 0 60%,rgba(255,92,92,0) 64%),radial-gradient(54px 70px at 64% 33%,rgba(86,170,255,.48) 0 58%,rgba(86,170,255,0) 64%),radial-gradient(74px 52px at 58% 70%,rgba(255,216,90,.50) 0 58%,rgba(255,216,90,0) 66%),radial-gradient(66px 76px at 36% 72%,rgba(140,255,190,.42) 0 55%,rgba(140,255,190,0) 64%),radial-gradient(70px 54px at 74% 56%,rgba(205,140,255,.44) 0 55%,rgba(205,140,255,0) 64%),/* قطع صغيرة تزيد الواقعية */ radial-gradient(28px 22px at 52% 24%,rgba(255,120,200,.40) 0 62%,rgba(255,120,200,0) 70%),radial-gradient(26px 34px at 22% 58%,rgba(110,200,255,.32) 0 62%,rgba(110,200,255,0) 70%),radial-gradient(34px 26px at 78% 74%,rgba(255,190,120,.30) 0 62%,rgba(255,190,120,0) 70%),/* دوامة مائية خفيفة فوق الملابس */ conic-gradient(from 0deg,rgba(255,255,255,.10),rgba(255,255,255,0),rgba(255,255,255,.08),rgba(255,255,255,0),rgba(255,255,255,.10) ),/* عمق داخل الحلة */ radial-gradient(circle at 50% 55%,rgba(0,0,0,.02),rgba(0,0,0,.40) 72%);
    /* شفافية + تمويه بسيط يخليها جوّا الحلة */
    opacity: .78;
    filter: blur(1.2px) saturate(1.12) contrast(1.05);
    transform-origin: 50% 50%;
    will-change: transform;
    animation: drumSpin 2.6s linear infinite
}

/* توهج زر الاتصال */
.washer__call::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(0,255,140,.12);
    filter: blur(10px);
    opacity: 0;
    transition: opacity .2s ease
}

.washer__call:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.30),0 22px 32px rgba(15,23,42,.22)
}

.washer__call:hover::after {
    opacity: 1
}

.washer__callIcon,.washer__callText,.washer__callNum {
    position: relative;
    z-index: 2
}

.washer__callIcon {
    font-size: 30px;
    margin-bottom: 6px
}

.washer__callText {
    color: #ffffff;
    font-weight: 900;
    font-size: 14px;
    background: rgba(15,23,42,.35);
    padding: 6px 10px;
    border-radius: 999px
}

.washer__callNum {
    margin-top: 8px;
    color: #ffffff;
    font-weight: 950;
    letter-spacing: .5px;
    background: rgba(15,23,42,.28);
    padding: 6px 10px;
    border-radius: 999px
}

/* =========================
   List + Note
========================= */
.washer__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.washer__list li {
    padding: 14px 0;
    border-top: 1px solid rgba(15,23,42,.12);
    color: #0f172a;
    font-size: 15px;
    line-height: 1.7
}

.washer__list li:first-child {
    border-top: 0
}

.washer__note {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: #475569;
    opacity: .92
}

/* =========================
   Pulse icon (FIX)
========================= */
.float-pulse-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    /* بدل absolute اللي بيبوظ محاذاة النص */
    position: relative;
    top: 0;
    left: 0;
    margin-inline-start:6px;animation: miniPulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0,255,140,.35))
}

@keyframes miniPulse {
    0% {
        opacity: .55;
        transform: translateY(0)
    }

    50% {
        opacity: 1;
        transform: translateY(-1px)
    }

    100% {
        opacity: .55;
        transform: translateY(0)
    }
}

@keyframes drumSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* موبايل: تكبير دائرة الاتصال قليلا */
@media (max-width: 640px) {
    .washer__call {
        width:190px;
        height: 190px
    }
    .float-contact-wrapper {
    position: fixed;
    bottom: 0px;
    left: 20px;
    background: white;
    right: 20px;
    z-index: 9999;
    max-width: 100%;
    margin: 0 auto;
    display: flex; /* مخفي بالموبايل يظهر بالميديا كويري */
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
    font-family: sans-serif;
}
.float-contact-label {
    color: #555;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    padding: 5px 15px;
}
.float-pulse-dot { color: #28a745; font-weight: bold; animation: floatPulse 1.5s infinite; }
@keyframes floatPulse {
    0% { opacity: 1; }
    50% { opacity: .5; }
    100% { opacity: 1; }
}
.float-contact-actions {
    display: flex;
    gap: 10px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    /* border-radius: 5px; */
    overflow: hidden;
    background: #fff;
}
.float-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    transition: transform .2s;
    border: none;
}
.float-contact-btn:active { transform: scale(.96); }
.float-icon { margin-left: 8px; font-size: 18px; }

.float-btn-call { background-color: #007bff; color: #fff !important; box-shadow: 0 4px 6px rgba(0,123,255,.2); }
.float-btn-whatsapp { background-color: #0e9e43; color: #fff !important; box-shadow: 0 4px 6px rgba(37,211,102,.2); }


}
