/* =========================================
   MAXIMIZED DESIGN - SHMUEL ELANI (FIXED)
   ========================================= */

/* תיקון: הייבוא חייב להיות בשורה הראשונה בקובץ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sekuya&display=swap');

/* (הערה: וודא שפונט Sekuya זמין או השתמש ב-Cinzel במקום אם אין) */
/*לשפר רנספוסיביות לזכור ולדייק מיתוג */
:root {
    --bg-deep: #050505;
    --bg-dark: #0a0f16;
    --bg-card: rgba(20, 30, 48, 0.6);
    --gold: #d4af37;
    --gold-light: #fbe68b;
    --gold-dark: #aa892c;
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold: 1px solid rgba(212, 175, 55, 0.4);
    --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-title: 'Cinzel', serif;
    /* תוקן */
    --font-branding: 'Cinzel', serif;
    /* שיניתי ל-Cinzel כברירת מחדל אם Sekuya לא קיים */
    --font-clean: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
    border-radius: 4px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-main);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(76, 201, 240, 0.03) 0%, transparent 20%);
}

/* ===== HERO & HEADER ===== */
.sty {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), var(--bg-deep)),
        url('beautiful-frame-with-paint-splashes.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.box {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.box:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.letters {
    font-family: var(--font-title);
    font-size: 80px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.5));
}

