﻿/* ============================================================
   משתנים גלובליים
============================================================ */
:root {
    --color-primary: #0066cc;
    --color-primary-dark: #004a99;
    --color-accent: #eef6fb;
    --color-bg-light: rgba(247, 247, 247, 0.8);
    --color-bg-white: #fff;
    --color-text: #222;
    --color-heading: #111;
    --color-success-bg: #339966;
    --color-success-text: #155724;
    --font-main: 'Segoe UI', Arial, sans-serif;
    --max-width: 1200px;
    --background-image: url('/images/background.webp');
    --font-secondary: 'Inter', sans-serif;
    --text-color-light: #fff;
    --text-color-heading: #ffffff;
    --text-highlight: #ffd700;
    --overlay-dark: rgba(0, 0, 0, 0.3); /* יותר בהיר */
    --color-button-text: #fff;
    --color-link: #3ea6ff;
}

/* ============================================================
   כללי
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3 {
    margin: 0 0 20px;
}

section {
    position: relative;
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-color-light);
    font-family: var(--font-secondary);
}

    section .overlay, .hero .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--overlay-dark);
        z-index: 0;
    }

    section .container, .hero-content {
        position: relative;
        z-index: 1;
        max-width: var(--max-width);
        margin: 0 auto;
    }

        section h2, .hero-content h1 {
            font-size: 2.5rem;
            color: var(--text-color-heading);
            margin-bottom: 20px;
            letter-spacing: 1px;
            font-family: var(--font-secondary);
        }

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--overlay-dark);
    z-index: 0;
}

a {
    color: var(--color-link); /* 🎨 צבע הקישור */
    text-decoration: none; /* ❌ מבטל קו תחתון */
    font-weight: 500; /* טיפה עבה יותר */
    padding: 2px 1px; /* מרווח קל */
}


 

