  @import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;600;700;800&display=swap');

   .premium-law-section {
        /* רקע כהה עמוק ויוקרתי */
        background: linear-gradient(135deg, #161a25 0%, #0d1017 100%); 
        color: #ffffff;
        font-family: 'Assistant', sans-serif;
        direction: rtl;
        padding: 90px 20px;
        position: relative;
        overflow: hidden;
    }

    /* רקע גיאומטרי עדין מאחור */
    .premium-law-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(193, 143, 89, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

   .law-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

    /* --- אזור הטקסט השיווקי (ימין) --- */
    .law-hero {
        flex: 1;
        min-width: 320px;
    }

    .law-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .law-hero h1 span {
        color: #c18f59; /* צבע הזהב של המשרד */
        position: relative;
    }

    .law-subtitle {
        font-size: 25px;
        font-weight: 300;
        color: #aeb4c5;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 90%;
    }

.trust-badge-item::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 12px; /* רווח אלגנטי ורחב יותר מהטקסט */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* מאזני קו מינימליסטיים, דקים ויוקרתיים בעיצוב ארכיטקטוני */
    background-image: url("https://www.work-accidents.co.il/wp-content/themes/libero/assets/img/logo_sticky.png");
}



    .trust-badges {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .trust-badge-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.1rem;
        font-weight: 400;
        color: #e0e4ef;
    }

   

    /* --- אזור הטופס (שמאל) --- */
    .law-form-wrapper {
        flex: 0 1 420px;
        width: 100%;
    }

    .law-form-card {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(193, 143, 89, 0.2);
        border-top: 4px solid #c18f59; /* פס זהב עליון למראה רשמי */
        border-radius: 12px;
        padding: 45px 40px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    .law-form-card h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
        color: #ffffff;
    }

    .law-form-card p.form-desc {
        text-align: center;
        color: #aeb4c5;
        font-size: 1rem;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .law-form-card form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* שדות קלט בסגנון נקי ויוקרתי */
    .input-group {
        position: relative;
    }

    .law-form-card input,
    .law-form-card textarea {
        width: 100%;direction:rtl;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        padding: 12px 5px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        box-sizing: border-box;
        resize: none;
    }

    .law-form-card input:focus,
    .law-form-card textarea:focus {
        outline: none;
        border-bottom-color: #c18f59;
        background: rgba(255, 255, 255, 0.03);
    }

    .law-form-card input::placeholder,
    .law-form-card textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
        font-weight: 300;
    }

    /* הצהרת פרטיות */
    .law-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        line-height: 1.5;
        margin-top: 5px;
    }

    .law-checkbox input {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid rgba(193, 143, 89, 0.5);
        border-radius: 4px;
        background: rgba(0,0,0,0.2);
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
        margin-top: 2px;
        transition: 0.2s;
    }

    .law-checkbox input:checked {
        background-color: #c18f59;
        border-color: #c18f59;
    }

    .law-checkbox input:checked::after {
        content: '✔';
        position: absolute;
        color: #fff;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .law-checkbox a {
        color: #c18f59;
        text-decoration: none;
    }

    /* כפתור זהב מתכתי */
    .law-submit-btn {
        background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
        color: #111;
        border: none;
        padding: 16px;
        border-radius: 6px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(193, 143, 89, 0.2);
    }

    .law-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(193, 143, 89, 0.4);
        background: linear-gradient(135deg, #e5c158 0%, #b8862d 100%);
    }

    .secure-badge {
        text-align: center;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    @media (max-width: 900px) {
        .law-container {
            flex-direction: column;
        }
        .law-hero {
            text-align: center;
        }
        .law-subtitle {
            margin: 0 auto 30px auto;
        }
        .trust-badges {
            align-items: center;
        }
    }
    
    
    
     /* עיצוב מבודד לבלוק סיפורי הצלחה */
    .success-stories-wrapper {
        background-color: #f4f7f6; /* רקע אפור בהיר מאוד לכל הסקשן */
        padding: 60px 20px;
        font-family: 'Assistant', 'Segoe UI', Tahoma, sans-serif;
        color: #2d3436;
        direction: rtl;
    }

    .success-stories-wrapper .success-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
    }

    .success-stories-wrapper .success-header h2 {
        font-size: 2.5rem;
        color: #2d3436;
        margin: 0 0 15px 0;
        position: relative;
        display: inline-block;
        font-weight: 800;
    }

    .success-stories-wrapper .success-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #c5a059; /* צבע הזהב */
    }

    .success-stories-wrapper .success-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .success-stories-wrapper .success-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
    }

    .success-stories-wrapper .success-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
        border-color: #c5a059;
    }

    .success-stories-wrapper .success-icon {
        font-size: 2.2rem;
        color: #d1d8e0;
        margin-bottom: 20px;
        transition: color 0.3s;
    }

    .success-stories-wrapper .success-card:hover .success-icon {
        color: #c5a059;
    }

    .success-stories-wrapper .success-card h4 {
        color: #c5a059;
        font-size: 1.7rem;
        margin: 0 0 12px 0;
        font-weight: 800;
        line-height: 1;
    }

    .success-stories-wrapper .success-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 12px;
        color: #2d3436;
    }

    .success-stories-wrapper .success-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #636e72;
        margin: 0;
    }

    .success-stories-wrapper .success-footer {
        text-align: center;
        margin-top: 50px;
    }

    .success-stories-wrapper .footer-btn {
        background: linear-gradient(135deg, #c5a059 0%, #a68545 100%);
        color: #fff !important;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        display: inline-block;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
        transition: transform 0.2s;
    }

    .success-stories-wrapper .footer-btn:hover {
        transform: scale(1.05);
    }
    
    dt, p {
    font-size: 17px;
}
    /* מכולה ראשית - רקע כהה תואם לתמונה */
.premium-reviews-section {
    background-color: #1a1e26; 
    padding: 100px 20px;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-subtitle {
    color: #c18f59;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 200;
    margin: 0;
}

.gold-accent {
    color: #c18f59;
    font-weight: 700;
}

.luxury-separator {
    width: 60px;
    height: 1px;
    background: #c18f59;
    margin: 25px auto;
}

/* רשת הביקורות */
.reviews-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

/* כרטיסייה בודדת */
.review-luxury-card {
    background: rgba(255, 255, 255, 0.03); /* שקיפות עדינה */
    border: 1px solid rgba(193, 143, 89, 0.1);
    padding: 30px;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.review-luxury-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #c18f59;
    transform: translateY(-5px);
}

/* ראש הכרטיסייה */
.reviewer-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background: #1a1e26;
    border: 1px solid #c18f59;
    color: #c18f59;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin-left: 15px;
}

.reviewer-meta-data strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.stars-gold {
    color: #c18f59;
    font-size: 14px;
}

/* תוכן הביקורת */
.review-body {
    color: #fff;
    font-size: 15.5px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
}

/* תגובת המשרד */
.owner-response {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.owner-response p {
    margin: 0;
    font-size: 13.5px;
    color: #888;
}

.owner-response strong {
    color: #c18f59;
}

/* התאמה לנייד */
@media (max-width: 768px) {
  
   
    .reviews-masonry-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 32px;
    }
}


  .law-office-combined-section {
        background-color: #ffffff;
        padding: 60px 20px;
        font-family: 'Assistant', 'Segoe UI', sans-serif;
        direction: rtl;
        max-width: 1200px;
        margin: 0 auto;
    }

    .combined-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: start;
    }

    /* כותרות */
    .section-title {
        color: #2d3436;
        font-size: 2.2rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 800;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: #c5a059;
    }

    /* עיצוב שאלות ותשובות */
    .faq-item {
        background: #f9f9f9;
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 20px;
        border-right: 4px solid #c5a059;
        transition: transform 0.2s;
    }

    .faq-item:hover {
        transform: translateX(-5px);
        background: #f1f1f1;
    }

    .faq-item h3 {
        color: #c5a059;
        margin: 0 0 10px 0;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .faq-item p {
        margin: 0;
        line-height: 1.6;
        color: #444;
    }

    /* עיצוב ציר זמן - שלב אחרי שלב */
    .process-container {
        background: #2d3436;
        color: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .process-container h2 {
        color: #c5a059;
        font-size: 1.8rem;
        margin-top: 0;
    }

    .step-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .step-item {
        position: relative;
        padding-right: 45px;
        margin-bottom: 25px;
    }

    .step-number {
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        height: 30px;
        background: #c5a059;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
    }

    .step-text {
        font-size: 1.05rem;
        line-height: 1.4;
    }

    .highlight-step {
        color: #e2c07d;
        font-weight: bold;
    }

    /* רספונסיביות */
    @media (max-width: 900px) {
        .combined-grid {
            grid-template-columns: 1fr;
        }
    }
    
    
     @import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&display=swap');

    .luxury-law-section {
        background-color: #0f0f0f;
        color: #ffffff;
        font-family: 'Assistant', sans-serif;
        direction: rtl;
        padding: 60px 20px;
    }

    .luxury-law-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    /* --- כותרות עליונות --- */
    .law-header-wrapper {
        text-align: center;
        margin-bottom: 50px;
    }

    .law-header-wrapper h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .law-header-wrapper h1 .gold-text {
        color: #c18f59;
    }

    .law-phone-link {
        font-size: 40px;
        font-weight: 400;margin-top:30px;
        color: #ffffff;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .law-phone-link:hover {
        color: #c18f59;
    }

    .law-separator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .law-separator .line {
        height: 1px;
        width: 80px;
        background-color: #c18f59;
    }

    .law-subtitle {
        font-size: 25px;
        font-weight: 400;
    }

    /* --- אזור האודות: גריד כרטיסיות מעוצב --- */
    .about-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 60px;
    }

    .about-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(193, 143, 89, 0.2);
        border-right: 3px solid #c18f59;
        padding: 30px;
        border-radius: 6px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .about-card:hover {
        background: rgba(193, 143, 89, 0.05);
        transform: translateY(-3px);
        border-color: rgba(193, 143, 89, 0.5);
    }

    .about-card i {
        font-size: 2.2rem;
        color: #c18f59;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .about-card p {
        margin: 0;
        font-size: 1.15rem;
        line-height: 1.6;
        color: #e0e0e0;
        font-weight: 300;
        text-align: right;
    }

    /* כרטיסיות רוחב מלא להדגשה */
    .about-card.full-width {
        grid-column: 1 / -1;
        background: linear-gradient(90deg, rgba(193, 143, 89, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    }

    .about-card.full-width p {
        font-weight: 400;
        color: #ffffff;
    }

    /* --- ריבועי השירותים (4 הקוביות למטה) --- */
    .services-4-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .service-box {
        border: 1px solid #c18f59;
        background: transparent;
        padding: 40px 20px;
        text-align: center;
        border-radius: 4px;
        transition: 0.4s;
    }

    .service-box:hover {
        background: rgba(193, 143, 89, 0.08);
    }

    .service-box i.top-icon {
        font-size: 2.5rem;
        color: #c18f59;
        margin-bottom: 20px;
        display: block;
    }

    .service-box h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
    }

    .service-box p {
        font-size: 0.95rem;
        color: #b3b3b3;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .service-link {
        color: #c18f59;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    @media (max-width: 992px) {
        .about-features-grid { grid-template-columns: 1fr; }
        .services-4-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 576px) {
        .law-header-wrapper h1 { font-size: 2.2rem; }
        .services-4-grid { grid-template-columns: 1fr; }
    }
    
    
    
.hero-headline {
    background: linear-gradient(135deg, #fff 0%, #c5a367 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 32px;
    line-height: 32px;
}
/* עיצוב המעטפת - שחור עמוק */
.luxury-scroll-indicator {
    background: #333a4d;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Assistant', sans-serif;
    overflow: hidden;
    padding-top: 50px;
}

.glass-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

/* טקסט יוקרתי עם גרדיאנט משתנה */
.main-title {text-align:center;
    color: #fff;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(90deg, #fff, #c5a367, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textReflect 4s linear infinite;
}

.sub-scroll {
    color: #c5a367;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 5px;
    opacity: 0.6;
}

/* קו מפריד ש"רץ" */
.shimmer-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5a367, transparent);
    margin: 10px auto;
    animation: lineStretch 3s ease-in-out infinite;
}

/* ה-SVG והאנימציות שלו */
.advanced-svg {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(197, 163, 103, 0.4));
}

