/* 🔘 כפתור נגישות צף - מעודכן ומקצועי */
.accessibility-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #4285F4;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    font-size: 28px;
}

.accessibility-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(66, 133, 244, 0.5);
    border-color: #34A853;
}

.accessibility-button:focus {
    outline: 3px solid #4285F4;
    outline-offset: 3px;
}

/* 📋 תפריט נגישות - עיצוב חדש */
.accessibility-menu {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 340px;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    border: 2px solid #e0e0e0;
}

.accessibility-menu.open {
    max-height: 650px;
    padding: 0;
}

.accessibility-menu-header {
    background: linear-gradient(135deg, #4285F4, #34A853);
    padding: 18px 20px;
    margin: 0;
    border-radius: 14px 14px 0 0;
}

.accessibility-menu-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
}

.accessibility-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin: 0;
    background: #fff;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accessibility-option:hover {
    background: #f8f9fa;
}

.accessibility-option:first-of-type {
    margin-top: 0;
}

.accessibility-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #202124;
    font-size: 1rem;
}

.accessibility-option-icon {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

/* Toggle Switch - מודרני */
.accessibility-toggle {
    width: 52px;
    height: 28px;
    background: #dadce0;
    border-radius: 14px;
    position: relative;
    transition: background 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.accessibility-toggle.active {
    background: #34A853;
}

.accessibility-toggle::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accessibility-toggle.active::after {
    transform: translateX(24px);
}

/* כפתור איפוס - מודרני */
.accessibility-reset {
    width: calc(100% - 40px);
    padding: 14px;
    background: #fff;
    color: #EA4335;
    border: 2px solid #EA4335;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 20px 20px 20px;
}

.accessibility-reset:hover {
    background: #EA4335;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

/* סגירת תפריט בלחיצה מחוץ לאזור */
.accessibility-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9997;
    display: none;
}

.accessibility-overlay.active {
    display: block;
}

/* 📱 נגישות - Mobile */
@media (max-width: 768px) {
    .accessibility-button {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 15px;
        left: 15px;
        border-width: 2px;
    }
    
    .accessibility-menu {
        width: calc(100vw - 30px);
        left: 15px;
        right: 15px;
        bottom: 80px;
    }
    
    .accessibility-menu.open {
        max-height: 550px;
    }
    
    .accessibility-option {
        padding: 14px 16px;
    }
    
    .accessibility-option-label {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .accessibility-option-icon {
        font-size: 1.3rem;
        width: 28px;
    }
    
    .accessibility-menu-header h3 {
        font-size: 1.2rem;
    }
    
    .accessibility-toggle {
        width: 48px;
        height: 26px;
    }
    
    .accessibility-toggle::after {
        width: 20px;
        height: 20px;
    }
    
    .accessibility-toggle.active::after {
        transform: translateX(22px);
    }
}

/* 🔍 הגדלת טקסט */
body.large-text {
    font-size: 120% !important;
}

body.large-text h1 { font-size: 2.4rem !important; }
body.large-text h2 { font-size: 2rem !important; }
body.large-text h3 { font-size: 1.7rem !important; }
body.large-text p, body.large-text li { font-size: 1.2rem !important; }

/* 🎨 ניגודיות גבוהה */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast .hero,
body.high-contrast .service-card,
body.high-contrast .testimonial-card,
body.high-contrast .faq-item,
body.high-contrast .area-card {
    background: #000 !important;
    color: #fff !important;
    border: 3px solid #fff !important;
}

body.high-contrast header,
body.high-contrast footer,
body.high-contrast .hero-content,
body.high-contrast .cta-button,
body.high-contrast .header-phone {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast .taxi-stripes,
body.high-contrast .urban-banner {
    background: repeating-linear-gradient(-45deg, #fff, #fff 20px, #000 20px, #000 40px) !important;
}

/* 🔗 הדגשת קישורים */
body.highlight-links a {
    background: #FFD700 !important;
    color: #000 !important;
    padding: 2px 4px !important;
    border: 2px solid #000 !important;
    text-decoration: underline !important;
    font-weight: 900 !important;
}

/* 📖 גופן קריא */
body.readable-font,
body.readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 1px !important;
    line-height: 1.8 !important;
}

/* ⏸️ השהיית אנימציות */
body.no-animations * {
    animation: none !important;
    transition: none !important;
}

/* ⌨️ פוקוס למקלדת */
body.keyboard-nav *:focus {
    outline: 4px solid #FFD700 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.3) !important;
}

/* 📱 ניידים */
@media (max-width: 768px) {
    .accessibility-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        left: 15px;
    }
    
    .accessibility-menu {
        width: calc(100vw - 40px);
        left: 20px;
        right: 20px;
        bottom: 75px;
    }
    
    .accessibility-menu.open {
        max-height: 500px;
    }
    
    .accessibility-option {
        padding: 10px;
    }
    
    .accessibility-option-label {
        font-size: 0.85rem;
    }
    
    .accessibility-option-icon {
        font-size: 1.2rem;
    }
}

/* 📱 MOBILE OPTIMIZATION - PRIORITY */
@media (max-width: 768px) {
    body {
        font-size: 18px !important;
        line-height: 1.8 !important;
    }
    
    .main-h1 {
        font-size: 1.8rem !important;
        padding: 1rem 15px !important;
        line-height: 1.4 !important;
    }
    
    .hero-logo {
        font-size: 2.2rem !important;
        padding: 0 20px !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        padding: 0 20px !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 2.2rem !important;
        padding: 0 15px !important;
        line-height: 1.3 !important;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 1.6rem !important;
    }
    
    .header-phone {
        font-size: 1.3rem !important;
        padding: 1rem 2rem !important;
        width: 100%;
        text-align: center;
        font-weight: 900 !important;
    }
    
    .cta-button {
        font-size: 1.5rem !important;
        padding: 1.5rem 3rem !important;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        display: block !important;
    }
    
    .contact-phone {
        font-size: 2.2rem !important;
        margin-bottom: 2rem;
        display: block;
    }
    
    .availability h3 {
        font-size: 2rem !important;
        padding: 0 20px;
    }
    
    .availability p {
        font-size: 1.2rem !important;
        padding: 0 20px;
    }
    
    .contact h3 {
        font-size: 2.2rem !important;
        padding: 0 20px;
    }
    
    .contact p {
        font-size: 1.3rem !important;
        padding: 0 20px;
    }
    
    .urban-banner {
        font-size: 1.1rem !important;
        letter-spacing: 1px;
        padding: 1.5rem 15px;
    }
    
    /* שיפור תוכן טקסט */
    .about-content {
        padding: 1.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem !important;
        line-height: 1.9 !important;
        margin-bottom: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem !important;
    }
    
    .features-list li {
        font-size: 1.05rem !important;
        padding: 1rem;
        line-height: 1.7 !important;
    }
    
    /* שיפור FAQ */
    .faq-question h3 {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
    }
    
    .faq-answer p {
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
    }
    
    .faq-question {
        padding: 1.2rem 1rem;
    }
    
    .faq-answer {
        padding: 1.2rem 1rem;
    }
    
    /* שיפור אזורים */
    .area-card h3 {
        font-size: 1.4rem !important;
    }
    
    .area-card p {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }
    
    .area-card {
        padding: 1.5rem;
    }
    
    /* שיפור שירותים */
    .service-card {
        padding: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }
    
    .service-icon {
        font-size: 4rem !important;
    }
    
    /* שיפור תגובות */
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }
    
    .testimonial-author {
        font-size: 1.1rem !important;
    }
    
    .google-badge {
        padding: 0.7rem 1rem;
    }
    
    /* שיפור Stats */
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 1rem !important;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 17px !important;
    }
    
    .main-h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-logo {
        font-size: 1.9rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.15rem !important;
    }
    
    .cta-button {
        font-size: 1.3rem !important;
        padding: 1.3rem 2.5rem !important;
    }
    
    .contact-phone {
        font-size: 1.9rem !important;
    }
    
    .section-title {
        font-size: 1.9rem !important;
    }
}

/* ⬆️ Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #000, #333);
    color: #FFD700;
    border: 4px solid #FFD700;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFD700, #f0c000);
    color: #000;
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 80px;
        right: 15px;
    }
}