body.fixed-background {
    position: relative; /* נדרש בשביל ::before */
}

    body.fixed-background::before {
        content: '';
        position: fixed; /* חשוב: כל המסך */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/images/background.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
body.bg-locksmith::before {
    background-image: url('/images/backgrounds/bg-locksmith.webp');
}

/* 🔧 רקע למרסס */
body.bg-pestcontrol::before {
    background-image: url('/images/backgrounds/bg-pestcontrol.webp');
}


/* ============================================================
   HEADER
============================================================ */
.header-bar {
    background: #fff;
    text-align: center;
    padding: 15px; /* הגדלנו קצת את הרווחים */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 60px; /* 📏 מוסיף רווח מתחת להדר העליון */
}

.header-slogan {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    word-wrap: break-word;
    white-space: normal; /* מאפשר לסלוגן לרדת שורה במובייל */
    margin: 0 auto;
    display: inline-block;
    max-width: 90%; /* מוודאים שהסלוגן לא יתפשט יותר מדי */
}
.brand-name {
    font-weight: bold; /* טקסט מודגש */
    color: #0056b3; /* צבע כחול כהה */
    font-size: 1.2em; /* טיפה יותר גדול */
    letter-spacing: 1px; /* ריווח בין אותיות */
    
}
.header-cta a.button-primary {
    background-color: #e53935; /* 🔷 אדום בהיר יותר לניגודיות טובה */
    color: #ffffff; /* 🔷 טקסט לבן */
    text-decoration: none; /* 🔷 בלי קו תחתי */
    padding: 10px 20px; /* 🔷 מרווח פנימי נדיב יותר */
    border-radius: 8px; /* 🔷 פינות עגולות יותר */
    font-weight: bold; /* 🔷 טקסט מודגש */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 🔷 צל עדין */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s; /* 🔷 מעבר חלק */
}

.header-cta a.button-primary:hover {
    background-color: #c62828; /* 🔷 כהה יותר ב-hover */
    transform: translateY(-2px); /* 🔷 אפקט קל של הרמה */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* 🔷 צל חזק יותר ב-hover */
}




/* ============================================================
   כפתור ראשי
============================================================ */
.button-primary {
    display: inline-block;
    background: var(--color-primary); /* 🔷 צבע ראשי */
    color: var(--color-button-text); /* 🔷 צבע טקסט */
    padding: 14px 28px; /* 🔷 מרווח פנימי נדיב */
    text-decoration: none; /* 🔷 בלי קו תחתי */
    border-radius: 8px; /* 🔷 פינות עגולות יותר */
    font-weight: bold; /* 🔷 טקסט מודגש */
    font-size: 1rem; /* 🔷 גודל טקסט */
    cursor: pointer; /* 🔷 יד */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 🔷 צל עדין */
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s; /* 🔷 מעברים חלקים */
}

.button-primary:hover,
.button-primary:focus {
    background: var(--color-primary-dark); /* 🔷 כהה יותר ב-hover */
    transform: translateY(-2px); /* 🔷 הרמה קטנה */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* 🔷 צל חזק יותר */
}
.cta-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hand {
    font-size: 1.5rem; /* 🔷 גודל היד */
    color: #e53935; /* 🔷 צבע */
    display: inline-block;
    animation: move-horizontal 1s infinite ease-in-out;
}

@keyframes move-horizontal {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}






@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* לפחות 80% גובה מסך */
    text-align: center;
    padding: 20px;
    color: var(--text-color-light);
    font-family: var(--font-secondary);
    margin-bottom: 60px;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

    .hero .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5); /* טיפה כהה יותר */
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem); /* רספונסיבי */
        color: #f5f5f5; /* צבע לבן-כסוף אלגנטי */
        margin-bottom: 20px;
        letter-spacing: 2px; /* רווח קצת יותר יוקרתי */
        text-shadow: 0 1px 3px rgba(0,0,0,0.7); /* צל חד ועדין */
        font-weight: 600; /* פחות עבה, יותר אלגנטי */
        line-height: 1.1; /* מרווח יותר הדוק */
        font-family: 'Helvetica Neue', 'Segoe UI', sans-serif; /* פונט יוקרתי ונקי */
        border-bottom: 2px solid rgba(255,255,255,0.2); /* קו עדין למטה */
        display: inline-block; /* כדי שהקו לא יתפוס את כל הרוחב */
        padding-bottom: 10px; /* רווח לקו */
    }


    .hero-content p {
        font-size: 1.25rem;
        color: var(--text-color-light);
        line-height: 1.8;
        max-width: 600px;
        margin: 0 auto 20px auto;
        text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================
   ABOUT
============================================================ */

.about-image img {
    max-width: 100%; /* רוחב עד הסוף של הקונטיינר */
    height: auto; /* גובה פרופורציונלי */
    display: block; /* כדי שלא יהיה רווח מתחת */
    margin: 0 auto; /* אם אתה רוצה שהיא תהיה ממורכזת */

}

.about-badge img {
    display: block; /* תוודא שהוא לא inline */
    margin: 20px auto; /* מרכז */
    max-width: 180px; /* רוחב מירבי */
    height: auto; /* שומר יחס */
}
.about p {
    font-size: 1.25rem;
    color: var(--text-color-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}


/* ============================================================
   problem
============================================================ */
.problem-section .problem-text {
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: left;
    color: var(--text-color-light);
    font-family: var(--font-secondary); /* 🛠️ מוסיף את הפונט של האתר */
}


/* ============================================================
   services
============================================================ */


section .container {
    max-width: 1200px; /* רוחב מקסימלי */
    margin: 0 auto; /* מרכז את הקונטיינר */
}

.services .service-list {
    display: flex; /* הופך לפלקס */
    justify-content: center; /* מרכז אופקית */
    flex-wrap: wrap; /* ירידה שורה אם צריך */
    gap: 20px; /* רווחים */
    width: 100%; /* שיתפרס */
}

.services .service-item {
    background: rgba(0, 0, 0, 0.55); /* 🔧 רקע כהה יותר */
    backdrop-filter: blur(2px); /* 🔧 טשטוש עדין של הרקע */
    padding: 20px;
    border-radius: 8px;
    color: var(--text-color-light);
    box-shadow: 0 0 12px rgba(0,0,0,0.3); /* 🔧 עומק נוסף */
}


.service-image {
    width: 100%; /* תמונה תתפוס 100% מהמרחב הזמין */
    max-width: 300px; /* הגבלת רוחב התמונה ל־300 פיקסלים */
    height: 250px; /* קביעת גובה קבוע לכל התמונה */
    object-fit: cover; /* שמירה על ממדי התמונה בצורה טובה */
    border-radius: 8px; /* רדיוס פינות לתמונה */
    margin-bottom: 10px; /* רווח תחתון בין התמונה לטקסט */
}
.services .service-item p strong {
    font-weight: 700;
    color: #66ddee; /* תכלת רגוע */
    text-shadow: 0 0 1px #003344;
    letter-spacing: 0.2px;
}
.read-more-content {
    display: none;
    transition: all 0.3s ease;
}

.read-more-toggle {
    cursor: pointer;
    color: var(--color-link); /* משתמש בצבע קישור קיים */
    text-decoration: underline;
    font-size: 1rem;
    margin-top: 8px;
    display: inline-block;
}



/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-choose-us .container {
    display: flex;
    flex-direction: column; /* מגדיר את הצגת האלמנטים בעמודה */
    align-items: center; /* ממקם את התוכן במרכז */
    justify-content: center; /* מוודא שהתוכן ממורכז */
}

.why-choose-us ul {
    display: flex;
    flex-direction: column; /* יוצר עמודה */
    gap: 15px; /* מרווחים בין האלמנטים */
    align-items: center; /* ממקם את האלמנטים במרכז */
    margin: 0;
    padding: 0;
}

.why-choose-us .why-choose-item {
    font-size: 18px; /* גודל טקסט */
    font-weight: bold; /* הדגשה */
    color: #fff; /* צבע טקסט בהיר */
    background-color: rgba(0, 0, 0, 0.1); /* צבע רקע בהיר, אפשר לשנות בהתאם */
    padding: 15px 20px;
    border-radius: 8px; /* פינות מעוגלות */
    text-align: center; /* טקסט במרכז */
    width: 100%; /* תופס את כל הרוחב */
    max-width: 500px; /* הגבלת רוחב מקסימלי */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* הוספת צל */
    opacity: 0; /* מתחילים עם שקיפות */
    transform: translateY(20px); /* מתחילים ממיקום נמוך */
    animation: fadeInV 1.2s ease-out forwards; /* הוספת אנימציה */
    list-style: none; /* מבטל את הנקודה הרגילה */
    position: relative; /* מאפשר להציב ✔ */
    padding-left: 2em; /* רווח שמאלי ל✔ */
}

    /* הזזת פריטים אי-זוגיים שמאלה ופריטים זוגיים ימינה */
    .why-choose-us .why-choose-item:nth-child(odd) {
        transform: translateX(-30px); /* הזזת פריטים אי זוגיים שמאלה */
    }

    .why-choose-us .why-choose-item:nth-child(even) {
        transform: translateX(30px); /* הזזת פריטים זוגיים ימינה */
    }
.why-choose-item-badge img {
    max-width: 150px;
    display: block;
    margin: 10px auto;
}

.why-choose-us .why-choose-item::before {
    content: "✔";
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-highlight); /* או כל צבע אחר */
    font-size: 1.2em;
}

@keyframes fadeInV {
    to {
        opacity: 1; /* סיום האנימציה, נחשפים */
        transform: translateY(0) translateX(0); /* הופעה ומיקום סופי */
    }


}
.services .service-item p {
    line-height: 1.6;
    margin-bottom: 0.8em;
    color: #f0f0f0; /* לא לבן טהור */
}
    /* ============================================================
   TESTIMONIALS
============================================================ */
 


    .testimonials .testimonial blockquote {
        font-style: italic;
        font-size: 1.1rem;
        color: var(--text-color-light);
        margin: 0;
    }

    .testimonials .testimonial span {
        display: block;
        margin-top: 10px;
        font-size: 0.9rem;
        color: var(--text-color-light);
        opacity: 0.8;
    }

.testimonial-slider .testimonial {
    flex: 0 0 300px; /* ⬅️ רוחב קבוע */
    max-width: 300px;
    height: 300px; /* 🟩 גובה קבוע – ריבוע */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}




   

.stars {
    font-size: 1.2rem; /* גודל כוכבים */
    margin-bottom: 5px; /* רווח מתחת לכוכבים */
}

.star {
    display: inline; /* משנה מ-inline-block ל-inline כדי שהכוכבים יוצגו אחד ליד השני */
    margin-right: 3px; /* רווח קטן בין הכוכבים */
}

.star-filled {
    color: gold !important; /* צבע זהב לכוכבים המלאים */
    font-size: 1.2rem; /* אם תרצה לשנות את גודל הכוכבים */
}

.star-empty {
    color: #eee; /* צבע אפור לכוכבים הריקים */
    font-size: 1.2rem; /* גודל אחיד */
}
.testimonial .stars {
    display: flex; /* הופך את הכוכבים לאלמנטים גמישים, כך שיופיעו בשורה */
    flex-wrap: nowrap; /* מונע מהם לרדת לשורה חדשה */
    justify-content: flex-start; /* ממקם את הכוכבים בצמוד לשמאל */
}
/* 🔧 עוטף את כל הסליידר */
.testimonial-slider-wrapper {
    position: relative; /* כדי למקם חצים */
    overflow: hidden; /* מסתיר ביקורות שלא בפריים */
    padding: 20px 80px; /* ⬅️ מ־40px הגדלנו ל־80px */
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

/* 🔧 הקטע שזז בתוך הסליידר */
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* חשוב — מאפשר גלילה */
    scroll-behavior: smooth;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    padding-left: 20px;
    padding-right: 20px;
}


    .testimonial-slider::-webkit-scrollbar {
        display: none; /* מסתיר את הסקרול */
    }

/* 🔧 כל ריבוע ביקורת */
.testimonial {
    flex: 0 0 250px; /* תמיד בדיוק 250px */
}

/* 🔧 כפתורי החצים */
.slider-btn {
    position: absolute;
    top: 15%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4); /* 🔲 רקע כהה שקוף */
    color: #fff; /* 🎯 צבע חץ */
    border: none;
    border-radius: 50%; /* ⭕ עיגול */
    font-size: 1.5rem; /* 🔠 גודל חץ */
    padding: 14px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* 🌫 צל */
    transition: all 0.3s ease; /* 💨 מעבר חלק */
}
    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.1); /* 💡 בהיר יותר ב-hover */
        transform: translateY(-50%) scale(1.1); /* 🔍 הגדלה קלה */
        color: #ffd700; /* ✨ זהוב ב-hover */
    }

    .slider-btn.prev {
        left: -10px; /* ⬅️ מעיף אותו ממש שמאלה */
    }

    .slider-btn.next {
        right: -10px; /* ➡️ מעיף אותו ממש ימינה */
    }


    .slider-btn svg path {
        stroke: #1de9b6;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.3s ease;
    }

    .slider-btn:hover svg path {
        stroke: #ffd700;
    }


    .slider-btn:hover svg {
        stroke: var(--text-highlight); /* זהב ב-hover */
    }