.glow-path {
    fill: none;
    stroke-width: 0.8;
    stroke-linecap: round;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}

/* אנימציית הזרמת אור בתוך הקווים */
.main-p {
    stroke: rgba(255, 255, 255, 0.4);
    animation: flowLight 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-p-1 {
    stroke: rgba(197, 163, 103, 0.5);
    animation: flowLight 4s infinite 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* נקודות מולקולריות עם אפקט נשימה */
.node {
    filter: drop-shadow(0 0 5px #c5a367);
}

.gold-node {
    fill: #c5a367;
    animation: nodePulse 2s infinite ease-in-out;
}

.white-node {
    fill: #fff;
    opacity: 0.3;
    animation: nodePulse 2s infinite 0.5s ease-in-out;
}

.white-node-dim {
    fill: #fff;
    opacity: 0.1;
    animation: nodePulse 2s infinite 1s ease-in-out;
}

/* הגדרות האנימציה */
@keyframes textReflect {
    to { background-position: 200% center; }
}

@keyframes flowLight {
    0% { stroke-dashoffset: 150; opacity: 0; }
    20% { opacity: 1; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    80% { stroke-dashoffset: -150; opacity: 0; }
    100% { stroke-dashoffset: -150; opacity: 0; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 1; }
}

@keyframes lineStretch {
    0%, 100% { width: 40px; opacity: 0.3; }
    50% { width: 120px; opacity: 1; }
}


.headline {
    background: #333a4d;
    margin-bottom: 0px!important;
}
.headline-section1 {
    background: #e8e7e7;
    margin-bottom: 0px!important;
}
.main-title-section-1 {
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(90deg, #fff, #000000, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textReflect 4s linear infinite;
}
.main-title-section-black {
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(90deg, #fff, #000000, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textReflect 4s linear infinite;
}
/* מניעת התנגשויות ועיצוב נקי */
.custom-lawyer-hero {
    position: relative;
    width: 100%;
    min-height: 800px; /* גובה משמעותי יותר */
    background: url('https://www.work-accidents.co.il/wp-content/uploads/2016/10/ori-home.jpg') no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    direction: rtl;
    overflow: hidden;
}

/* שכבת הצללה עדינה כדי שהטקסט יקפוץ החוצה */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* דוחף הכל לימין */
}

.hero-text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/* עיצוב השורה העליונה */
.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
    flex-direction: column;
    padding-top: 50px;
}

/* אפקט הזהב לטקסט השם */
.h-lawyer-name {
    font-size: 38px;
    margin: 0;
    font-weight: 700;
    color: #e2ad5a;
}




/* תיקון קל לכותרת המשנה שתהיה מתחת לשם */
.h-subtitle {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 300;
    margin-bottom: 8px;
}

.h-line {
    width: 50px;
    height: 1px;
    background: #d4af37;
}







.h-main-title {
    font-size: 64px; /* גדול ומרשים */
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.1;
    color: #ffffff;
}

.h-description {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
}

.h-gold {
    color: #e2ad5a;
    margin: 0;
    font-weight: 700;
}

.h-cta-button {
    background: linear-gradient(to bottom, #e0be72 0%, #bf8f37 100%);
    color: #000 !important;
    padding: 15px 60px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    margin-bottom: 20px;
}
#pointer-services:before {
    background: #000000b0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
}

#pointer-services{background-attachment:fixed}
#pointer-services > div {
    width: auto;
    margin: 0 auto;
    max-width: 1200px;
}
#pointer-services p{color:#fff;font-size:18px;}
.h-cta-button:hover {
    transform: scale(1.05);
}

.h-footer-note {
    font-size: 19px;
    margin-bottom: 15px;
}

.h-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.h-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.h-contact-item:hover {
    transform: translateY(-2px);
}

.h-contact-text {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 400;
}

/* עיצוב האייקונים (SVG) */
.h-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* וואטסאפ - ירוק עם צל זוהר עדין */
.wa-style .h-wa {
    color: #25d366;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.4));
}

/* טלפון - זהב תואם לעיצוב */
.phone-style .h-phone {
    color: #c5a367;
}

.h-divider {
    color: #ffffff;
    font-size: 26px;
    opacity: 0.5;
    font-weight: 300;
}




/* התאמה למובייל */
@media (max-width: 600px) {
    .h-contact-row {
        flex-direction: column;
        gap: 15px;
    }
    .h-divider {
        display: none;
    }
    .h-contact-text {
        font-size: 20px;
    }
    .custom-lawyer-hero {
    position: relative;
    width: 100%;
    min-height: 100%;
    background: url('https://www.work-accidents.co.il/wp-content/uploads/2016/10/ori-home.jpg') no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    direction: rtl;
    overflow: hidden;
}.hero-container-inner{padding:0px;}
}

/* התאמה למובייל - חובה */
@media (max-width: 900px) {
    .hero-container-inner {
        justify-content: center;
    }
    .hero-text-block {
        width: 100%;
        background: rgba(0,0,0,0.6);
        padding: 30px 15px;
        border-radius: 15px;
    }
    .h-main-title {
        font-size: 40px;
    }
    .custom-lawyer-hero {
        background-position: 25% center;
    }
}
/*section1*/



.premium-briefcase {
    background: #e8e7e7;
    padding: 60px 20px;
    direction: rtl;
}
.briefcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px; /* רווח בין הכרטיסיות */
}

.briefcase-card {
    flex: 1;
    background: linear-gradient(145deg, #fffcfc 0%, #ffffff 100%);
    border: 1px solid rgba(197, 163, 103, 0.15);
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* עיצוב ה"עדשה" של האייקון */
.icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon-lens {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border: 1px solid rgba(197, 163, 103, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgb(155 155 155 / 80%), 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.icon-lens i {
    font-size: 32px;
    color: #c5a367; /* הזהב של הסקיצה */
    text-shadow: 0 0 10px rgba(197, 163, 103, 0.3);
}

/* כותרת בזהב מטאלי */
.gold-heading {
    color: #c5a367;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    letter-spacing: 0.3px;
}

/* הקו הדקורטיבי מתחת לכותרת */
.card-line {
    width: 40px;
    height: 2px;
    background: #c5a367;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.card-description {
    color: #6c6b6b;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
}

/* אפקטים במעבר עכבר (Hover) */
.briefcase-card:hover {
    transform: translateY(-12px);
    border-color: #c5a367;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.briefcase-card:hover .icon-lens {
    background: #c5a367;
    box-shadow: 0 0 25px rgba(197, 163, 103, 0.4);
}

.briefcase-card:hover .icon-lens i {
    color: #000;
    text-shadow: none;
}

/* רספונסיביות - מעבר למבנה של אחד מתחת לשני במובייל */
@media (max-width: 992px) {
    .briefcase-container {
        flex-direction: column;
        align-items: center;
    }
    
    .briefcase-card {
        width: 100%;
        max-width: 450px;
    }
}

/* הגדרות כלליות */
.differentiation-block {
    background-color: #333a4d; /* שחור פרימיום התואם לסקיצה */
    padding: 80px 20px;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
    color: #ffffff;
}

.diff-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-title {
 
    font-size: 38px;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffe9b2 0%, #dddddd 25%, #dadada 50%, #ffffff 75%, #878785 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));

}

.gold-line {
    width: 60px;
    height: 3px;
    background: #c5a367; /* הזהב המקורי מהסקיצה */
    margin: 0 auto 50px;
}

/* הגדרת ה-Grid הרספונסיבי */
.diff-grid {
    display: grid;
    gap: 25px;
    /* ברירת מחדל דסקטופ: 4 עמודות */
    grid-template-columns: repeat(4, 1fr);
}

/* עיצוב הקובייה (Card UI) */
.diff-card {
   
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 163, 103, 0.15); /* מסגרת זהב עדינה */
    padding: 40px 25px;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* אפקט Hover (לא לחיץ) */
.diff-card:hover {
    transform: translateY(-8px);
    background: rgba(197, 163, 103, 0.05);
    border-color: #c5a367;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* עיצוב האייקונים */
.card-icon {
    font-size: 40px;
    color: #c5a367;
    margin-bottom: 25px;
}

/* כותרת הקובייה */
.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #c5a367;
    margin-bottom: 15px;
    min-height: 54px; /* שמירה על גובה אחיד לכותרות */
    display: flex;
    align-items: center;
}

/* טקסט ההסבר */
.card-text {
    font-size: 16px;
    line-height: 1.5; /* מרווח שורות נושם כפי שנתבקש */
    color: #d1d1d1;
    font-weight: 300;
}

/* התאמה לטאבלט (2 עמודות) */
@media (max-width: 1024px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* התאמה למובייל (עמודה אחת) */
@media (max-width: 600px) {
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-card {
        width: 100%;
        padding: 7px 0px;
    }

    .main-title {
        font-size: 28px;
    }
}





.luxury-services-section {
    background: #333a4d; /* רקע שחור עמוק */
    padding: 80px 20px;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 בטור במחשב */
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03); /* רקע שקוף למחצה */
    border: 1px solid rgba(197, 163, 103, 0.2); /* מסגרת זהב עדינה */
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px); /* אפקט זכוכית */
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(197, 163, 103, 0.08);
    border-color: rgba(197, 163, 103, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.icon-gold {
    font-size: 45px;
    color: #c5a367; /* צבע זהב מהסקיצה */
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(197, 163, 103, 0.3));
}

.service-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    color: #c5a367;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.card-link:hover {
    letter-spacing: 0.5px;
    color: #fff;
}

/* --- רספונסיביות --- */

/* טאבלט */
@media (max-width: 1024px) {
    .luxury-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* מובייל - 2 בשורה כפי שביקשת */
@media (max-width: 600px) {
   .glass-card {
    border-radius: unset!important;
}
    .luxury-services-section {
        padding: 40px 10px;
    }
    .luxury-container {
        grid-template-columns: repeat(2, 1fr); /* 2 בשורה */
        gap: 12px; /* רווח קטן יותר שיתאים למסך צר */
    }
    .service-card {
        padding: 15px 7px;
    }
    .service-card h3 {
        font-size: 17px;
    }
    .service-card p {
        font-size: 15px;
       /* מסתירים את הטקסט הקטן במובייל כדי לשמור על קומפקטיות */
    }
    .card-link{font-weight:100;}
    .icon-gold {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .headline-section1{padding-top:0px;}
    .main-title-section{text-align:center;}
}

/*טופס*/
:root {
    --gold-primary: #c5a367;
    --gold-glow: rgba(197, 163, 103, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.02);
}

.premium-2026-section {
    background: #282e3f !important;
    padding: 38px 20px !important;
    direction: rtl !important;
    font-family: 'Assistant', sans-serif !important;
    overflow: hidden;
}
.glass-card form input{direction:rtl;}
.main-flex {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
}
#luxury-services-4-grid{background:transparent;}
#luxury-services-4-grid .luxury-container{grid-template-columns: repeat(4, 1fr);}
/* --- כותרת עם עומק --- */
.hero-content { flex: 1; }

.hero-title {
    font-size: 62px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1 !important;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 0%, #c5a367 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- החץ המיוחד: Light Beam --- */
.luxury-beam-arrow {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.beam-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
    position: relative;
    box-shadow: 0 0 20px var(--gold-glow);
}

.beam-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    filter: blur(2px);
    right: 0;
    top: -4px;
    animation: lightPass 3s infinite ease-in-out;
}

@keyframes lightPass {
    0% { transform: translateX(-150px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(0); opacity: 0; }
}

/* --- הטופס: הקפסולה המיוחדת --- */
.form-capsule {
    flex: 0 0 480px;
    position: relative;
}

.glass-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 60px !important;
    border-radius: 40px; /* פינות עגולות מאוד - מודרני 2026 */
    box-shadow: 0 50px 100px rgba(0,0,0,0.9), inset 0 0 20px rgba(197, 163, 103, 0.05) !important;
}

.glass-card h2 {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    text-align: center;
    margin-bottom: 45px !important;
    letter-spacing: 3px;
}

/* שדות מינימליסטיים */
.glass-card input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    color: #fff !important;
    margin-bottom: 25px !important;
    transition: 0.5s !important;
}

.glass-card input:focus {
    border-color: var(--gold-primary) !important;
    background: rgba(197, 163, 103, 0.05) !important;
    outline: none !important;
    box-shadow: 0 0 30px rgba(197, 163, 103, 0.1) !important;
}

/* כפתור ה"נוזל המטאלי" */
.liquid-btn {
    width: 100% !important;
    height: 70px !important;
    background: #fff !important;
    color: #000 !important;
    border-radius: 15px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border: none !important;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
    transition: 0.4s !important;
}

.liquid-btn:hover {
    background: var(--gold-primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--gold-glow) !important;
}

/* מובייל */
@media (max-width: 1000px) {
    .main-flex { flex-direction: column; text-align: center; }
    .hero-title { font-size: 35px !important; }
    .luxury-beam-arrow { transform: rotate(90deg); justify-content: center; }
}

/* מכולה חיצונית דקה */
.luxury-slim-wrapper {
    position: relative;
    width: 100% !important;
    height: 70px !important; /* גובה צר וקבוע */
    background: #050505 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    direction: rtl !important;
    font-family: 'Assistant', sans-serif !important;
}

/* האנימציה של הגבול - כעת דקה ועדינה יותר */
.animated-border-line {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        transparent, 
        transparent, 
        rgba(197, 163, 103, 0.5), 
        transparent
    );
    animation: rotateGlow 8s linear infinite;
    z-index: 1;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

/* התוכן הפנימי - שומר על הכל בשורה אחת */
.slim-bar-container {
    position: relative;
    z-index: 5;
    background: #282e3f;
    width: calc(100% - 2px); /* משאיר גבול של 1px */
    height: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slim-label {
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
}

.gold-text {
    color: #c5a367;
    font-weight: 700;
}

/* ניהול השדות - מונע עליה אחד על השני */
.slim-form-fields {
    display: flex;
    align-items: center;
    gap: 12px;
}
input::placeholder {
  padding-left: 10px;
}

.slim-input,
.slim-submit-btn {
  box-sizing: border-box;
  width: 100%;
}

.slim-input {
    text-align:right;
    width: 180px !important; /* רוחב קבוע לכל שדה */
    height: 40px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(197, 163, 103, 0.2) !important;
    border-radius: 4px !important;
    padding-right: 20px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: 0.3s;
}

.slim-input:focus {
    border-color: #c5a367 !important;
    background: rgba(197, 163, 103, 0.08) !important;
    outline: none !important;
}

/* הכפתור */
.slim-submit-btn {
    height: 40px !important;
    padding: 0 25px !important;
    background: #c5a367 !important;
    color: #000 !important;
    font-weight: 800 !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.slim-submit-btn:hover {
    background: #fff !important;
    transform: translateY(-1px);
}

/* אפקט ברק בכפתור */
.btn-glimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shineEffect 4s infinite;
}

@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* התאמה למובייל */
@media (max-width: 900px) {
   .luxury-beam-arrow {
    transform: none;
    justify-content: center;
}
    
    .luxury-slim-wrapper { height: auto !important; padding: 0px 0 !important; }
    .slim-bar-container { flex-direction: column; gap: 15px; background: transparent; }
    .slim-form-fields { flex-direction: column; width: 90%; }
    .slim-input, .slim-submit-btn { width: 100% !important; }
}

/* 1. המכולה הראשית - עם עומק וטקסטורה */
.dynamic-premium-invitation {
    background-color: #050505; /* שחור עמוק */
    width: 100%;
    padding: 100px 0; /* ריווח נדיב לנוכחות */
    direction: rtl;
    font-family: 'Assistant', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* מרווח בין הטקסט ל-SVG */
    position: relative;
    z-index: 5;
}

/* 2. הטקסט המקדים */
.invitation-text-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.invitation-text-box span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 200; /* דק משדר יוקרה */
    letter-spacing: 2px;
    opacity: 0.9;
}

/* אפקט השמר (Shimmer) על טקסט הזהב */
.invitation-text-box .gold-subtitle-shimmer {
    background: linear-gradient(135deg, #a67c52 0%, #c5a367 50%, #a67c52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: goldShimmer 4s infinite linear;
    background-size: 200% auto;
}

@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* -----------------------------------------------------------
   3. ה"וואו": ה-SVG המולקולרי ואנימציית ה"קרן נופלת"
   ----------------------------------------------------------- */
.molecular-arrow-svg {
    width: 110px; /* גודל החץ */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(197, 163, 103, 0.4)); /* זוהר זהב עדין */
}

/* הגדרות קו הקווים */
.molecular-path {
    fill: none;
    stroke: rgba(197, 163, 103, 0.15); /* קו בסיס חלש מאוד */
    stroke-width: 0.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

/* הקו הראשי - עבה יותר ועם אנימציית "סריקה" */
.main-path {
    stroke-width: 0.8;
    stroke: rgba(197, 163, 103, 0.3);
    /* האנימציה היוקרתית פועלת כאן */
    animation: pathScan 5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
    stroke-dasharray: 200; /* אורך הקו */
    stroke-dashoffset: 200; /* מתחיל מוסתר */
}

@keyframes pathScan {
    0% { stroke-dashoffset: 200; opacity: 0; }
    10% { opacity: 1; }
    40% { stroke-dashoffset: 0; opacity: 1; }
    50%, 90% { stroke-dashoffset: 0; opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* אנימציית ה"פולסים" של הנקודות */
.node-static {
    fill: #ffffff;
    opacity: 0.2;
    animation: nodePulse 5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

.node-main {
    fill: #c5a367;
    animation: nodePulseMain 5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* השהיות חכמות כדי לייצר היררכיה - מהנקודה הגבוהה לנמוכה */
.node-delay-2 { animation-delay: 0s; }
.node-delay-1 { animation-delay: 1.2s; }
.node-pulse { animation-delay: 2.4s; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.1; }
    5% { opacity: 1; }
    30%, 90% { opacity: 0.1; }
}

@keyframes nodePulseMain {
    0%, 100% { 
        transform: scale(1);
        filter: blur(1px);
        opacity: 0.6;
    }
    5% { 
        transform: scale(1.3);
        filter: blur(0px);
        opacity: 1;
        box-shadow: 0 0 20px rgba(197, 163, 103, 0.5);
    }
}

/* גלי אור רקע לתוספת עומק */
.background-glow-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 163, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowWavePulse 6s infinite ease-in-out;
}

@keyframes glowWavePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 1; }
}

.luxury-slim-wrapper {
    position: relative;
    width: 100% !important;
    min-height: 80px !important;
    background: #050505 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    direction: rtl !important;
    font-family: 'Assistant', sans-serif !important;
}

.animated-border-line {
    position: absolute;
    top: -100%; left: -100%;
    width: 300%; height: 300%;
    background: conic-gradient(transparent, transparent, rgba(197, 163, 103, 0.6), transparent);
    animation: rotateGlow 8s linear infinite;
    z-index: 1;
}

@keyframes rotateGlow { 100% { transform: rotate(360deg); } }

.slim-bar-container {
    position: relative;
    z-index: 5;
    background: #282e3f; /* צבע הפאנל מהתמונה */
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 10px 40px;
}

.slim-label {
    color: #fff;
    font-size: 19px;
    white-space: nowrap;
}

.gold-text { color: #c5a367; font-weight: 800; }

.slim-form-inner-flex {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin: 0 !important;
}



.slim-input:focus {
    border-color: #c5a367 !important;
    background: rgba(197, 163, 103, 0.1) !important;
    outline: none !important;
}

.submit-wrapper { position: relative; overflow: hidden; border-radius: 4px; }

.slim-submit-btn {
    height: 45px !important;
    padding: 0 35px !important;
    background: #c5a367 !important;
    color: #000 !important;
    font-weight: 900 !important;
    border: none !important;
    cursor: pointer !important;
    transition: 0.3s;
    position: relative;
}

.slim-submit-btn:hover { background: #fff !important; }

.btn-glimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shineEffect 4s infinite;
}

@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* התאמה למובייל */
@media (max-width: 1000px) {
    .slim-bar-container { flex-direction: column; padding: 25px; height: auto !important; }
    .slim-form-inner-flex { flex-direction: column; width: 100%; }
    .slim-input, .slim-submit-btn, .submit-wrapper { width: 100% !important; }
}

#pointer-blog{ background-attachment: fixed;}
#pointer-blog:before {
       background: #000000b0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
}


    .premium-about-section > div { grid-template-columns:repeat(1, 1fr)}
    /* עיצוב כללי - מראה כהה וסמכותי */
.premium-about-section {
    background-color: #282e3f; /* כחול כהה עמוק */
    color: #ffffff;
    padding: 80px 20px;
    direction: rtl;
    font-family: 'Assistant', sans-serif;
    line-height: 1.8;
}

.luxury-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* כותרות */
.luxury-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.gold-subtitle {
    color: #c18f59;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 42px;
    font-weight: 200;
    margin: 0;
}

.gold-accent {
    color: #c18f59;
    font-weight: 700;
}

.title-separator {
    width: 60px;
    height: 2px;
    background: #c18f59;
    margin: 20px auto;
}

/* גריד תוכן */
.luxury-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* בלוקים של טקסט */
.text-block {
    margin-bottom: 30px;
    color: #d1d1d1;
    font-size: 17px;
}

.text-block.highlight {
    color: #ffffff;
    font-size: 19px;
    border-right: 3px solid #c18f59;
    padding-right: 20px;
}

.quote-block {
    background: rgba(193, 143, 89, 0.1);
    padding: 20px;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    color: #ffffff;
}

/* תיבות מומחיות */
.expertise-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.expertise-box:hover {
    background: rgba(193, 143, 89, 0.05);
    border-color: #c18f59;
}

.expertise-box h4 {
    color: #c18f59;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.expertise-box p {
    margin: 0;
    font-size: 15px;
    color: #b0b0b0;
}

.gold-border {
    border: 1px solid #c18f59;
}

/* התאמה לנייד */
@media (max-width: 850px) {
    .luxury-content-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 32px;
    }
     #luxury-services-4-grid .luxury-container {
    grid-template-columns: repeat(1, 1fr);
}
.h-cta-button {
  
    padding: 10px 52px;
    font-size: 21px;
}
.h-description {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 400;
}
.h-contact-row{display:none;}
.hero-text-block .hero-top-row{padding-top:160px;}
.h-main-title {
    font-size: 35px;
}
.main-title {
    font-size: 27px;
}
}