/* משתני עיצוב */
:root {
    --purple: #a29bfe;
    --purple-glow: rgba(162, 155, 254, 0.4);
    --dark-bg: #0d0d12;
    --card-bg: #16161e;
}

/* הגדרות לניגודיות גבוהה */
body.high-contrast {
    background-color: #000 !important;
    background-image: none !important;
    color: #fff !important;
}
body.high-contrast .highlight { color: #ffff00 !important; }
body.high-contrast .navbar, body.high-contrast .service-card, body.high-contrast .trust-bar, body.high-contrast .footer {
    background: #000 !important;
    border: 2px solid #fff !important;
}
body.high-contrast .btn-fill, body.high-contrast .btn-nav {
    background: #ffff00 !important;
    color: #000 !important;
}

* { box-sizing: border-box; transition: all 0.3s ease; } /* הוספת מעבר חלק לכל האתר */

body { 
    margin: 0; padding: 0; 
    font-family: 'Assistant', sans-serif; 
    background-color: var(--dark-bg); 
    color: #e0e0e0; 
    direction: rtl; 
    line-height: 1.6; 
}

.highlight { color: var(--purple) !important; font-weight: 800; }

.navbar { 
    display: flex; justify-content: space-between; align-items: center; 
    flex-wrap: wrap; gap: 10px;
    padding: 10px 5%; background: rgba(13, 13, 18, 0.95); 
    backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; 
    border-bottom: 1px solid rgba(162, 155, 254, 0.2); 
}
.logo-wrapper { display: flex; flex-direction: column; line-height: 1.1; min-width: 140px; }
.logo-brand { font-size: 1.7rem; font-weight: 800; color: #fff; margin: 0; }
.logo-subtext { font-size: 0.85rem; color: #888; margin-top: 2px; font-weight: 400; }

.btn-nav { 
    border: 2px solid var(--purple); padding: 8px 18px; border-radius: 50px; 
    color: #fff; text-decoration: none; font-weight: 700; 
}

.hero { 
    height: 70vh; background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('main.png'); 
    background-size: cover; background-position: center; 
    display: flex; justify-content: center; align-items: center; text-align: center; 
}
.main-title { font-size: clamp(2.2rem, 8vw, 4rem); color: #fff; font-weight: 800; margin-bottom: 20px; }

.btn-fill { background: var(--purple); color: #000 !important; padding: 15px 35px; text-decoration: none; border-radius: 8px; font-weight: 800; display: inline-block; }
.btn-outline { border: 2px solid #fff; color: #fff !important; padding: 13px 35px; text-decoration: none; border-radius: 8px; margin-right: 15px; font-weight: 800; display: inline-block; }

/* אפקטי GLOW בריחוף */
.btn-fill:hover, .btn-nav:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--purple-glow); }
.btn-outline:hover { transform: scale(1.05); background: rgba(255,255,255,0.1); }

.trust-bar { display: flex; justify-content: center; gap: 30px; padding: 25px; background: #111; border-bottom: 1px solid #222; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 700; }

.services { padding: 60px 5%; text-align: center; }
.service-card { 
    background: var(--card-bg); padding: 25px; border-radius: 15px; 
    border-right: 5px solid var(--purple); text-align: right; 
    max-width: 800px; margin: 0 auto 20px auto; 
    border: 1px solid rgba(255,255,255,0.05);
}
.service-card:hover { transform: translateY(-5px); border-color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-top: 40px; }
.gallery-grid img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 0 15px var(--purple-glow); }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 5000; align-items: center; justify-content: center; }
.modal-content { max-width: 90%; max-height: 85vh; border: 2px solid var(--purple); border-radius: 10px; }
.close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 50px; cursor: pointer; }

.acc-wrapper { position: fixed; bottom: 100px; left: 20px; z-index: 3000; }
.acc-btn { width: 55px; height: 55px; background: var(--purple); color: #000; border: none; border-radius: 50%; font-size: 24px; cursor: pointer; }
.acc-menu { 
    display: none; position: absolute; bottom: 65px; left: 0; background: #fff; padding: 15px; 
    border-radius: 12px; width: 240px; border: 2px solid var(--purple); box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.acc-menu button { display: block; width: 100%; margin-bottom: 10px; padding: 12px; background: #f1f1f1; border: 1px solid #ddd; cursor: pointer; font-weight: 700; color: #333; border-radius: 8px; }

.whatsapp-float { position: fixed; bottom: 25px; left: 20px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1000; }
.whatsapp-float img { width: 35px; }

.footer { background: #08080c; padding: 60px 20px; text-align: center; border-top: 1px solid #222; }
.footer-phone { font-size: clamp(2rem, 10vw, 3.5rem); font-weight: 800; color: var(--purple); text-decoration: none; display: block; margin: 15px 0; }

@media (max-width: 600px) {
    .logo-brand { font-size: 1.2rem; }
    .logo-subtext { font-size: 0.7rem; }
    .trust-bar { flex-direction: row; gap: 8px; padding: 15px 2%; justify-content: space-around; }
    .trust-item { font-size: 0.7rem; white-space: nowrap; }
    .trust-item p { margin: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-grid img { height: 160px; }
    .btn-outline, .btn-fill { width: 100%; margin: 5px 0; font-size: 0.9rem; }
}