.testimonials .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}




/* ============================================================
   Areas we serve
============================================================ */
.areas-we-serve-list {
    background: rgba(0, 0, 0, 0.3); /* ✅ צבע בהיר חצי שקוף */
    padding: 60px 20px;
    text-align: center;
    color: var(--text-color-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
}

    .areas-we-serve-list h2 {
        font-size: 2.5rem;
        text-transform: uppercase;
        margin-bottom: 40px;
        font-weight: 700;
        color: #fefefe;
        letter-spacing: 1px;
    }

        .areas-we-serve-list h2 .highlight {
            color: var(--text-highlight); /* זהב בהיר */
        }

.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* רווחים בין אלמנטים */
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* עבור הצגת ערים ושכונות כזוגות */
.area-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.extra-area-links a {
    color: var(--color-link); /* 💡 טורקיז קריא ובהיר */
    font-weight: 700; /* 💪 מודגש יותר */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); /* 🕶 הצללה */
}

.area-pair {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* עבור כל אלמנט של עיר/שכונה */
.area-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

    .area-item:hover {
        transform: scale(1.05); /* הגדלת האובייקט עם hover */
    }

    .area-item .checkmark {
        color: #7CFC00; /* ירוק בהיר נעים */
        margin-right: 10px;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .area-item a {
        color: var(--color-link);
        font-weight: 600;
        font-family: var(--font-secondary);
        transition: color 0.3s ease-in-out;
    }

        .area-item a:hover {
            color: var(--text-highlight);
        }

.area-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e0f0ff;
    letter-spacing: 1px;
    text-transform: capitalize; /* הופך את המילים לכותרת */
    text-align: center; /* מרכז את הכותרת */
}
.related-city-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* רווחים בין הקישורים */
    margin-top: 20px;
    list-style: none; /* בלי עיגולים */
    padding: 0;
}

    .related-city-list li {
        background: rgba(255, 255, 255, 0.1); /* רקע שקוף בהיר */
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 1.1rem;
        font-weight: 500;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: transform 0.2s ease-in-out;
    }

        .related-city-list li:hover {
            transform: scale(1.05);
        }

        .related-city-list li a {
            color: var(--color-link);
            text-decoration: none;
            font-weight: 600;
        }

            .related-city-list li a:hover {
                color: var(--text-highlight);
            }