.loader-circle {
    position: absolute;
    inset: -5px;
    border-radius: 45px;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold);
    animation: spin 4s linear infinite;
    opacity: 0.7;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.header {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 40px 60px;
    border-radius: 24px;
    border: var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.header:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: linear-gradient(90deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
    font-weight: 500;
}

.slogan-container {
    margin-top: 20px;
}

.slogan.typewriter {
    color: var(--gold-light);
    font-family: monospace;
    font-size: 1.4rem;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 3s steps(30, end) forwards, blink 0.8s infinite;
}

@keyframes typing {
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

article,
.pokimons,
.border,
.snip,
.ron,
.dambldor {
    background: linear-gradient(145deg, rgba(20, 30, 48, 0.7), rgba(10, 15, 22, 0.9));
    border: var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hover effects */
article::before,
.pokimons::before,
.border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

article:hover::before,
.pokimons:hover::before,
.border:hover::before {
    left: 150%;
    transition: 0.7s;
}

article:hover,
.border:hover,
.pokimons:hover,
.snip:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

p,
li {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

strong {
    color: #fff;
    font-weight: 700;
}

mark {
    background: transparent;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    padding: 0;
}

.mani ul,
.ail ul,
.card ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.mani li,
.ail li {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    border-right: 3px solid var(--gold-dark);
    transition: 0.3s;
}

.mani li:hover,
.ail li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
}

/* ===== GLOBAL RESET ===== */
/* חשוב מאוד כדי שה-Padding לא יגדיל את האלמנטים מעבר ל-100% */
* {
    box-sizing: border-box;
}

/* ===== CARDS ===== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* תיקון: הוספתי 20px בצדדים כדי לתת מקום לכרטיס המוגדל */
    padding: 40px 20px;
    width: 100%;
}

.card {
    flex: 1 1 300px;
    /* הקטנתי מעט את ה-basis ל-300px למסכים צפופים */
    max-width: 400px;
    background: #0f1621;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    /* עידון פינות */
    padding: 20px;
    position: relative;
    /* ליתר ביטחון */
}

.card-pro {
    background: linear-gradient(160deg, #0d1b2a, #000);
    border: 1px solid var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    z-index: 10;
}

.card-pro h2 {
    background: linear-gradient(90deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .cards-wrapper {
        gap: 25px;
        padding: 20px 15px;
        /* שוליים חיצוניים קטנים במובייל */
    }

    .card {
        /* מבטיח שהכרטיס לא יהיה רחב יותר מהמסך */
        max-width: 100%;
        flex: 1 1 100%;
    }

    .card-pro {
        /* במובייל: מבטלים את ה-Scale שגורם לחיתוך */
        transform: none;

        /* במקום Scale, נותנים בולטות בעזרת Border או Shadow חזק יותר */
        border: 2px solid var(--gold);
        margin: 10px 0;
    }
}

/* ===== GALLERY & LIGHTBOX ===== */
.stahg {
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(20, 30, 48, 0.4) 0%, transparent 70%);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.images-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.images-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
    filter: grayscale(40%);
    cursor: pointer;
}

.images-wrapper img:hover {
    filter: grayscale(0%);
    transform: scale(1.05) rotate(1deg);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* ===== CONTACT & FOOTER ===== */
.site-footer-wrapper {
    background: #020202;
    position: relative;
    margin-top: 100px;
    padding-bottom: 20px;
}

.dambldor-wrapper {
    max-width: 800px;
    margin: -80px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.dambldor {
    background: linear-gradient(135deg, #1b263b, #050505);
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-section {
    padding: 60px 20px;
    background-image: url('beautiful-frame-with-paint-splashes.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(5px);
}

.from-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.from-container h1,
.from-container h2 {
    color: #fff;
    text-shadow: none;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.site-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* =========================================
   TOP BAR & NAVIGATION (HAMBURGER UPDATE)
   ========================================= */
.top-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: max-content;
    max-width: 90%;
}

/* הקישורים (עטופים בקונטיינר) */
.nav-links {
    display: flex;
    gap: 15px;
}

.top-bar .btn {
    color: #bbb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: 0.3s;
    white-space: nowrap;
}

.top-bar .btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar .btn.whatsapp {
    background: #0a0f16;
    color: #fff;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* כפתור המבורגר (מוסתר בדסקטופ) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 3px;
    transition: 0.3s;
}

/* Accessibility Panel */
#accessibility-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(20, 20, 20, 0.8);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#accessibility-panel button {
    padding: 10px;
    cursor: pointer;
    background: #eee;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

#accessibility-panel button:hover {
    background: #ddd;
}

/* Additional text styles */
.section-title,
.gallery-title {
    font-family: var(--font-branding);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: normal;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
}

.clients-list {
    font-family: var(--font-clean);
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.clients-list em {
    font-style: normal;
    color: #fff;
    padding: 0 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.clients-list em:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
    transform: scale(1.1);
}

.divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
    margin: 40px auto;
    opacity: 0.8;
    box-shadow: 0 0 15px var(--gold);
}

.click-to-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-clean);
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    background: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    margin: 20px auto 40px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulseGold 2s infinite;
    border: 2px solid transparent;
    transition: 0.3s;
}

.click-to-view:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .sty {
        padding-top: 140px;
    }

    .header {
        padding: 25px;
        width: 90%;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .box {
        width: 140px;
        height: 140px;
    }

    .letters {
        font-size: 60px;
    }

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .dambldor-wrapper {
        margin-top: 20px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 3rem;
    }

    .clients-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .clients-list em {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 5px;
    }

    /* === HAMBURGER MENU LOGIC === */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        background: rgba(10, 15, 22, 0.98);
        overflow: visible;
        /* חשוב כדי שהתפריט יוכל לצאת החוצה */
        justify-content: space-between;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
        /* הצגת כפתור ההמבורגר */
    }

    .nav-links {
        display: none;
        /* הסתרת התפריט כברירת מחדל */
        position: absolute;
        top: 100%;
        /* מתחיל בדיוק מתחת לבר העליון */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 2px solid var(--gold);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        box-sizing: border-box;
    }

    .nav-links.active {
        display: flex;
        /* מציג את התפריט כשיש קלאס active */
        animation: slideDown 0.3s ease-out;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* כפתור חיוג בניווט */
.call-btn {
    background-color: #050505;
    color: #efe8e8 !important;
    font-weight: bold;
}

/* תפריט הנגישות */
.accessibility-menu {
    position: fixed;
    top: 100px;
    left: 20px;
    /* בצד שמאל של המסך בעברית */
    width: 250px;
    background: #1b263b;
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    padding: 15px;
    border-radius: 8px;
    direction: rtl;
}

.accessibility-menu.hidden {
    display: none;
}

.access-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.access-buttons button {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: right;
    font-size: 16px;
}

.access-buttons button:hover {
    background: #fff;
}

/* מחלקות שישפיעו על האתר */
.grayscale-mode {
    filter: grayscale(100%);
}

.high-contrast-mode {
    background-color: #000 !important;
    color: #ff0 !important;
}

.high-contrast-mode * {
    background-color: #000 !important;
    color: #ff0 !important;
    border-color: #ff0 !important;
}

.negative-mode {
    filter: invert(100%);
}

.underline-links-mode a {
    text-decoration: underline !important;
    font-weight: bold;
}

/* הבטחת נראות כפתורי פעולה במובייל */
.action-buttons-mobile {
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 1002;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* הקישורים הרגילים נכנסים להמבורגר */
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 22, 0.98);
        flex-direction: column;
        padding: 20px;
    }

    /* כפתורי הנגישות והשיחה נשארים קטנים וברורים בבר העליון */
    .top-bar .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .action-buttons-mobile .call-btn {
        background-color: var(--gold);
        color: #000 !important;
    }
}

/* הגדרה למנועי חיפוש - טקסט נסתר אך קריא לבוטים */
.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- עיבוד מחדש לבר העליון במובייל (מתחת ל-768px) --- */
@media (max-width: 768px) {

    /* ה-Top Bar הופך לתיבת גמישה שמסדרת את ההמבורגר מול הכפתורים */
    .top-bar {
        display: flex !important;
        flex-direction: row-reverse;
        /* המבורגר בימין, כפתורי פעולה בשמאל */
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    /* הקישורים הכלליים (לקוחות, חבילות) - מוסתרים עד ללחיצה */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 22, 0.98);
        padding: 20px;
        border-bottom: 2px solid var(--gold);
    }

    /* הצגת הקישורים כשההמבורגר פעיל */
    .nav-links.active {
        display: flex;
    }

    /* --- התיקון הקריטי לכפתורי החיוג והנגישות --- */
    /* הקונטיינר הפנימי של nav-links הכולל את הכפתורים מוצג תמיד */
    .nav-links .nav-links {
        display: flex !important;
        flex-direction: row !important;
        /* הצגה בשורה אחת */
        position: static !important;
        /* ביטול המיקום המוחלט */
        padding: 0 !important;
        gap: 8px;
        background: transparent !important;
        border: none !important;
        width: auto !important;
    }

    /* התאמת גודל הכפתורים למובייל */
    .nav-links .nav-links .btn {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
    }

    /* כפתור ההמבורגר נשאר גלוי תמיד */
    .hamburger {
        display: flex !important;
    }
}