/* ============================================================
   CONTACT
============================================================ */
.contact p {
    font-size: 1.25rem;
    color: var(--text-color-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.contact .form-group input[type="text"],
.contact .form-group input[type="tel"],
.contact .form-group textarea {
    font-size: 16px; /* טקסט קריא */
    padding: 10px; /* מרווח פנימי */
    width: 100%;
    max-width: 300px;
    margin: 0 auto 10px auto;
    display: block;
    border-radius: 4px; /* פינות */
    border: 1px solid #ccc;
    box-sizing: border-box; /* 🔧 חשוב: לא לשבור את הגודל עם padding */
}

.contact .lead-form button {
    background-color: #007bff; /* כחול */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 4px; /* פינות */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contact .lead-form button:hover {
        background-color: #0056b3; /* כהה יותר בהובר */
    }
.contact .form-group label {
    display: block;
    font-size: 16px; /* יותר גדול */
    color: #f1f1f1; /* צבע בהיר ובולט */
    margin-bottom: 5px; /* רווח קטן מתחת */
    font-weight: 500; /* מעט יותר מודגש */
}

.nowrap-text {
    white-space: normal; 
}

/* ============================================================
   FAQ
============================================================ */
.faq {
    background-color: rgba(0, 0, 0, 0.1); 
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

    .faq h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        color: #cfefff; /* זהב בהיר */
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 30px;
        letter-spacing: 1px;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        display: inline-block;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #555; /* רקע כהה לשאלות */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    list-style: none; /* 🔷 מבטל את הנקודה */
}

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .faq-item h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #00aaff; /* כחול בהיר לשאלות */
        margin-bottom: 10px;
    }

    .faq-item p {
        font-size: 1rem;
        line-height: 1.6;
        color: #eee; /* צבע בהיר לתשובות */
        margin-top: 10px;
    }

        .faq-item p::before {
            content: "➤ ";
            color: #00aaff; /* כפתור כחול בהיר */
            font-weight: bold;
        }

    .faq-item:last-child {
        margin-bottom: 0;
    }

.faq p {
    font-size: 1.125rem;
    color: #eee;
    text-align: center;
    font-style: italic;
    margin-top: 20px;
}




/* ============================================================
   footer
============================================================ */

footer {
    background-color: rgba(238, 246, 251, 0.8);
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem 0;
    line-height: 1.2;
}

    footer p {
        margin: 0.2rem 0;
    }

    footer .footer-note {
        font-size: 0.85rem;
    }

    footer .footer-credits small {
        font-size: 10px;
        color: #999;
    }

    footer a {
        color: var(--color-primary-dark);
    }
.footer-badge img {
    display: block;
    margin: 10px auto;
    max-width: 100px;
}

/* ============================================================
   Thanks
============================================================ */

section.thanks p {
    color: #fefefe; /* צבע לבן */
}
section.thanks h2 {
    color: #fefefe; /* 🔷 לבן בהיר */
    text-shadow: 0 2px 4px rgba(0,0,0,0.6); /* 🔷 צל קטן */
    font-weight: 600; /* 🔷 פחות כבד */
    letter-spacing: 1px; /* 🔷 מרווח בין אותיות */
}

section.thanks h3 {
    color: #eee; /* 🔷 אפור־לבן */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* 🔷 צל קטן */
    font-weight: 500; /* 🔷 קצת יותר קל */
}

.thank-text-box {
    background: rgba(0, 0, 0, 0.4); /* 🔷 כהה יותר עדין */
    color: #fff; /* 🔷 טקסט לבן */
    padding: 20px 30px; /* 🔷 ריווח נעים יותר */
    border-radius: 12px; /* 🔷 פינות יותר רכות */
    max-width: 600px; /* 🔷 לא רחב מדי */
    margin: 30px auto; /* 🔷 רווח מלמעלה ומלמטה */
    line-height: 1.7; /* 🔷 קריא יותר */
    text-align: center; /* 🔷 ממורכז */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* 🔷 צל עדין */
    backdrop-filter: blur(4px); /* 🔷 טשטוש עדין לרקע */
    border: 1px solid rgba(255,255,255,0.1); /* 🔷 קו עדין */
    font-size: 1.1rem; /* 🔷 קצת יותר נעים לקריאה */
}



/* ============================================================
   404
============================================================ */
.error-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%; /* מבטיח שהתמונה לא תחרוג */
}




/* ============================================================
   MEDIA QUERIES — טאבלטים ומעלה
============================================================ */
@media (max-width: 768px) {

    body.fixed-background::before {
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center top;
    }

    html, body {
        overflow-x: hidden;
        width: 100vw; /* 🔒 מונע גלילה אופקית */
    }


        body.fixed-background.bg-locksmith::before {
            background-image: url('/images/backgrounds/bg-locksmith-mobile.webp');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
        }

    body.fixed-background.bg-pestcontrol::before {
        background-image: url('/images/backgrounds/bg-pestcontrol-mobile.webp');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }



    body.bg-locksmith::before {
        background-image: url('/images/backgrounds/bg-locksmith-mobile.webp');
    }

    body.bg-pestcontrol::before {
        background-image: url('/images/backgrounds/bg-pestcontrol-mobile.webp');
    }

    .hero {
        padding: 100px 20px;
    }

   

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3.5rem); /* מתאים יותר למובייל */
        text-shadow: 0 1px 4px rgba(0,0,0,0.4); /* עדכון הצללה במובייל */
    }

    .about-image img {
        max-height: 400px; /* או כל ערך שמתאים */
        object-fit: cover; /* אם רוצים לחתוך במקום להתכווץ */
    }

    .services .service-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services .service-item {
        background-color: rgba(0, 0, 0, 0.55); /* כהה יותר – בשביל ניגודיות */
        border-radius: 12px;
        padding: 1.2em;
        box-shadow: 0 0 10px rgba(0,0,0,0.3); /* עומק עדין */
    }

        .services .service-item p strong {
            font-weight: 700;
            color: #66ddee; /* תכלת רגוע */
            text-shadow: 0 0 1px #003344;
            letter-spacing: 0.2px;
        }
            section h2, .hero-content h1 {
        font-size: 3rem;
    }

    .about p,
    .why-choose-us li,
    .testimonials blockquote,
    .contact p {
        font-size: 1.125rem;
    }

    

    .testimonial-slider .testimonial {
        flex: 0 0 92vw;
        max-width: 92vw;
        margin: 0 auto;
        padding: 30px 24px;
        font-size: 1rem;
        min-height: 340px; /* 🟢 הוספנו גובה מינימלי */
        max-height: 440px; /* 🟢 לא חובה אבל נותן מסגרת */
    }






    .areas-we-serve-list {
        padding: 40px 15px;
    }

    .area-grid {
        flex-direction: column;
        gap: 15px;
    }

    .area-item {
        font-size: 1rem; /* גודל טקסט קטן יותר במובייל */
    }

    .area-pair {
        flex-direction: column;
        gap: 10px;
    }


    section, .hero {
        margin-bottom: 80px;
    }

    .header-slogan {
        font-size: 1.2rem;
    }

    .header-content {
        flex-direction: column; /* 🔷 במובייל עובר לטור */
        gap: 8px;
    }
}
/* ============================================================
   MEDIA QUERIES — מחשבים גדולים
============================================================ */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .container {
        padding: 40px;
    }

    .about .container,
    .why-choose-us .container,
    .testimonials .container,
    .contact .container {
        max-width: 1000px;
    }

    .about p,
    .why-choose-us li,
    .testimonials blockquote,
    .contact p {
        font-size: 1.25rem;
    }

    section, .hero {
        margin-bottom: 100px;
    }
    .error-image img {
        max-width: 500px; /* או פחות לפי הטעם */
        margin: 0 auto;
        display: block;
    }
}

